/* Remove navbar toggler border */
        .navbar-toggler,
        .navbar-toggler:focus,
        .navbar-toggler:active {
            border: none !important;
            box-shadow: none !important;
        }

        /* Navbar menu text */
        .navbar-nav .nav-link {
            font-weight: bold;
            transition: 0.3s;
        }

        /* Hover color */
        .navbar-nav .nav-link:hover {
            color: #484AA8 !important;
        }

        /* TOP HEADER */
        .top-header {
            background-color: #484AA8;
            height: 40px;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        /* NAVBAR BELOW HEADER */
        .navbar {
            position: fixed;
            top: 40px; /* equal to header height */
            width: 100%;
            z-index: 999;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

     
        /* Prevent content going under navbar */
        body {
            padding-top: 120px;
        }

        /* Contact box alignment */
        .contact-box {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            white-space: nowrap;
        }




        /*-----------------------------------------------------------------------*/
        /*------------------ Carousel -------------------------------------------*/

        /* Show arrows only on hover */
        .carousel-control-prev,
        .carousel-control-next {
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .carousel:hover .carousel-control-prev,
        .carousel:hover .carousel-control-next {
            opacity: 1;
        }

        /* Customize dots */
        .carousel-indicators [data-bs-target] {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #fff;
        }

        /* Smooth fade */
        .carousel-item {
            transition: opacity 1s ease-in-out;
        }

        /* Make images cover full width and height nicely */
        .carousel-item img {
            width: 100%;
            height: 70vh;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .carousel-item img {
                height: 45vh; /* mobile height */
            }
        }

.founder-section {
  padding: 100px 0;
}

/* Title */
.founder-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
}

/* Paragraph */
.founder-text {
  font-size: 19px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
  text-align: justify;
}

/* Image Box */
.founder-img-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: auto;
  overflow: hidden;
  transition: transform .4s ease;
}

.founder-img-box img {
  width: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

/* Image Hover Zoom */
.founder-img-box:hover img {
  transform: scale(1.12);
}

/* Round Badge */
.badge-round {
  position: absolute;
  top: 40%;
  left: -45px;
  width: 130px;
  height: 130px;
  background: #FFA726;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.badge-round span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #fff;
}

/* Buttons */
.btn-orange {
  background: #FFA726;
  color: #fff;
  padding: 18px 48px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 0;
  transition: .3s;
}
.btn-orange:hover {
  background:#ff8c00;
  transform: translateY(-4px);
  box-shadow: 0 8px 14px rgba(0,0,0,0.15);
}

.btn-dark-outline {
  padding: 18px 48px;
  font-size: 19px;
  font-weight: 700;
  border-radius: 0;
  border: 2px solid #000;
  transition: .3s;
}
.btn-dark-outline:hover {
  background:#111;
  color:#fff;
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width:768px){
  .founder-section { padding: 60px 0; }
  .founder-title{ font-size: 38px; text-align:center; }
  .badge-round{ width:100px;height:100px;left:-25px;}
  .founder-text{ font-size: 17px; }

  /* Reduced button height for mobile */
  .btn-orange,
  .btn-dark-outline {
    padding: 10px 24px;
    font-size: 15px;
  }

  .btn-group-mb{ justify-content:center; width:100%; text-align:center; }
}


.section-padding {
  padding: 80px 0;
}

.why-img img {
  width: 85%;
  display: block;
  margin: auto;
}

.icon-box i {
  font-size: 45px;
  margin-right: 18px;
  color: #e7cb2d;
}

.why-content h2 {
  font-size: 42px;
  font-weight: 800;
}

.why-content h5 {
  font-size: 22px;
  font-weight: 700;
}

.why-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  text-align: justify; /* desktop justify */
}

.icon-box {
  margin-bottom: 25px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }

  .why-content {
    text-align: justify !important;   /* mobile justify */
  }

  .icon-box {
    justify-content: center;
    text-align: justify !important;
  }

  .icon-box i {
    margin-right: 12px;
  }

  .why-img img {
    width: 70%;
  }
}

        /*----------------- Contact Form -------------------------------*/
        .contact-heading {
            font-size: 42px;
            font-weight: 700;
        }

        .info-card {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }

        .info-card:hover {
            transform: translateY(-4px);
        }

        .info-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-right: 15px;
        }

        .contact-form-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        }

        .send-btn {
            width: 100%;
            background: #f4b434;
            color: #fff;
            padding: 12px;
            border-radius: 10px;
            border: none;
            font-weight: 600;
            font-size: 18px;
        }

        .send-btn:hover {
            background: #e09d23;
        }

        .contact-map {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

/*----------------------Achievement Section------------------*/
        .stats-section {
            position: relative;
            padding: 80px 20px;
            background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&h=600&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.35);
            z-index: 1;
        }

        .stats-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-card {
            background: linear-gradient(135deg, #465cd8 0%, #5e63e8a6 100%);
            padding: 50px 30px;
            text-align: center;
            color: white;
            transition: transform 0.3s ease;
            border-radius: 10px;
        }

        .stat-card:hover {
            transform: translateY(-10px);
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            border: 3px dotted white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-icon svg {
            width: 35px;
            height: 35px;
            stroke: white;
            fill: none;
            stroke-width: 2;
        }

        .stat-number {
            font-size: 64px;
            font-weight: bold;
            margin: 20px 0 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 18px;
            font-weight: 500;
            opacity: 0.95;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .stats-container {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 48px;
            }
        }


        /*--------------------------------Vision Mission-------------------*/
        .section-title {
            color: #484AA8;
            font-size: 2.6rem;
            font-weight: 800;
            margin-bottom: 40px;
        }

        /* Card styling */
        .value-card {
            display: flex;
            align-items: center;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            background-color: #fff;
            transition: transform 0.3s ease;
            max-width: 500px;
            margin: 10px auto;
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        /* Icon styling */
        .value-icon {
            width: 70px;
            height: 70px;
            margin-right: 20px;
            flex-shrink: 0;
            transition: 0.3s;
        }

        .value-icon:hover {
            transform: scale(1.3);
        }

        /* Text styling */
        .value-card h4 {
            color: #484AA8;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .value-card p {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
            text-align: justify;
        }

        /* Responsive */
        @media (max-width: 767px) {
            .value-card {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }

            .value-icon {
                margin-right: 0;
                margin-bottom: 15px;
                width: 60px;
                height: 60px;
            }
        }



        /*-----------------------------team-------------------------*/
        .team-wrapper {
            padding: 70px 0;
        }

        .team-card {
            overflow: hidden;
            border-radius: 18px;
            transition: transform 0.4s ease;
        }

        .team-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 18px;
            transition: transform 0.5s ease;
        }

        .team-card:hover img {
            transform: scale(1.08);
        }

        .Viewall {
            display: inline-block;
            margin-top: 40px;
            padding: 15px 30px;
            background-color: #f4b434;
            color: white;
            text-decoration: none;
            font-weight: 500;
        }

        .Viewall:hover {
            background-color: #f57f17;
            color: #000;
        }
       
.our-team {
    text-align: center;
    width: 100%;
}
.row.align-items-center {
    display: flex;
    justify-content: center;
}

        /* MOBILE VIEW FIXES */
        @media (max-width: 576px) {

            .team-wrapper {
                padding: 60px 15px !important;
            }

            .team-card img {
                height: 240px;
            }

            h1.display-5 {
                font-size: 32px;
                line-height: 40px;
                text-align: center !important;
            }

            .Viewall {
                display: block;
                margin: 30px auto 0;
                text-align: center;
            }

            .team-card + h5,
            .team-card + h5 + p {
                text-align: center;
            }

          
        }

        .content-wrapper {
            flex-grow: 1;
            padding: 2rem 0;
            background-color: #f8f9fa;
            text-align: center;
        }

        /* GOLD THEME */
        .text-primary {
            color: #ffc107 !important;
        }

        /* CTA Section */
        .cta-box {
            background: #fff8e1;
            border: 1px solid #ffe082;
            padding: 40px 30px;
            border-radius: 18px;
            margin: 40px auto -20px auto;
            position: relative;
            z-index: 20;
        }

        .cta-btn {
            background: #ffc107;
            color: #000;
            padding: 12px 28px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: 0.3s ease;
        }
        .cta-btn:hover {
            background: #ffca2c;
        }

        /* Footer Styling */
        .footer a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.75);
        }
        .footer a:hover {
            color: #fff;
        }

        .social-links a {
            padding: 0.5rem;
            transition: 0.3s;
        }
        .social-links a:hover {
            color: #ffeb3b !important;
        }

        footer i {
            margin-right: 0.5rem;
        }

        /*-----------contact page----------------*/
        .info-box {
            background: #082740;
            color: white;
            padding: 40px 20px;
            border-radius: 6px;
            text-align: center;
            height: 100%;
        }
        .info-box i {
            font-size: 40px;
            color: #ffb100;
            margin-bottom: 15px;
        }
        .contact-btn {
            background: #ffb100;
            color: white;
            padding: 10px 25px;
            font-weight: 600;
            border: none;
            border-radius: 6px;
        }
        .contact-btn:hover {
            background: #e09a00;
        }
        iframe {
            width: 100%;
            height: 350px;
            border: 0;
            border-radius: 8px;
        }

        /*----------------------------About breadcrumb hero section-------------------------*/
    .hero-section {
  background: #243744;
  padding: 80px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Desktop diagonal background image */
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-image: url('images/team.jpg');
  background-size: cover;
  background-position: center;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
}

/* Title */
.hero-title {
  font-weight: 900;
  font-size: 58px;
  max-width: 700px;
  line-height: 1.1;
  z-index: 10;
  position: relative;
}

/* Breadcrumb */
.breadcrumb-custom {
  font-size: 20px;
  margin-top: 20px;
  z-index: 10;
  position: relative;
}

.breadcrumb-custom a {
  color: #f4b434;
  text-decoration: none;
  font-weight: 700;
}

.breadcrumb-custom span {
  color: #fff;
  font-weight: 700;
}

/* Bottom yellow line */
.bottom-line {
  height: 12px;
  background: #f4b434;
}

/* -------------------------------------
   RESPONSIVE
-------------------------------------- */

@media (max-width: 992px) {
  .hero-section {
    padding: 60px 20px 40px;
    text-align: center;
  }

  .hero-section::after {
    display: none;
  }

  .hero-title {
    font-size: 40px;
    margin: auto;
  }

  .breadcrumb-custom {
    font-size: 18px;
    margin-top: 15px;
  }

  .mobile-image img {
    width: 90%;
    margin-top: 25px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 32px;
    padding: 0 10px;
  }

  .breadcrumb-custom {
    font-size: 16px;
  }
}
