/*
Theme Name: DhakaICTWS
Theme URI: https://dhakaict.com/themes/
Author: the Dhaka ICT team
Author URI: https://dhakaict.com/
Description: Ensuring a high, accessible color contrast for your visitors.
Tags: blog
Version: 1.0
Requires at least: 5.0
Tested up to: 5.4
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sarkarpervez
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

body {
  background-color: white;
  margin: 0;
  padding: 0;
}

/* home navigation bar */
.main-nav {
  background-color: #42bcb8;
}

.main-nav ul .dropdown-menu {
  background-color: #42bcb8;
}

.brand-title {
  color: black;
}
/* home navigation bar ends here */

/* home background slider */
.background {
  width: auto;
  height: 550px;
  background-image: url("images/it10.jpg");
  background-size: cover;
  background-position: center;
}

.carousel-item {
  padding: 15% 15%;
  text-align: center;
}

.carousel-item h2 {
  text-transform: uppercase;
  color: white;
}

.carousel-item p {
  color: white;
}

/* gradient header section */
.product-header {
  padding: 40px;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.gradient-header {
  width: 500px;
  height: 33px;
  border-radius: 20px;
  background: white;
  text-align: center;
  position: relative;
}

.gradient-header p {
  margin: 1px 0;
  font-size: 20px;
}

.gradient-header::before {
  content: "";
  position: absolute;
  width: calc(100% + 6px);
  height: calc(100% + 4px);
  border-radius: inherit;
  background-image: conic-gradient(
    from var(--grad-angle),
    aqua,
    teal,
    limegreen,
    blueviolet,
    aqua
  );
  top: -6%;
  left: -0.6%;
  z-index: -1;
  animation: rotation 4s linear infinite;
}

@property --grad-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotation {
  from {
    --grad-angle: 0deg;
  }
  to {
    --grad-angle: 360deg;
  }
}
/* gradient header section ends herer */

/* product section */
.product {
  background-image: linear-gradient(to top right, #7efff5, #c7ecee, #dff9fb);
  box-shadow: 2px 3px 5px black;
}
/* product section ends here */

/* product button section */
.button {
  background-color: black;
  color: darkcyan;
  border-radius: 6px;
  padding: 3px 30px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.button:hover {
  background-color: teal;
  color: black;
}

/* product button section ends here */

.footer-section {
  background-image: url("images/it6.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* inquery section */
.inquiry-section {
  background-image: url("images/it17.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.inquery-text {
  background-color: grey;
  border-radius: 8px;
  padding: 30px;
  background: transparent;
  backdrop-filter: blur(20px);
  color: darkgray;
}
.inquiry-text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.input-group {
  margin-bottom: 10px;
  position: relative;
}

input,
textarea {
  width: 400px;
  padding: 7px;
  outline: none;
  border: 1px solid darkgray;
  color: black;
  font-size: 15px;
  background: transparent;
}
label {
  position: absolute;
  top: 0;
  left: 4px;
  padding: 5px;
  color: darkgray;
  cursor: text;
}
.form-btn {
  width: 400px;
  padding: 7px 0;
  border: 1px solid darkgray;
  border-radius: 6px;
  color: darkgray;
  cursor: pointer;
  background: transparent;
}
/* inquery section ends here */

.icon:hover {
  transform: scale(1.2);
}
