
body{
    padding: 0px ;
    margin: 0px;
    width: 100%;
      font-family: "Poppins", sans-serif;
}

.privacysec h1 {
    font-size: 45px;
    font-weight: 600;
}

.privacysec span,
.privacysec p {
    font-size: 20px;
}

.privacysec h2 {
    font-size: 35px;
    font-weight: 600;
}

a.nav-link {
  cursor: pointer;
    font-weight: 500;
    font-size: 20px;
}

ul.navbar-nav {
    gap: 20px;
}
a.custombtn:hover {
    background: white;
    border: white solid 2px;
    color: black;
}
.custombtn{
  font-size: 20px !important;
  border-radius: 50px !important;
}
/* Custom Styles for the Fully Responsive Banner */

/* --- 1. GENERAL STYLING --- */

/* Setting the main header to overlap the banner */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20; /* On top of everything */
}

/* Staff Registration Button Styling */
.staff-reg-btn {
    background-color: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    border-radius: 0;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    transition: all 0.3s ease !important;
}
.staff-reg-btn:hover {
    background-color: #FFC844 !important;
    border-color: #FFC844 !important;
    color: #fff !important;
}


/* --- 2. BANNER STYLING (The full screen section) --- */

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

/* Video Background Sizing (Ensures full coverage on all devices) */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

#bg-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-overlay {
    /* background-color: rgba(0, 0, 0, 0.5);  */
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Centering the main content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 90%; /* To give some padding on small screens */
    max-width: 1200px;
}

/* --- 3. TYPOGRAPHY AND LOGO STYLING (The KEY to Responsiveness) --- */

/* Desktop/Large Screen Styles (Default) */
.main-title {
    font-size: 5rem; 
    font-weight: 700;
    line-height: 1;
    letter-spacing: 5px;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Logo positioning and size for large screens */
.simulated-logo {
    position: absolute;
    top: -100px;
    left: -150px;
    z-index: 6;
    opacity: 0.9;
}
.p-text {
    font-size: 15rem; /* Large 'P' */
    opacity: 0.6; 
}
.triangle-element {
    /* Large Triangle */
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid #FFC844;
    transform: rotate(-45deg);
    position: absolute;
    top: 50px;
    left: 80px;
}


/* --- 4. MEDIA QUERIES for Tablet and Mobile --- */

/* Medium devices (Tablets, 768px and up) */
@media (max-width: 992px) {
    .main-title {
        font-size: 4rem; /* Smaller title on tablets */
    }
    .tagline {
        font-size: 1.1rem;
    }
    
    /* Reposition and resize logo for tablets */
    .simulated-logo {
        top: -80px;
        left: -120px;
    }
    .p-text {
        font-size: 12rem;
    }
    .triangle-element {
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-bottom: 80px solid #FFC844;
        top: 40px;
        left: 60px;
    }
}

/* Small devices (Mobile phones, 576px and up) */
@media (max-width: 576px) {
    .main-title {
        font-size: 2.5rem; /* Much smaller title on phones */
        letter-spacing: 2px;
    }
    .tagline {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    /* Reposition and resize logo significantly for phones */
    .simulated-logo {
        top: -40px;
        left: -60px;
    }
    .p-text {
        font-size: 8rem;
    }
    .triangle-element {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 40px solid #FFC844;
        top: 20px;
        left: 30px;
    }
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    z-index: 1; 
}

#bg-video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* --- About Section Styling --- */

.about-section {
    background-color: #fff; /* White background */
    color: #333; /* Default text color */
}

/* --- Section Separator (Line with Triangle) --- */
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem; /* Space below the separator */
}

.section-separator .line {
    width: 100px; /* Length of the line */
    height: 1px; /* Thickness of the line */
    background-color: #ccc; /* Grey color for the line */
    margin: 0 10px; /* Space between line and icon */
}

.triangle-icon {
    width: 30px; /* Size of the container for the triangle icon */
    height: 30px;
}
.orbit-icon img {
    width: 19px;
    height: 18px;
}

.triangle-icon img {
    max-width: 100%;
    height: auto;
}

/* --- Section Tag "WE ARE PRIME TALENT" --- */
.section-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0A2A3B; /* Orange color */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.custom-graphic-container img {
    width: auto ;
}

.prime-talent-banner {
    padding: 250px 0px 50px 0px !important;
    /* padding: 100px 0px !important; */
    background-size: cover;
    background-position: center;
    position: relative; 
    z-index: 1;
    height: 60vh;
    display: grid;
    align-items: end;

}

.prime-talent-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-color: #00000061;
    /* background-color: #0a2a3bd1;  */
    z-index: -1; 
}


