* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
  width: 100%;
  margin: 0;
  overflow-x: hidden; /* TEMPORARY */
}

.navbar {
    width: 100%;
    padding: 6px 30px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 20;
    font-size:14px;
}

.logo img {
    height: 50px;
    margin-left: 27%;
}

/* NAV MENU */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    font-size:14px;

}

.nav-links li a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.nav-links li a:hover {
    color: #cc6300;
    transition: color .18s ease;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease 0.15s,
        visibility 0.2s ease 0.15s;

    z-index: 999;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    color: #111;
    text-decoration: none;
}
/* Show on hover */
.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transition-delay: 0s;

    
}



.dropdown:hover .dropdown-menu {
    transition-delay: 0s;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    color: #111;
}

.dropdown-menu li:hover {
    background: #f3f3f3;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* PARTNER BUTTON */
.partner-btn {
    margin-right: 5%;
    background: #282626;
    color: white !important;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: bold;
}

.partner-btn:hover {
    background: #cc6300;
}

/* Hide mobile button on desktop */
.partner-btn-mobile {
    display: none;
}

/* HAMBURGER */
.hamburger {
    font-size: 28px;
    cursor: pointer;
    display: none;
}

/* RESPONSIVE */
@media (max-width: 850px) {

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        display: none;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        width: 100%;
    }

    .partner-desktop {
        display: none;
    }

    .partner-btn-mobile {
        display: block;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    transition: 0.6s ease;
}

.slide.active {
    left: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    left: 50px;
    max-width: 50%;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    background-color:fff;
    padding: 2% 4%;
}

.slide.active .slide-text {
    opacity: 1;
    transform: translateY(0);
}

.slide-text h1 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: bold;
}

.slide-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.slide-text a {
    display: inline-block;
    padding: 10px 20px;
    background: #ffffff;
    color: #000;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.slide-text a:hover {
    background: #000;
    color: #fff;
}

/* ARROWS */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: white;
    padding: 0px 10px;
    cursor: pointer;
    z-index: 20;
    transition: 0.3s;
  
    border-radius:100%; 
    width: 30px;
    height:30px;
    margin:0;
}

.arrow:hover {
    color: #ddd;
}

.left {
    left: 20px;
}

.right {
    right: 20px;
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    display: inline-block;
    background: white;
    border-radius: 50%;
    opacity: 0.4;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    opacity: 1;
}

.about-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 5%;
  background: #fff;
  width:80%;
  margin: auto;

}

