@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --brown:#b84709;
  --black:#000000;
  --white:#fff;
  --light-colour:#666;
  --light-bg:#eee;
  --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
  --border:1rem solid rgba(0,0,0,.3);
  --glass-bg: rgba(255, 235, 205, 0.2); /* Light Brown with Transparency */
    --border-color: rgba(255, 235, 205, 0.5); /* Light Brown Border */
    --shadow-color: rgba(0, 0, 0, 0.2);
    --text-color: #5a3e1b; /* Dark Brown */
    --button-bg: #b47b4d; /* Medium Brown */
    --button-hover: #a0683b; /* Darker Brown */
}

* {
  font-family: "Poppins", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: all 0.2s linear;
}

html {
  font-size: 70%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;

html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--brown);
}
}

section{
  padding:5rem 10%;
}

.heading {
  margin-bottom: 3rem;
  text-transform: uppercase; 
  font-size: 3rem;
  font-weight: bold; 
  letter-spacing: 2px; 
  font-family: Arial, sans-serif; 
  padding-left: 1rem;
  border-left: 1rem solid var(--brown);
  
}








@keyframes fadeIn{
  0%{
    top:50%;
    opacity:0;
  }


}




.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--box-shadow);
  padding: 1.5rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: var(--white);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.8rem;
  color: var(--black);
  text-transform: capitalize;

  span{
    color: var(--brown);
}
}

.logo img {
  width: 40px;  
  height: auto;
  margin-right: 10px; 
}




.navbar a{
  font-size: 1.4rem;
  color: #222222;
  margin:0 1rem;
  white-space: nowrap;
  
}
.navbar a:hover{
  color:var(--brown);
}



.home{
  padding:0;

  .slide{
    min-height: 70rem;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;

    .slide::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: linear-gradient(90deg, var(--white), transparent);
    }
    



.content{
  width:50rem;
  position: relative;

h3{
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: bold; 
  color:  #692f10;
  
  
}
p{
  
   
    font-size: 2.5rem;
    letter-spacing: 3px; 
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, sans-serif; 
    text-align: justify;
    margin-top: 6rem;
    color: #222222;
  
  
  
}
  }
}

}

@media (max-width: 1200px){
  .header{
    padding: 1.5rem 2rem;
  }

  

  section{
    padding:3rem 5%;
  }

}

@media (max-width:991px){
  html{
    font-size: 70%;
  }

  section{
    padding:3rem 2rem;
  }

  .header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
   
    
    display: none; 
    flex-direction: column;
    text-align: center;
    padding: 2rem 0;
}


@keyframes dropdownFade {
  0% {
      transform: translateY(-20px);
      opacity: 0;
  }
  100% {
      transform: translateY(0);
      opacity: 1;
  }
}




.header .navbar.active {
  display: flex !important; /* Force visibility */
  flex-direction: row;
  position: absolute;
  top: 100%;
  left: 6%;
  width: 100%;
  background: rgba(192, 92, 38, 0.719); /* Brownish transparent background */
  backdrop-filter: blur(10px); /* Glassmorphism effect */
  border: 1px solid rgba(255, 235, 205, 0.5); /* Light brown border */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  z-index: 1000;
  text-align: center;
  padding: 2rem 0;
  
    animation: dropdownFade 0.4s ease-in-out;
  
}


.header .navbar a {
  display: block;
  padding: 1rem;
  font-size: 1rem;
  color: white; /* Ensure contrast */
  font-weight: bold;
  transition: color 0.3s;
}

.header .navbar a:hover {
  color: rgba(255, 235, 205, 0.9); /* Lighter brown hover effect */
}



  #menu-btn {
      display: block;
      position: absolute;
      right: 2rem;
      top: 1.5rem;
      color: #222222;
      z-index: 1001;
  }

}


@media (max-width:450px){
  html{
    font-size: 65%
  }
}





@media (max-width: 768px) {
  .about-us .row {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  h3 {
    font-size: 2.5rem; /* Reduce heading size */
  }
  
  p {
    font-size: 1.5rem; /* Reduce paragraph size */
  }
}

/* For small phones */
@media (max-width: 360px) {
  body {
    font-size: 16px;
  }
}




#about-us{
color: #222222;
}



.about-us .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.about-us .row .image {
  flex: 1 1 41rem;
}

.about-us .row .image img {
  max-width: 100%;
  height: 100%;
}