@keyframes up-down-bounce {
    0%, 100% {
        transform: translateY(0); 
        opacity: 1;
    }
    50% {
        transform: translateY(-10px); 
        opacity: 0.8;
    }
}

.prime-talent-banner .text-white img {
    display: block; 
    margin: 0 auto; 
    animation: up-down-bounce 1.5s ease-in-out infinite;
}
.workbanner {
    background: url(../imgs/work-banner.png);
    background-position: center;
    background-repeat: no-repeat;
}
.servicesbanner{
    background: url(../imgs/service-banner.png);
  background-position:center ;
  background-repeat: no-repeat;
}
.aboutbanner{
  background: url(../imgs/about-banner.png);
  background-position:center ;
  background-repeat: no-repeat;
}
.circle-sec{
  background: url(../imgs/earth.png);
  background-position:center ;
  background-repeat: no-repeat;
}
.team-one{
  background: url(../imgs/team-one.png);
  background-position:center ;
  background-repeat: no-repeat;
}
.team-two{
  background: url(../imgs/team-two.png);
  background-position:center ;
  background-repeat: no-repeat;
}
.team-three{
  background: url(../imgs/team-three.png);
  background-position:center ;
  background-repeat: no-repeat;
}
.team-four{
  background: url(../imgs/team-four.png);
  background-position:center ;
  background-repeat: no-repeat;
}
.team-five {
    background: url(../imgs/team-five.png);
    background-position: center;
    background-repeat: no-repeat;
}
.team-six {
    background: url(../imgs/team-six.png);
    background-position: center;
    background-repeat: no-repeat;
}
.team-seven {
    background: url(../imgs/team-seven.png);
    background-position: center;
    background-repeat: no-repeat;
}
.team-eight {
    background: url(../imgs/team-eight.png);
    background-position: center;
    background-repeat: no-repeat;
}
/* --- Main Title "Connecting Excellence with Opportunity" --- */
.section-title {
    font-size: 3rem; /* Adjust as needed */
    font-weight: 700;
    line-height: 1.2;
    color: #212529; /* Darker text color */
    margin-bottom: 1.5rem;
}

.section-title .highlight-text {
    color: #FFC844; /* Orange highlight */
}

/* --- Description Paragraph --- */
.section-description {
        font-size: 20px;
    line-height: 1.8;
    color: #002A3A;
}