.about-text {
  flex: 1;
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

.about-text h2 {

  font-weight: 700;
  margin-bottom: 15px;
  color: #cc6300;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

.learn-more {
  display: inline-block;
  padding: 10px 20px;
  background: #febe95;
  color: #111;
  font-weight: 300;
  border-radius: 5px;
  transition: 0.3s ease;
  text-decoration: none;
}

.learn-more a {
   display: inline-block;
    padding: 10px 20px;
    background: #ffffff;
    color: #000;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
  
}


.learn-more:hover {
  background: #111;
  color: #fff;
}

.about-image {
  flex: 1;
  text-align: right;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 0 0 30% 0;
  animation: fadeInImg 1.4s ease forwards;
  opacity: 0;
  height: 300px;
  background-size: cover;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.about-image:hover {

    transform: scale(1.08) translateY(-6px);
 

}
/* Fade animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInImg {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .about-header {
    flex-direction: column-reverse;
    text-align: center;
  }

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

.mv-container {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
    width: 80%;
    margin: auto;
}

.mv-left {
    position: relative;
    width: 50%;
}

.big-img img {
    width: 90%;
    height: 360px;
    border-radius: 12px;
    object-fit: cover;
    margin-left: 10%;
    border-radius: 30% 0 0 0;
    transition: 0.4s ease, box-shadow 0.4s ease;

}

.big-img:hover{
    transform: scale(1.08) translateY(-6px);

}
.small-img {
    position: absolute;
    bottom: -30px;
    right: 15px;
    width: 60%;
transition: 0.4s ease, box-shadow 0.4s ease;
}

.small-img:hover {
   transform: scale(1.08) translateY(-6px);
}
.small-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-radius: 0 0 30% 0;
    height: 280px;
    
}

.mv-right {
    width: 50%;
     margin-right: 5%;
}

.mv-right h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #cc6300;
}

.mv-right p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
    font-size: 16px;
    text-align: justify;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .mv-container {
        flex-direction: column;
    }

    .mv-left,
    .mv-right {
        width: 100%;
    }

    .small-img {
        bottom: -15px;
        right: 0;
        width: 45%;
    }
}.core-wrapper {
        max-width: 80%;
        margin: 60px auto;
        padding: 40px 20px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        text-align: center;
    }

    .core-wrapper h2 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 40px;
        color: #cc6300;
    }

    .core-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .core-box {
        background: #fff;
        padding: 40px 20px 20px;
        border-radius: 12px;
        border: 1px solid #eee;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .core-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: -35px;
        left: 50%;
        transform: translateX(-50%);
        border: 3px solid #f0f0f0;
    }

    .icon-circle i {
        font-size: 28px;
        color: #cc6300;
    }

    .core-box h3 {
        margin-top: 30px;
        font-size: 20px;
        color: #222;
    }

    .core-box p {
        font-size: 15px;
        color: #555;
        line-height: 1.5;
        margin-top: 10px;
    }

    @media (max-width: 768px) {
        .core-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .core-grid {
            grid-template-columns: 1fr;
        }
    }

    /* SECTION */
.expertise-section {
    width: 100%;
    padding: 50px 0;
    background: #f7f7f7;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TITLE */
.expertise-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #cc6300;
}

/* FIXED WIDTH MAIN CONTAINER */
.expertise-container {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 180px 40px;
    margin-bottom: 15%;
}

/* BOX */
.expertise-box {
    position: relative;
    overflow: visible;
}

/* IMAGE */
.expertise-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* WHITE RECTANGLE */
.expertise-content {
    position: absolute;
    width: 100%;
    right: 0;
    top: 70%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    margin-bottom: 10%;
    border-radius: 0 0 0 0;
}

/* TEXT */
.expertise-content h3 {
    margin: 0 0 10px;
}

.expertise-content a {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    padding-left: 15px;
}

/* ========================= */
/* ✅ MOBILE RESPONSIVENESS */
/* ========================= */

/* Tablets */
@media (max-width: 992px) {
    .expertise-container {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 120px;
    }

    .expertise-content {
        top: 75%;
    }
}

/* Phones */
@media (max-width: 600px) {
    .expertise-title {
        font-size: 24px;
    }

    .expertise-container {
        width: 95%;
        gap: 100px;
    }

    .expertise-box img {
        height: 220px;
    }

    .expertise-content {
        position: relative; /* KEY FIX for mobile */
        top: unset;
        margin-top: -40px;
        padding: 15px;
    }

    .expertise-content h3 {
        font-size: 18px;
    }

    .expertise-content p {
        font-size: 14px;
        line-height: 1.5;
    }
}

.why-choose-us {
  padding: 90px 5%;
  background: #f8f9fb;
}

.why-wrapper {
  max-width: 80%;
  margin: auto;
}

/* Heading */
.why-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.why-heading h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #cc6300;
}

.why-heading p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* Layout */
.why-container {
  display: flex;
  gap:0;
  
  align-items: stretch; /* forces equal height */
}

/* Image */
.why-image {
  flex: 1;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Content */
.why-content {
  flex: 1;
  background-color: #cc6300;
  color:white;
}

.why-image,
.why-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* List */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(172, 172, 172, 0.461);
}

.why-list li:last-child {
  border-bottom: none;
}

.why-list h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
  padding-left: 15px;
}

.why-list p {
  font-size: 15px;
  color: #fff;
  line-height: 1.7;
  padding-left: 15px;
}

/* Responsive */
@media (max-width: 900px) {
  .why-container {
    flex-direction: column;
  }

  .why-image img {
    height: auto;
  }

  .why-heading h2 {
    font-size: 32px;
  }
}
.why-us-close p{
  text-align: center;
  line-height: 30px ;
}

/* ========================= */
/* 🔥 GLOBAL MOBILE FIXES */
/* ========================= */

@media (max-width: 900px) {

  /* FIX WIDTH OVERFLOW ISSUES */
  .why-wrapper,
  .expertise-container,
  .mv-container,
  .core-wrapper,
  .location-section {
    max-width: 95% !important;
    width: 95% !important;
  }

  /* STACK FLEX SECTIONS */
  .why-container {
    flex-direction: column;
  }

  .why-image,
  .why-content {
    width: 100%;
  }

  /* FIX IMAGE HEIGHT */
  .why-image img {
    height: auto;
  }

  /* EXPERTISE GRID FIX */
  .expertise-container {
    grid-template-columns: 1fr !important;
    gap: 120px;
  }

  /* FIX OVERLAPPING CARD */
  .expertise-content {
    position: relative !important;
    top: unset !important;
    margin-top: -40px;
  }

  /* MISSION / VISION STACK */
  .mv-container {
    flex-direction: column;
  }

  .mv-left,
  .mv-right {
    width: 100%;
  }

  /* ABOUT SECTION STACK */
  .about-header {
    flex-direction: column !important;
    width: 95% !important;
  }

  /* FOOTER FIX */
  .footer-container {
    height: auto !important;
  }

}

/* ========================= */
/* 📱 SMALL PHONES */
/* ========================= */

@media (max-width: 600px) {

  /* TEXT SCALING */
  h1 { font-size: 26px !important; }
  h2 { font-size: 24px !important; }
  h3 { font-size: 18px !important; }

  p {
    font-size: 14px !important;
    line-height: 1.6;
  }

  /* SLIDER TEXT FIX */
  .slide-text {
    left: 20px;
    max-width: 90%;
  }

  .slide-text h1 {
    font-size: 24px;
  }

  .slide-text p {
    font-size: 14px;
  }

  /* EXPERTISE IMAGE */
  .expertise-box img {
    height: 220px;
  }

  /* TEAM GRID */
  .team-grid {
    grid-template-columns: 1fr !important;
  }

  /* CORE VALUES */
  .core-grid {
    grid-template-columns: 1fr !important;
  }

}


.location-section {
    width: 100%;
    max-width: 80%;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #cc6300;
    font-weight: 700;
}

.location-details h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

.location-details p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.map-container {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}


.footer {
 width: 100%;
  background-image: url(img-14.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 85px 0 20px;
  font-family: Arial, sans-serif;
}
.footer {
  position: relative;
  left: 0;
  right: 0;
  width: 100% !important;
}
.footer-container {
    
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  height:400px ;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.footer-text {
 
  margin-bottom: 20px;
  opacity: 0.9;
  
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
  line-height: 50px;
}

.footer-social a:hover {
  color: #f4b400;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
 line-height: 30px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f4b400;
}

.footer-address {
  line-height: 1.6;
  margin-top: 10px;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.8;
  padding-left: 5%;
}