.about-us .row .content {
  flex: 1 1 41rem;

  h3 {
    text-transform: uppercase; 
    font-size: 3.5rem;
    font-weight: bold; 
    letter-spacing: 2px; 
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, sans-serif; 
    color: #692f10;
  }
  p{
    padding: 2rem 0;
font-size: 2rem;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, sans-serif; 
line-height: 1.6; 
color: #222222; 
text-align: justify;

  }

  .btn {
    background-color: var(--brown);
    color: #ffffff; /* White text for better contrast */
    padding: 10px 20px; /* Adds space inside the button */
    font-size: 1rem; /* Adjust size for readability */
    font-weight: bold; /* Makes text more prominent */
    border: none; /* Removes default border */
    border-radius: 5px; /* Slightly rounded corners */
    cursor: pointer; /* Shows clickable behavior */
    transition: all 0.3s ease-in-out; /* Smooth hover effect */
    text-transform: uppercase; /* Makes text stand out */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Adds depth */
  }
  
  .btn:hover {
    background-color: darken(var(--brown), 10%); /* Darker shade on hover */
    transform: scale(1.05); /* Slight size increase */
  }
  
  .btn:active {
    transform: scale(0.98); /* Shrinks slightly when clicked */
  }
  
}

/*.box-container{
  margin-top: 1rem;
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(28rem, 2fr));
gap: 1rem; 
  align-items: flex-end;

.box{
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;

h3{
  font-size: 2rem;
font-weight: bold;
text-align: center; 
color: inherit; 
}

p{
  font-size: 1.5rem;
font-weight: normal; 
line-height: 1.3; 
color: inherit; 
  padding-top: .5rem;
}
}

}*/

#services{
  color: #222222;
}



.services{
  background: var(--light-bg);


.box-container{
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
gap: 1rem; 

.box {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color, brown); /* Light border */
  border-radius: 10px; /* Soft rounded corners */
  margin: 1rem 0; /* Space between boxes */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  color: #692f10;


  img{
    height: 10rem;
    margin-bottom: 1rem;
  }

  h3{
    font-size: 1.3rem;
  font-weight: bold; 
  text-align: center; 
  color: inherit; 
    padding: 1rem 0;
  }

  p{
    
      font-size: 1.2rem;
      font-weight: normal;
      line-height: 1.4;
      color: #222222;
    }
    
}

.box:hover {
  transform: translateY(-5px); 
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1); 
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .box {
    padding: 1.5rem;
  }
}

}

}



#contact{
  color: #222222;
}

.container {
  display: flex;
  gap: 20px;
  background: var(--glass-bg);
  border-radius: 15px;
  box-shadow: 0 10px 25px var(--shadow-color);
  backdrop-filter: blur(15px);
  padding: 30px;
  width: 90%;
  max-width: 900px;
  border: 1px solid var(--border-color);
}

/* Left Side - Contact Info */
.contact-info {
  flex: 1.5;
  color: var(--text-color);
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 35px;
}

.info-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 2px;
}

.info-box i {
  font-size: 1.3rem;
  margin-right: 10px;
  color: var(--button-bg);
}

/* Right Side - Contact Form */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  color: var(--text-color);
  font-size: 1rem;
  backdrop-filter: blur(5px);
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  background: var(--button-bg);
  color: white;
  font-size: 1rem;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

.contact-form button:hover {
  background: var(--button-hover);
}


@media (max-width: 768px) {
  .container {
      flex-direction: column;
      text-align: center;
  }

  .info-box {
      justify-content: center;
  }
}
 


#about-innovator{
  color: #222222;
}





.about-innovator .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.about-innovator .row .image {
  flex: 1 1 41rem;
}

.about-innovator .row .image img {
  width: 100%;
}

.about-innovator .row .content {
  flex: 1 1 41rem;

  h3 {
    text-transform: uppercase; 
    font-size: 3.5rem;
    font-weight: bold; 
    letter-spacing: 2px; 
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, sans-serif; 
    color: #692f10
  }
  p{
    padding: 2rem 0;
font-size: 2rem;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif, sans-serif; 
line-height: 1.6; 
color: #222222; 
text-align: justify;

  }
}


        

        
        /* Footer styles */
        .footer {
            background-color: #222;
            color: #fff;
            padding: 40px 0;
            margin-top: auto;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
            display: flex;
            
            
           
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--brown);
            
        }
        
        .footer-section p {
            margin-bottom: 10px;
            color: #ccc;
            line-height: 1.6;
        }
        
        .footer-links a {
            display: block;
            margin-bottom: 10px;
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
           
        }
        
        .footer-links a:hover {
            color: var(--brown);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: #444;
            color: #fff;
            border-radius: 50%;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--brown);
        }
        
        .contact-info-footer {
            display: flex;
            align-items: right;
            justify-content: left;
            margin-bottom: 10px;
            color: #ccc;
            
        }
        
        .contact-info-footer i {
            margin-right: 10px;
            color: var(--brown);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: var(--button-hover);
            font-size: 14px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 20px;
            }
        }
    
    
    
/* Tooltip styles */
.social-links a span.tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.social-links a span.tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.social-links a:hover span.tooltip {
  opacity: 1;
  visibility: visible;
  top: -35px;
}

/* Ripple effect */
.social-links a:after {
  content: "";
  background: rgba(255, 255, 255, 0.3);
  display: block;
  position: absolute;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
  transform: scale(0);
}

.social-links a:active:after {
  transform: scale(2);
  opacity: 0;
  transition: 0s;
}

/* Icon size */
.social-links a i {
  font-size: 18px;
}


