* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
.spectral-regular {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  padding: 20px 30px;
  position: relative;
  
}

.main-header {
  width: 100%;
  background: #FFFFFF;
  z-index: 100;
  transition: .5s;
}

.main-header.sticky {
  background: whitesmoke;
  position: fixed;
  top: 0;
  left: 0;

}


.logo-img {
  max-width: 100%;
  width: 185px;
  height: 35px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

ul li {
  list-style: none;
}

#nav-menu li a {
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  

}

#nav-menu li a:hover {
  color: #f4b400;

}

ul li a:active {
  color: #e60023;
  font-weight: bold;
}


.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.menu-icon i {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.Main-content {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("../images/hero-back-img.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding-left: 80px;
  color: #fff;
}

.Main-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.main-container {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.main-container h1 {
  font-size: 2.32rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.main-container h1 span {
  color: #f4b400;
}

.main-container p {
  max-width: 540px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ddd;
}

.hero-buttons {
  display: flex;
  gap: 25px;
}

.hero-buttons .btn {
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  transition: all .3s ease-in;
}

.btn-primary {
  background: #f4b400;
  border: 2px solid #f4b400;
  color: #000;
}

.btn-primary:hover {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #f4b400;
  color: #000;
  border: 2px solid #f4b400;
}

.about-us {
  /* margin-top: 30px; */
  padding: 80px 10%;
  background: #f3f4f6;
}

.about-us .about-container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.08rem;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 45%;
  text-align: right;
  min-width: 300px;
}

.about-image img {
  width: 100%;        
  height: auto;       
  max-width: 500px;  
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.founders {
  padding: 40px 20px;
  text-align: center;
  background:#fff; 
}

.founders h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

/* underline effect */
.founders h2::after {
  content: "";
  display: block;
  width: 100px; 
  height: 4px; 
  background-color: #f6a20a; 
  margin: 8px auto 0;
  border-radius: 2px;
}


.founders-wrapper {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.founder-card {
  width: 320px;
  height: 380px; 
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  /* transition: transform 0.3s ease; */
  max-width: 360px;
}


.founder-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.founder-card h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: #232631;
}

.founder-card p {
  font-size: 0.95rem;
  color: #555A66;
}

.main-services {
  padding: 80px 20px;
  background-color: #232631;
  text-align: center;
}

.main-services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}


.main-services h2::after {
  content: "";
  display: block;
  width: 100px; 
  height: 4px; 
  background-color: #f6a20a; 
  margin: 8px auto 0;
  border-radius: 2px;
}
.service-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  color: #c2c6d7;
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(255, 234, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 400px;
  max-width: 400px;
  transition: transform 0.3s ease;

}

.service-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
  border: #F4A300 solid 2px;
}


.service-card img {
  width: 100%;
  max-width: 500px;
  height: 220px;
  border-radius: 12px;
  margin-bottom: 20px;
  object-fit: cover;
}

.serv-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #232631;
}

.serv-para {
  font-size: 0.95rem;
  color: #555A66;
  line-height: 1.5;
}

#company-logo-slider {
  padding: 40px 0;
  text-align: center;
  background: #f9f9f9;
  overflow: hidden;
}

.company-logo-slider h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

/* underline effect */
.company-logo-slider h2::after {
  content: "";
  display: block;
  width: 100px; 
  height: 4px; 
  background-color: #f6a20a; 
  margin: 8px auto 0;
  border-radius: 2px;
}

.logo-slider-container {
  display: flex;
  overflow: hidden;
  position: relative;
  background:#f3f4f6;
  padding: 20px 0;
}

/* gradient effect on edges  */
.logo-slider-container::before,
.logo-slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px; 
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider-container::before {
  left: 0;
  background: linear-gradient(to right, #f4f4f4 0%, transparent 100%);
}

.logo-slider-container::after {
  right: 0;
  background: linear-gradient(to left, #f4f4f4 0%, transparent 100%);
}

.logo-slider {
  display: flex;
  animation: scroll 20s linear infinite;
}

.logo-slider:hover {
  animation-play-state: paused; 
}

 .img-box {
  width: 150px;    
  height: 100px;     
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;   
  border-radius: 8px; 
  padding: 10px;
  box-sizing: border-box;
}

.img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.img-box img:hover {
  filter: grayscale(0%);
} 



/* Keyframes for scrolling */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.why-us {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

.why-us-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.why-us-container h2::after {
  content: "";
  display: block;
  width: 100px; 
  height: 4px; 
  background-color: #f6a20a; 
  margin: 8px auto 0;
  border-radius: 2px;
}

.why-us p {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
  color: rgb(36, 33, 33);
  font-size: 1.1rem;
  line-height: 1.6;
}


.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}


.why-box {
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  color: #222;
}

.why-box:hover {
  transform: translateY(-5px);
}

.why-box:nth-child(odd) {
  background: #ffedf5; 
}

.why-box:nth-child(even) {
  background: #e6f5ff; 
}


.icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  color: #fff;
  /* background: #444; */
}

.why-box:nth-child(1) .icon { background: #ff4da6; }
.why-box:nth-child(2) .icon { background: #1e90ff; }
.why-box:nth-child(3) .icon { background: #ff4da6; }
.why-box:nth-child(4) .icon { background: #1e90ff; }
.why-box:nth-child(5) .icon { background: #ff4da6; }
.why-box:nth-child(6) .icon { background: #1e90ff; }

.why-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}



.contact-section {
  padding: 60px 20px;
  background: #f3f4f6;
}

.contact-container {
  margin: 10px 20px;
  height: auto;
}



.contact-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 40px;
}

.contact-container h2::after {
  content: "";
  display: block;
  width: 100px; 
  height: 4px; 
  background-color: #f6a20a; 
  margin: 8px auto 0;
  border-radius: 2px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;           
  /* background-color;  */
  border-radius: 12px;    
  overflow: hidden;      
}

.contact-map {
  flex: 1 1 55%;
  min-height: 400px;
  max-width: 540px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  overflow: hidden; /* ensures border-radius works on map */
}

.contact-map iframe,
.contact-map > div {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}


.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-info-ul i {
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-ul li>div {
  display: flex;
  flex-direction: column;
}

.contact-info-ul strong {
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}

.contact-info-ul span {
  color: #000;
  display: block;
}

.contact-buttons {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: 0.3s;
  text-align: center;
}

.mail-btn {
  background-color: #007BFF;
  color: white;
}
.mail-btn:hover {
  background-color: #0056b3;
}

.whatsapp-btn {
  background-color: #25D366;
  color: white;
}
.whatsapp-btn:hover {
  background-color: #1ebe5b;
}

/* footer section */
.footer {
  background:#F9FAFB;
  color: #374151;
  padding: 40px 20px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

/* ======= Left Section ======= */
.footer-left {
  flex: 1 1 300px;
}

.footer-logo {
  max-width: 180px;
  height: 34px;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-social a {
  color: #253145;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #3a04ee;
}

.back-to-top {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  border: 1px solid #374151;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  color: #374151;
  transition: background-color 0.3s;
}

.back-to-top:hover {
  background-color: skyblue;
  color: #000;
}

/* ======= Middle & Right Columns ======= */
.footer-links {
  flex: 1 1 500px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #1A1A1A;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-column li a {
  color: #231864;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column li a:hover {
  color: #f4b400;
}

.footer-column i {
  min-width: 18px;
  font-size: 14px;
  color: #6B7280;
}


.footer-bottom {
  background-color: #141414;
    color: #d1d1d1;           
    font-size: 14px;
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid #2a2a2a;
    width: 100%;
}