.section-description strong {
    font-weight: 700; /* For the bold text */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    .section-description {
        font-size: 1rem;
        max-width: 90%; /* On smaller screens, allow it to take more width */
    }
    .section-separator .line {
        width: 60px; /* Shorter lines on mobile */
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    .section-tag {
        font-size: 0.8rem;
    }
    .section-description {
        font-size: 0.95rem;
    }
    .section-separator .line {
        width: 30px; /* Even shorter lines */
    }
    .triangle-icon {
        width: 20px; /* Smaller icon */
        height: 20px;
    }
}


/* --- Impact Section Styling --- */

.impact-section {
    background-color: #0A2A3B; /* Dark blue background color from the image */
    color: #fff; /* Default text color for this section */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.impact-title {
    font-size: 50px;
    font-weight: 600;
    color: #fff; /* White title */
    margin-bottom: 3.5rem; /* Space below the title */
}

.impact-feature-item {
    padding: 20px;
    height: 100%; /* Ensure equal height items */
    display: flex; /* For flexible content alignment */
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content horizontally */
}

/* --- Icon Styling --- */
.impact-icon {
    width: 80px; /* Size of the icon container */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.impact-icon img {
    /* SVG icons will take the color from parent by default if filled with 'currentColor' */
    width: 100%; /* Make icon take full width of its container */
    height: 100%;
    object-fit: contain;
}

/* --- Typography Styling --- */

.impact-item-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff; /* White title for items */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.impact-item-description {
    font-size: 16px;
    line-height: 1.7;
    color: #FFFFFFCC; /* Slightly lighter white for description */
    max-width: 350px; /* Limit width for better readability */
}

.impact-item-description strong {
    font-weight: 700;
    color: #fff; /* Bold text should be pure white */
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .impact-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    .impact-icon {
        width: 70px;
        height: 70px;
    }
    .impact-item-title {
        font-size: 1.1rem;
    }
    .impact-item-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .impact-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    .impact-icon {
        width: 60px;
        height: 60px;
    }
    .impact-item-title {
        font-size: 1rem;
    }
    .impact-item-description {
        font-size: 0.9rem;
    }
    .impact-feature-item {
        padding: 15px;
    }
}


 .testimonial-section {
      padding: 80px 0;
      text-align: center;
    }

    .testimonial-section h6 {
      color: #082032;
      font-weight: 600;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .testimonial-section h2 {
          font-weight: 600;
    color: #082032;
    margin-bottom: 60px;
    font-size: 50px;

    }

    .testimonial-card {
      border: 2px solid #fbc02d;
      border-radius: 20px;
      padding: 30px;
      text-align: left;
      background: #fff;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      height: 100%;
      transition: all 0.3s ease;
    }

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

    .client-info {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .client-info img {
      width: 80px;
      height: 80px;
       border-radius: 0%; 
      margin-right: 15px;
    }

    .client-name {
      font-size: 20px;
      font-weight: 700;
      margin: 0;
      color: #0a1f33;
    }

    .client-role {
      font-size: 14px;
      color: #ff8c42;
          text-transform: uppercase;
    }

    .testimonial-text {
      font-size: 15px;
      color: #333;
      margin-top: 10px;
    }

    .quote-icon {
      font-size: 50px;
      color: #fbc02d;
      position: absolute;
      right: 40px;
      top: 30px;
      opacity: 0.3;
      display: none;
    }

    @media (max-width: 991px) {
      .testimonial-section h2 {
        margin-bottom: 40px;
      }
    }






    .circle-container {
      position: relative;
      width: 700px;
      height: 700px;
    }

    .center-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #022b3a;
      color: white;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      transition: 0.4s;
    }

    .center-circle h3 {
      font-weight: 700;
      margin-bottom: 10px;
    }

    .orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 450px;
      height: 450px;
      border: 1px solid #000000;
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }

    .orbit-icon {
      position: absolute;
    width: 30px;
    height: 30px;
      background-color: #022b3a;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .orbit-icon.active, .orbit-icon:hover {
      background-color: #f4c430;
      color: #022b3a;
    }

    /* Positioning outer icons (5 items) */
    /* .icon1 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
    .icon2 { top: 40%; left: 100%; transform: translate(-50%, -50%); }
    .icon3 { bottom: -1%; left: 75%; transform: translate(-50%, -50%); }
    .icon4 { bottom: -1%; left: 25%; transform: translate(-50%, -50%); }
    .icon5 { top: 40%; left: 0%; transform: translate(-50%, -50%); }
    .icon6 {top: 100%;left: 50%;transform: translate(-50%, -50%);} */

        /* CSS for 6 evenly spaced icons (60 degrees apart) */
    
        .icon1 {
            top: 0%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    
        .icon2 {
            top: 25%;
            /* ~ (1 - sin(30)) / 2 * 100% */
            left: 93.3%;
            /* ~ (1 + cos(30)) / 2 * 100% */
            transform: translate(-50%, -50%);
        }
    
        .icon3 {
            top: 75%;
            /* ~ (1 - sin(-30)) / 2 * 100% */
            left: 93.3%;
            transform: translate(-50%, -50%);
        }
    
        .icon4 {
            top: 100%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    
        .icon5 {
            top: 75%;
            left: 6.7%;
            /* ~ (1 + cos(210)) / 2 * 100% */
            transform: translate(-50%, -50%);
        }
    
        .icon6 {
            top: 25%;
            left: 6.7%;
            transform: translate(-50%, -50%);
        }

    .fade {
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .fade.show {
      opacity: 1;
    }

    @media (max-width: 768px) {
      .circle-container {
        width: 320px;
        height: 320px;
      }

      .center-circle {
        width: 220px;
        height: 220px;
      }

      .orbit {
        width: 280px;
        height: 280px;
      }

      .orbit-icon {
        width: 30px;
        height: 30px;
      }
    }




.featured-section {
      padding: 80px 0;
      text-align: center;
    }
    .featured-section h2 {
          font-weight: 600;
    color: #082032;
    margin-bottom: 60px;
    font-size: 50px;

    }
    .staff-card {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .staff-card:hover {
      transform: translateY(-8px);
    }
    .staff-card img {
      width: 45px;
      height: 45px;
      object-fit: cover;
    }
    .staff-info {
      padding: 20px;
    }
    .staff-name {
      font-weight: 600;
      font-size: 18px;
      margin-top: 10px;
      color: #0a1f33;
    }
    .staff-role {
      font-size: 14px;
      color: #888;
    }
    .btn-profile {
      background: #ffca28;
      border: none;
      color: #000;
      font-weight: 600;
      border-radius: 50px;
      padding: 10px 30px;
      margin-top: 15px;
      transition: all 0.3s ease;
    }
    .btn-profile:hover {
      background: #fbc02d;
      color: #000;
    }
    .carousel-control-prev, .carousel-control-next {
      width: 60px;
      height: 60px;
      background: #ffca28;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
    }
    .carousel-control-prev-icon, .carousel-control-next-icon {
      filter: invert(1);
    }















/* ============================================== */
/* FOOTER STYLING */
/* ============================================== */
.main-footer {
    background-color: #0A2A3B; /* Dark blue background jaisa image mein hai */
    color: #fff; /* Default text white */
    font-size: 0.95rem;
}

/* Footer Left Column (Logo Area) */
.footer-col-left {
    border-right: 1px solid rgba(255, 255, 255, 0.1); /* Light grey vertical line */
    padding-right: 2rem; /* Space from the line */
}

/* On medium and small screens, remove the vertical line */
@media (max-width: 991px) {
    .footer-col-left {
        border-right: none;
        padding-right: 15px; /* Default Bootstrap padding */
        align-items: center !important; /* Center content */
    }
    .footer-col-left .footer-logo {
        text-align: center;
    }
}

.footer-logo img {
    max-width: 280px; /* Adjust logo size */
    height: auto;
}

.logo-tagline {
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Footer Links Group */
.footer-links-group h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links-group ul li a {
    color: rgba(255, 255, 255, 0.6); /* Lighter grey for links */
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;/* For centering on small screens */
}

@media (min-width: 768px) {
    .footer-links-group ul li a {
        justify-content: flex-start; /* Align left on larger screens */
    }
}


.footer-links-group ul li a:hover {
    color: #FFC844; /* Orange on hover */
}

.footer-links-group ul li a .fas {
    color: #FFC844; /* Orange caret icon */
    font-size: 0.8rem;
}

/* Newsletter Form */
.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1); /* Transparent white background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 5px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5); /* Lighter placeholder text */
}

.newsletter-form .btn-warning {
    background-color: #FFC844; /* Orange button */
    border-color: #FFC844;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    padding: 0.75rem 1.5rem;
    color: #000 !important;
    border-radius: 50px !important;
}

.newsletter-form .btn-warning:hover {
    background-color: #e69100;
    border-color: #e69100;
    color: #000 !important;
    border-radius: 50px !important;
}
.newsletter-form.d-flex.mb-4 {
    background: #FFFFFF;
    border-radius: 50px;
    padding: 5px;
}

.newsletter-form input {
    border-radius: 50px !important;
    border: 0px !important;
    background: transparent !important;
    padding: 10px !important;
    color: #CACACA;
}

.newsletter-form input::placeholder {
    color: #CACACA !important;
}
/* Social Icons */
.social-icons .social-icon {
    width: 40px;
    height: 40px;
    color: #FFC844;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.social-icons .social-icon:hover {
    background-color: #FFC844; /* Orange on hover */
    color: #fff;
}

/* Footer Bottom (Copyright) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Thin white line */
    padding-top: 20px;
    margin-top: 40px; /* Space above the line */
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5); /* Lighter grey for copyright text */
    font-size: 0.85rem;
}

/* Responsive adjustments for text alignment */
@media (max-width: 767px) {
    .footer-col-left {
        padding-bottom: 2rem; /* Add some space below logo on small screens */
    }
}







.staff-info {
    display: flex;
    justify-content: space-around;
    align-items: end;
    position: absolute;
    width: 100%;
    bottom: 0px;
}

.staff-card {
  position: relative;
  overflow: hidden;
}

.staff-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 110%);
  z-index: 0;
}

.staff-card.staff-info {
  position: relative;
  z-index: 1; /* ensures button and image stay above the overlay */
}
.align-end{
  align-items: end;
}

.staff-card {
    min-height: 450px;
    background-size: cover;
    border-radius: 25px;
}

.team-two,.team-three,.team-six,.team-seven {
    min-height: 350px !important;
        background-position: top;
}

ul.list-unstyled img {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

.missionh {
    color: #0A2A3B;
    font-size: 50px;
}
.missionp {
    color: #002A3A !important;
    font-size: 20px;
}

.forbor {
    border: solid 2px #FFC844 !important;
    border-radius: 26px !important;
}


/* Filter Button Styling */
.portfolio-filter-btn {
    background-color: white;
    color: #495057; 
    border: 1px solid #ced4da;
    font-weight: 500;
    padding: 10px 100px;
    border-radius: 6px;
    transition: all 0.2s;
}

.portfolio-filter-btn.active {
    background-color: #F07E53 !important;
    border-color: #F07E53 !important;
    color: white;
}

/* Uniform Image Sizing and Styling */
.portfolio-img {
    transition: transform 0.3s ease-in-out; 
}

/* Custom Overlay Icon Styling */
.portfolio-icon-overlay {
    position: absolute;
    top: 15px; 
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: #A60000;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 10; 
}

.portfolio-item {
    overflow: hidden; 
    border-radius: 6px;
}
.justify-space-between {
    justify-content: space-between;
}























.portfolio-card-container {
    padding: 20px;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 500px; 
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px !important;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.card-overlay h4 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.card-overlay p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.3;
}

.card-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    z-index: 3;
}











 .section-bg-light {
     background-color: #f8f8f8;
 }

 .section-height-large {
     min-height: 50vh;
 }

 .section-height-small {
     min-height: 40vh;
 }


 .custom-image-placeholder img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }


 .circle-container {
     position: relative;

     width: 600px;
     height: 600px;
     margin: 0 auto;
 }

 .center-circle {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background-color: #022b3a;
     color: white;
     width: 300px;
     height: 300px;
     border-radius: 50%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 20px;
     box-shadow: 0 10px 20px rgba(2, 43, 58, 0.3);
     transition: all 0.4s ease;
 }


 .center-circle h3 {
     font-weight: 700;
     margin-bottom: 10px;
        font-size: 20px;
     /* font-size: 1.5rem; */
 }

 .center-circle p {
        font-size: 13px;
     /* font-size: 1rem; */
     line-height: 1.5;
 }

 .orbit {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 450px;
     height: 450px;
     border: 2px dashed #9ca3af;
     border-radius: 50%;
     transform: translate(-50%, -50%);
     transition: all 0.4s ease;
 }

 .orbit-icon {
     position: absolute;
     width: 30px;
     height: 30px;
     background-color: #022b3a;
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
     font-size: 1.25rem;
     padding: 2px 0 0 4px;
 }

 .orbit-icon.active,
 .orbit-icon:hover {
     background-color: #f4c430;
     color: #022b3a;
     transform: translate(-50%, -50%) scale(1.1);
 }


 .orbit-icon.active {
     animation: pulse-active 2s infinite cubic-bezier(0.66, 0, 0, 1);
 }

 .fade {
     opacity: 0;
     transition: opacity 0.4s ease, transform 0.4s ease;
 }

 .fade.show {
     opacity: 1;
     /* transform: translate(-50%, -50%) scale(1); */
 }


 .highlight-text {
     color: #f4c430;
 }


 @media (max-width: 768px) {
     .circle-container {
         width: 320px;
         height: 320px;
     }

     .center-circle {
         width: 220px;
         height: 220px;
     }

     .center-circle h3 {
         font-size: 15px;
     }

     .center-circle p {
         font-size: 10px;
     }

     .orbit {
         width: 280px;
         height: 280px;
     }

     .orbit-icon {
         width: 33px;
         height: 33px;
         font-size: 1rem;
     }
     .orbit-icon img{
        width: 17px;
        height: 15px;
     }
 }


section.contact-hero.py-5 {
    padding: 150px 0px 0px 0px !important;
}

.contact-hero .img-container {
    margin-bottom: -150px;
}

.contact-form-section {
    padding: 200px 0px 50px 0px !important;
}

.yellowheading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700 !important;
    font-size: 50px;
        text-align: center;
}

.teambtn {
    background: #F07E53 !important;
    color: white;
    padding: 14px 30px;
    text-decoration: none;
    border: solid 1px #F07E53;
    border-radius:50px;
}
.teambtn:hover {
    background: transparent !important;
    color: #F07E53;
    border: solid 1px #F07E53 !important;
}

.btncenter {
    padding: 50px 0px !important;
}

section#next-section {
    overflow: hidden;
}
@media (max-width: 767px){
    .hero-banner {
        height: 330px;
    }

    .hero-banner #bg-video {
        min-height: 10px !important;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    header .navbar-brand img {width: 100%;max-width: 100px;}

    .hero-banner .scroll-down-btn {
        bottom: 10px;
    }

    .hero-banner .scroll-down-btn img {
        width: 24px;
    }
    .yellowheading {
        font-size: 1.8rem;
    }

    .yellowheading .triangle-right img {
        width: 29px;
    }
    .reverse-mobile {
        flex-direction: column-reverse;
    }
    .footer-logo img {
        max-width: 120px;
    }

    .footer-col-left {
        padding-bottom: 0;
        margin-bottom: 0 !important;
    }
    .footer-logo img {
        max-width: 120px;
    }

    .footer-col-left {
        padding-bottom: 0;
        margin-bottom: 0 !important;
    }

    .footer-links-group h5 {
        font-size: 1rem;
    }

    .footer-links-group ul li a {
        font-size: 14px;
    }

    .icon4 {
        bottom: -4%;
    }

    .icon3 {
        bottom: -4%;
    }
    .navbar-collapse {
        background: #FFFFFF;
        padding: 5px 15px 15px;;
        border-radius: 10px;
        border: 1px solid #ededed;
    }

    .navbar-dark .navbar-nav .nav-link {
        color: #002a3a;
        font-size:15px;
    }

    .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .show>.nav-link{
        color: #ffc844;
    }

    ul.navbar-nav {
        gap: 0;
    }

    .staff-reg-btn {border-color: #ffc844 !important;color: #ffc844 !important;font-size: 14px !important;margin-top: 0 !important;}

}


/* Service List Styling ko Accordion Header ke liye adjust karein */
.service-header {
    background-color: transparent !important;
        color: #002A3A !important;
            font-size: 26px;
            font-weight: 600 !important;
    padding: 10px 0 !important;
    /* Padding kam karein */
    width: 100%;
    text-align: left;
    border: none !important;
    display: flex;
    justify-content: space-between;
    /* Space between text and icon */
    align-items: center;
}

.service-header:focus {
    box-shadow: none !important;
}

/* Jab collapse ho, tab icon ko ghumaane ke liye */
.service-icon {
    font-weight: bold;
    font-size: 1.5rem;
    color: #495057;
    transition: transform 0.3s ease;
}

/* Plus sign ko hide karein, kyunki button mein default arrow hota hai */
.accordion-button::after {
    display: none !important;
}

/* Agar aap + sign ko x mein badalna chahte hain jab khula ho: */
.accordion-button:not(.collapsed) .service-icon {
    /* Agar aap + ko - mein badalna chahte hain, to iski zaroorat nahi hai. 
       Warna is property ko hata dein ya custom CSS likhein. */
}

/* Body (Content) ki styling */
.service-body {
    padding-top: 5px;
    padding-bottom: 20px;
    font-size: 20px;
        color: #002A3A;
}

.accordion-header {
    color: #002A3A !important;
    width: fit-content;
    font-weight: 600;
}

span.service-icon {
    padding-left: 10px !important;
}

.services-section {
    padding-bottom: 80px ;
}

.contact-form-section form input,
.contact-form-section form textarea {
    background: #D9D9D9 !important;
}

.contact-form-section form label{
    color: #002A3A !important;
    font-weight: 500 !important;

}

@media only screen and (max-width: 767px) and (min-width: 375px)  {

    .staff-card{
    min-height: 500px !important;
}
}



.contact-info-row {
    margin-top: 50px;
    margin-bottom: 50px;
}


.icon-circle {
    width: 65px;
        height: 65px;
    /* width: 70px;
    height: 70px; */
    border-radius: 50%;
    background-color: #f5a623;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;

}


.contact-text-left {
    text-align: left;
}


.contact-label {
    font-size: 26px;
        font-weight: 600;
        color: #002A3A;
}

.contact-detail {
    font-size: 12px;
    /* font-size: 18px; */
        color: #002A3A;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 400;
}



.contact-footer {
    background-color: white;
}

header.main-header {
    padding: 20px 0px;
}

@media (max-width: 768px) {
    .address-text br {
        display: block;
    }
}