
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

.log

/* Main Styling */
html, body {
    
    font-family: 'Poppins', sans-serif;
    line-height: 1.7em;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    
    width: 100%;
}


.logo {
    
    margin-bottom: 0;
    padding-bottom: 0;
    vertical-align: middle;
    height: 125px ;
    width: 125px;
    position: relative;
    top: -35px;
    margin-top: -12px;
}

a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

h1, h2, h3,h6 {
    padding-bottom: 20px;
}

p {
    margin: 10px 0;
}

 /* Parallax Image */
 .parallax {
    background-image: url('../img/photo1.jpg');
    height: 70vh; /* Adjust height */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

 /* Parallax Image */
 #world-map {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff; /* Light background */
    padding: 40px 10%;
}

.world-map-text {
    max-width: 50%;
}

.world-map-text h2 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
}

.world-map-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.world-map-text .btn {
    background-color: #ff914d;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.world-map-text .btn:hover {
    background-color: #e57a30;
}

.map-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.map-container img {
    width: 100%; /* Make it take full space */
    max-width: 600px; /* Adjust this as needed */
    height: auto;
}


/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromTop {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Fixed pulse animation that doesn't cause overflow */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); } 
}

/* Styling for Theme Toggle btn */

.theme-toggle {
    background: #0F3460;
    color: white;
    font-size: 20px;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-top: 15px;
    
    
}

.theme-toggle:hover {
    background: #E94560;
    transform: scale(1.1);
}


/* Utility Class */
.container {
    margin: auto;
    max-width: 1100px;
    overflow: auto;
    padding: 0 20px;
}

.primary-text {
    color: #fc8f22;
}


.lead {
    font-size: 21px;
    animation: fadeIn 1.5s ease-in;
}

.btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    font-size: 18px;
    color: white;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    padding: 13px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Contained pulse animation */
    animation: pulse 2s infinite;
    transform-origin: center;
    transform: translateZ(0); 
    backface-visibility: hidden;
    overflow-x: hidden; /* Prevent horizontal scroll on smaller screens */
    
}

.btn-contact {
    margin-left: 10px;
    
       font-family: 'Poppins', sans-serif;
    display: inline-block;
    font-size: 18px;
    color: white;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    padding: 8px 8px;
    border-radius: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Contained pulse animation */
    
    transform-origin: center;
    transform: translateZ(0); 
    backface-visibility: hidden;
    overflow-x: hidden; /* Prevent horizontal scroll on smaller screens */
    
}

.btn:hover {
    background: #f7c08a;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-light {
    background: #333;
}

.bg-dark {
    background: #444;
    color: #fff;
}

.bg-light {
    background: #f4f4f4;
    color: #333;
}

.primary.bg {
    color: #333;
    background: #f7c08a;
}

.clr {
    clear: both;
}

.l-heading {
    font-size: 40px;
    padding-top: 5px;
}

/* Padding */
.py-1 { padding: 10px 0; }
.py-2 { padding: 20px 0; }
.py-3 { padding: 30px 0; }

/* Navbar */
#navbar {
    background-color: #fff;
    color: #fff;
    position: sticky;
    max-height: 67px;
    top: 0;
    z-index: 100;
    animation: slideInFromTop 1s ease-out;

}

#navbar a {
    color: #000000;
    transition: all 1s ease;
}

#navbar h1 {
    float: left;
    padding-top: 20px;
}

#navbar ul {
    list-style: none;
    float: right;
}

#navbar ul li {
    float: left;
}

#navbar ul li a {
    display: block;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: top;
}

#navbar ul li a:hover {
    background: #444;
    color: #f59e47;
}

#navbar ul li a.current {
    background: #222;
    color: #f59e47;
}

#navbar ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f7c08a;
    transition: width 0.3s ease;
}

#navbar ul li a:hover::after {
    width: 100%;
}

/* Showcase */
#showcase {
    
    height: 600px;
    position: relative;
    animation: fadeIn 2.5s ease;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

#showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#showcase .showcase-content {
    color: #fff;
    text-align: center;
    padding-top: 170px;

    position: relative;
    animation: slideInFromTop 2.5s ease;
}

#showcase .showcase-content h1 {
    font-size: 60px;
    line-height: 1.2em;
    animation: slideInFromTop 2.5s ease;
}

#showcase .showcase-content .lead {

    padding-bottom: 50px;
    line-height: 1.7em;
    
}

/* Home Info */
#home-info {
    height: 400px;
    overflow: hidden;
}

#home-info .info-img {
    float: left;
    width: 50%;
    background: url('../img/pexels-photo-258154.jpeg') no-repeat center center/cover;
    min-height: 100%;
    transition: transform 1s ease;
    border-bottom-left-radius: 20px;
}

#home-info:hover .info-img {
    transform: scale(1.05);
    
}

#home-info .info-content {
    float: right;
    width: 50%;
    height: 100%;
    text-align: center;
    padding: 95px 30px;
    overflow: hidden;
    animation: slideInFromRight 1.5s ease;
}

#home-info .info-content h2 {
    transition: transform 0.5s ease;
}

#home-info .info-content:hover h2 {
    transform: translateY(-5px);
}

#home-info .info-content p {
    padding-bottom: 30px;
}

/* Features */
.box {
    float: left;
    width: 33.3%;
    padding: 50px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeIn 2s ease;
}

.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.box i {
    margin-bottom: 10px;
    transition: all 0.3s ease;
    animation: bounce 3s infinite;
    /* Ensure bouncing stays contained */
    transform-origin: bottom center;
}

.box:hover i {
    color: #f7c08a;
    transform: scale(1.2);
}



/* About Info */
#aboutinfo .info-right {
    float: center;
    width: 50%;
    min-height: 100%;
    animation: slideInFromRight 1.5s ease;
}

#aboutinfo .info-right img {
    display: block;
    margin: 100px auto;
    width: 70%;
    border-radius: 50%;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#aboutinfo .info-right img:hover {
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#aboutinfo .info-left {
    float: left;
    width: auto;
    min-height: 100%;
    animation: slideInFromLeft 1.5s ease;
}

/* Testimonials */

#testimonials.bg-light {
    padding: 100px 0;
    background: #f8f9fa;
    color: white;
}

#testimonial {
    height: 600px;
    background: url('../img/people-2593251_1280.jpg') no-repeat center center/cover;
    padding-top: 40px;
    position: relative;
}

#testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

#testimonial h2 {
    color: #fff;
    text-align: center;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
    animation: fadeIn 1.5s ease;
}

#testimonial .testimonial {
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 5px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    background: #000000;
    transition: all 0.3s ease;
    animation: fadeIn 2s ease;
}

#testimonial .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

#testimonial .testimonial img {
    width: 100px;
    float: left;
    margin-right: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#testimonial .testimonial:hover img {
    transform: scale(1.1);
}

/* Contact Us Form */

.contact-page {
    background: url('../img/pexels-chris-schippers-139261-421927.jpg') no-repeat center center/cover;
}

.contact-form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}


.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #ff6a00;
  }
  
#contact-form {
    
    margin-right: 0;
    max-width: 800px;
    max-height: auto;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1.5s ease;
    
}

#modelSelect {
    width: 100%;
    height: 45px;
}

.contact-form-container label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
  }
  
#contact-form > div > p

{
    margin-bottom: 25px;
    font-size: 16px;
    color: #333;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.area-of-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }

  input[type="checkbox"] {
    transform: scale(1.2);
  }

  .area-of-expertise label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
  }


.contact-form-container select {
    appearance: none;
  }
  

#contact-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

#contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    transition: color 0.3s ease;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
    font-size: 16px;
}

#contact-form textarea {
    height: 180px;
    resize: none;
}

#contact-form input:focus, 
#contact-form textarea:focus {
    outline: none;
    border-color: #f7c08a;
    box-shadow: 0 0 10px rgba(247, 192, 138, 0.3);
    transform: translateY(-2px);
}

#contact-form .form-group:hover label {
    color: #f78a8a;
}

/* Submit Button */
#contact-form .btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #f59e47;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    animation: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

#contact-form .btn:hover {
    background: #e69b64;
    transform: scale(1.05);
}

#contact-form .btn:active {
    transform: scale(0.98);
}

.dropdown {
    position: relative;
    width: 100%;
  }
  
  .dropdown-btn {
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    background: #fff;
    border-radius: 4px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    z-index: 1000;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .dropdown-content label {
    width: 5%;
    display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  white-space: nowrap;
  }

  .dropdown-content input[type="checkbox"] {
    transform: scale(0.9);
  }

/* Main Footer */
#main-footer {
    text-align: center;
    background: #444;
    color: #fff;
    padding: 20px;
    animation: slideInFromTop 1s ease-out;
}

/* Responsive Animation Delays */
/* Hide hamburger on desktop */
#menu-toggle {
    display: none;
}

/* Mobile styles */@media (min-width: 769px) and (max-width: 1366px) {

      #nav-menu.active {
        display: flex;
        margin-top: -65px;
        
    }

      .hamburger {
        cursor: pointer;
        font-size: 30px;
        padding: 10px;
    }

       #menu-toggle {
        display: block;
        font-size: 30px;
        cursor: pointer;
        padding: 20px;
        float: right;
        margin-bottom: 65px;
    }

     #navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        padding: 0;
        margin: 0;
    }

    #navbar ul.show {
        display: flex;
    }

    #navbar ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    #navbar h1 {
        float: none;
        text-align: center;
        padding: 10px 0;
    }

    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    #menu-toggle {
        color: black;
    }

    .hamburger {
        cursor: pointer;
        font-size: 30px;
        padding: 10px;
    }

    #navbar h1.Logo {
        margin-top: 10px;  
        text-align: center;            /* Centers text inside the h1 */
        flex-grow: 1;                  /* Allow logo to take up remaining space */
        display: flex;
        justify-content: left;       /* Centers the logo within the h1 */
    }

#navbar ul.show {
    display: flex;
}

}



/* Mobile styles */@media (max-width: 768px) {

        #showcase .showcase-content {
       margin-top: 0px !important;
        padding-top: 100px !important;
        text-align: center !important;
        padding: 20px !important;
    }

    .lead {
        font-size: 14px !important;
    }
    .about-section {
        padding: 150px 10% !important;
    }

    .logo {
        margin-top: 5px !important;
    }

    .logo-img {
        background-color: red !important;
    }
   

    .parallax {
        background-image: url('../img/photo1.jpg');
        height: 70vh; /* Adjust height */
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    
    .footer-logo img {
        padding-top: 15px !important;
        padding-bottom: 10px !important;
        margin-top: -50px;
        margin-bottom: -50px;
        width: 150px !important;
    }
    


    .services-container {
        margin-bottom: 55px !important;
        display: grid !important;
        grid-template-columns: repeat(1, 3fr) !important; /* or 3, 1fr depending on your design */
        gap: 40px !important;
    }

    .services-container .service-box:nth-child(9) {
        grid-column: 1 / -1;  /* span all columns */
        justify-self: center; /* center the box itself */
        text-align: center;
      }
    
    #menu-toggle {
        display: block;
        font-size: 30px;
        cursor: pointer;
        padding: 20px;
        float: right;
    }

    #navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        padding: 0;
        margin: 0;
    }

    #navbar ul.show {
        display: flex;
    }

    #navbar ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }

    #navbar h1 {
        float: none;
        text-align: center;
        padding: 10px 0;
    }

    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    #menu-toggle {
        color: black;
    }

    .hamburger {
        cursor: pointer;
        font-size: 30px;
        padding: 10px;
    }

    #navbar h1.Logo {
        margin-top: 0;  
        text-align: center;            /* Centers text inside the h1 */
        flex-grow: 1;                  /* Allow logo to take up remaining space */
        display: flex;
        justify-content: center;       /* Centers the logo within the h1 */
    }

#navbar ul.show {
    display: flex;
}

}



@media screen and (max-width: 768px) {
    #navbar {
        animation-delay: 0.1s;
                animation-delay: 0.1s;
        min-height: 20px;
        text-align: center;
        padding: 1px 0;
        max-height: unset;
    }

    #navbar .container {
        display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            max-height: 100px;
            overflow-y: hidden;
    }

    #navbar h1.logo {
        text-align: center;
            flex-grow: 1;
            display: grid
;
            justify-content: left;
    }
    
    #showcase .showcase-content h1 {
        animation-delay: 0.3s;
    }
    
    #showcase .showcase-content .lead {
        animation-delay: 0.5s;
    }
    
    .box:nth-child(1) {
        animation-delay: 0.2s;
    }
    
    .box:nth-child(2) {
        animation-delay: 0.4s;
    }
    
    .box:nth-child(3) {
        animation-delay: 0.6s;
    }
}


/* General Styles for About Section */
.about-section {
    padding: 80px 10%;
    background-color: #f3f7fc;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left Side: Text & Stats */
.about-text {
    width: 50%;
}

.about-section-title {
    color: #f89c25;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-text h1 {
    font-size: 36px;
    font-weight: bold;
    color: #0d1b2a;
}

.about-highlight {
    color: #f89c25;
}

.about-text p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 20px;
}

/* Stats Box */
.about-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.about-stat-box {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    width: 30%;
}

.about-stat-box i {
    font-size: 30px;
    color: #f89c25;
    margin-bottom: 10px;
}

.about-stat-box h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.about-stat-box p {
    font-size: 14px;
    margin: 5px 0 0;
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #f89c25;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #d87c1a;
}

/* Right Side: Image Grid */
.about-images {
    width: 45%;
}

.about-img1 {
    width: 350px;
    height: 250px;
    object-fit: cover;
}

.about-img2 {
    width: 350px;
    height: 250px;
    object-fit: cover;
}

.about-img3 {
    width: 350px;
    height: 250px;
    object-fit: cover;
}

.about-img4 {
    width: 350px;
    height: 250px;
    object-fit: cover;
}



.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.about-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.about-grid img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text, .about-images {
        width: 100%;
    }

    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-stats {
        flex-direction: column;
    }

    .about-stat-box {
        width: 80%;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Partners */
#partners {
    padding: 50px 0;
    text-align: center;
    background: #ffffff;
}

#partners h1 {
    color: rgb(0, 0, 0); /* Change the color of the entire h1 */
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}
.partner {
    background: linear-gradient(276deg,rgba(235, 140, 16, 0.671),#e68e1bf1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.partner:hover {
    transform: translateY(-5px);
}
.partner img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.partner h3 {
    margin: 15px 0 10px;
    font-size: 18px;
    font-weight: bold;
}
.partner p {
    font-size: 14px;
    color: #ffffff;
}

/* ===== Services Section ===== */
#services {
    background: #f8f9fa; /* Light background to blend with the site */
    padding: 80px 0;
    text-align: center;
}

#services h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000; /* Highlighted heading */
    margin-bottom: 40px;
}

#services h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000; /* Highlighted heading */
    margin-bottom: 40px;
}

/* ===== Service Boxes ===== */
.service-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Adds spacing between boxes */
    margin-bottom: 85px;
}

.box {
    flex: 1 1 300px; /* Responsive layout */
    max-width: 250px;
    padding: 30px;
    border-radius: 0px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Styling for Testimonial Section */
#testimonials {
    text-align: center;
    padding: 100px 0;
    background: #222; /* Dark background */
    color: white;
}

.container h2 {
    color: #000000;
}

/* Testimonial Slider Container */
.testimonial-slider {
    position: relative;
    max-width: 60%; /* Adjusted width */
    margin: auto;
    overflow: hidden;
}

/* Track to Slide Testimonials */
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%; /* Adjusted to match the number of testimonials */
}

/* Individual Testimonial */
.testimonial {
    flex: 0 0 100%; /* Each testimonial takes full width */
    padding: 40px;
    background: linear-gradient(276deg,rgba(13, 53, 148, 0.671),#f17025be);
    border-radius: 10px;
    margin: auto;
    min-height: 150px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    max-width: 80%; /* Increased width */
}

/* Testimonial Text */
.testimonial-text {
    font-size: 20px;
    line-height: 1.5;
    padding: 20px;
    font-style: italic;
}

/* Navigation Buttons */
.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: background 0.3s;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Positioning Navigation Buttons */
.prev { left: -50px; }
.next { right: -50px; }

/* Adjust button placement */
@media (max-width: 768px) {
    .testimonial-slider {
        max-width: 90%;
    }
    
    .testimonial {
        padding: 30px;
        font-size: 18px;
    }

    .testimonial-btn {
        font-size: 20px;
        padding: 8px;
        width: 35px;
        height: 35px;
    }

    .prev { left: 10px; }
    .next { right: 10px; }
}

/* ===== Awards & Recognitions Section ===== */
#awards {
    background: #f8f8f8;
    padding: 60px 0;
    text-align: center;
}

#awards h2 {
    font-size: 2rem;
    color: #ff8c00;
    margin-bottom: 20px;
}

/* ===== Grid Layout for Awards ===== */
.awards-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.award {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 220px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.award img {
    max-width: 100px;
    border-radius: 10px;
}

.award:hover {
    transform: scale(1.05);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .testimonial {
        flex: 1 0 50%; /* Show 2 cards on mobile */
    }
    .prev, .next {
        display: none; /* Hide buttons on small screens */
    }
    
}

footer {
    background: #0d0d0d;
    color: #f1f1f1;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
}

.footer-logo img {
    
    margin-top: -50px;
    margin-bottom: -50px;
    width: 150px;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: #f1f1f1;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #feb47b;
}

.footer-socials a {
    color: #f1f1f1;
    font-size: 20px;
    margin: 0 10px;
    transition: transform 0.3s, color 0.3s;
}

.footer-socials a:hover {
    color: #feb47b;
    transform: scale(1.1);
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

.services-section {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 100px;
    background: linear-gradient(to right, #f9f9f9, #eef1f5); /* Soft gradient */
    font-family: 'Poppins', sans-serif;
}

.services-section h1 {
    padding-bottom: 30px;
}

.services-section h4 {
    font-size: 18;
    color: #000000;
    padding: 15px;
    margin-bottom: 40px;
}

/* Flexible layout with equal spacing */
.services-container {
    background: white;
    margin-top: 150px;
    border-radius: 15px;
    padding-top: 55px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* More spacing for a clean look */
    max-width: 1200px;
    margin: auto;
}

/* Service items without a box */
.service-box {
    position: relative;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Circle effect around the icon */
.service-box i {
    font-size: 25px;
    color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
    padding: 20px;
    border-radius: 0%;
    transition: transform 0.3s ease-in-out;
}

/* Title */
.service-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 12px;
}

/* Description appears on hover */
.service-description {
    font-size: 14px;
    color: #ffffff;
    background: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 110%; /* Moves tooltip above the icon */
    left: 50%;
    transform: translateX(-50%); /* Centers tooltip */
    opacity: 25%;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s;
    white-space: nowrap; /* Prevents line break */
}

/* On hover, the description appears */
.service-box:hover .service-description {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Subtle hover effect for icons */
.service-box:hover i {
    transform: scale(1.2);
}

.transition-divider {
    width: 100%;
    height: 80px; /* Adjust height for a smoother effect */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(240, 240, 240, 1) 100%);
}

/* Responsive Styles */

@media screen and (max-width: 768px) {

    
    /* General Styles */
    body {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        line-height: 1.5;
    }

    header {
        padding: 10px 20px;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    /* Hero Section */
    .hero {
        padding: 50px 20px;
        text-align: center;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    /* Content Sections */
    .section {
        padding: 20px 15px;
    }

    .section h2 {
        font-size: 20px;
    }

    .section p {
        font-size: 14px;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Footer */
    footer {
        padding: 15px 20px;
        text-align: center;
    }
}

/* Section Borders for Better Differentiation */
section, .parallax, #world-map, #partners, #testimonials, #services, #awards {
    border: 1px solid #f3ae6052;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


.hotel-section-wrapper {
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease;
    justify-content: center;
    max-width: 100%;
    
    margin-top: -35px;
}

.hotel-section-container {
    display: flex;
    transition: transform 0.3s ease;
    align-items: flex-end;
    width: auto;
    gap: 10px;
    overflow-x: auto; /* Allows smooth scrolling when too many panels */
    margin: 50px;
    scroll-behavior: smooth;
    padding: 10px;
}

.hotel-section-container .hotel-card.hotel-card-more {
    align-items: center;
    padding-top: 215px;
}

.hotel-card {
    
    width: 80px;
    height: 700px; /* Increased height to accommodate text */
    margin: 0 5px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    overflow: hidden;
    background: linear-gradient(to top, #f37c38b7, #ffffff);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0; /* Prevents panels from getting too small */
}



.hotel-card img {
    width: 100%;
    height: 70%; /* Image takes 70% of the panel height */
    object-fit: cover;
    transition: transform 0.9s ease-in-out;
}

.hotel-card:hover img {
    transform: scale(1.05);
}

.hotel-card:hover {
    width: 300px;
}

.hotel-card:hover .hotel-card-text {
    opacity: 1; /* Show text on hover */
}


.hotel-card-text {
    height: 30%;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    
}

.hotel-card-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #222;
    padding-bottom: 1px;
   margin-top: 25px;
}



.hotel-card-description {

    font-family:Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333;
}

/* Active Panel */

.hotel-card:hover::before {
    opacity: 1;
}

.hotel-card.active {
    width: 300px; /* Expands on activation */
}

.hotel-card.active .hotel-card-text {
    opacity: 1;
}

/* Custom scrollbar styling */
.hotel-section-container::-webkit-scrollbar {
    height: 5px;
}

.hotel-section-container::-webkit-scrollbar-track {
    background: #222;
}

.hotel-section-container::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
}

/* Mobile-Specific Styles */
@media screen and (max-width: 768px) {
    .hotel-section-wrapper {
        margin-top: 0; /* Adjust margin for mobile if needed */
        overflow: hidden; /* Ensure no horizontal scroll on wrapper */
        display: block; /* Change from flex to block on mobile */
        max-width: 100%;
        height: 500px; /* Give a fixed height to contain the rotating cards */
    }

    .hotel-section-container {
        display: block; /* Change from flex to block */
        width: 100%;
        margin: 0 auto; /* Center the container */
        overflow: hidden; /* Hide default scroll behavior */
        padding: 0; /* Remove padding */
        position: relative; /* Essential for absolute positioning of cards */
        height: 100%; /* Take full height of wrapper */
        
        /* Enable 3D space for rotation */
        transform-style: preserve-3d;
        perspective: 1000px; /* Sets the perceived depth for 3D transforms */
    }

    .hotel-card {
        width: 90%; /* Make card take up most of the width */
        height: 100%; /* Take full height of container */
        margin: 0 auto; /* Center individual card */
        flex-shrink: 1; /* Allow shrinking */
        
        position: absolute; /* Position cards for rotation */
        top: 0;
        left: 5%; /* Adjust to center based on 90% width */
        
        opacity: 0; /* Hide by default */
        /* Initial state for non-active cards on mobile: rotated off-screen */
        transform: rotateY(90deg); 
        backface-visibility: hidden; /* Hide back of the card during rotation */
        
        /* Smooth transition for card rotation and fade */
        transition: opacity 0.8s ease, transform 0.8s ease; 
        
        background: linear-gradient(to top, #f37c38b7, #ffffff); /* Keep background */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Keep shadow */
        display: flex; /* Keep flex for image and text arrangement */
        flex-direction: column;
        justify-content: flex-start; /* Align content to top */
    }

    /* Active card on mobile: fully visible and facing forward */
    .hotel-card.active {
        opacity: 1;
        transform: rotateY(0deg); 
        width: 90%; /* Maintain width when active */
    }

    /* Styles for the "Check out more hotels" card on mobile */
    .hotel-section-container .hotel-card.hotel-card-more {
        padding-top: 0; /* Reset desktop padding */
        justify-content: center; /* Center content vertically */
        align-items: center; /* Center content horizontally */
    }

    .hotel-card img {
        height: 60%; /* Image takes less height on mobile to make room for text */
        width: 100%; /* Ensure image fills card width */
        object-fit: cover;
    }

    .hotel-card-text {
        height: auto; /* Allow text content to define height */
        opacity: 1; /* Always show text on mobile */
        padding: 10px; /* Adjust padding */
        text-align: center; /* Center text */
        justify-content: flex-start; /* Align text to top */
    }

    .hotel-card-title {
        font-size: 1.2em; /* Adjust font size */
        margin-top: 10px; /* Smaller margin */
    }

    .hotel-card-description {
        font-size: 0.9em; /* Adjust font size */
        margin-bottom: 5px; /* Add some space below description */
    }

    /* Remove hover effects for mobile as they are not applicable on touch devices */
    .hotel-card:hover {
        width: 90%; /* Prevent unintended expansion */
    }

    .hotel-card:hover img,
    .hotel-card:hover .hotel-card-text {
        transform: none; /* Reset any hover transforms */
        opacity: 1;
    }

    /* No scrollbar needed for mobile cube effect */
    .hotel-section-container::-webkit-scrollbar {
        display: none;
    }
}

#partners {
    position: relative;
    background: url('../img/pexels-photo-66997.jpeg') no-repeat center center;
    background-size: cover; /* Ensures the image covers the whole section */
    background-position: center;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #f57e3a;
  --secondary-color: #e8e8e8;
  --text-dark: #0f172a;
  --text-light: #94a3b8;
  --white: #ffffff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--secondary-color);
}

.section__container {
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
    padding: 4rem 2rem;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
  
}

.section__container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.section__container h1 {
  position: relative;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.section__container h1::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 5rem;
  background-color: var(--primary-color);
}

.section__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.section__card {
      display: grid;
    margin: auto;
    justify-content: center;

    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 5rem 2rem 2rem;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    transition: 4.5s;
    align-content: center !important;
    width: 1000px;
}

/* Overlay tint */
.section__card.placeholder .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(243, 241, 239, 0.5); /* dark tint */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 1;
  text-align: center;
  pointer-events: none; /* Prevent interaction if needed */
}

.section__card.placeholder .overlay p {
    font-weight: lighter;
    font-style: italic;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: rgb(0, 0, 0);
}
/* Optional: Dim the content behind */
.section__card.placeholder .card-content {
  filter: blur(4px); /* Adjust the blur strength if needed */
  pointer-events: none; /* Prevent interaction */
  user-select: none; /* Prevent text selection */
  opacity: 0.7; /* Optional: slightly dim the content */
}



.section__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  transform: translate(-15%, -15%);
  width: 5%;
  aspect-ratio: 1;
  border-radius: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transition: 1.5s;
}

.section__card span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  font-size: 3rem;
  color: var(--white);
}

.section__card h4 {
  
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.section__card p {
  margin-bottom: 2rem;
  color: var(--text-light);
  transition: 0.3s;
}

.section__card img {
  margin-bottom: 1rem;
  max-width: 100px;
  border-radius: 100%;
  border: 2px solid var(--primary-color);
  transition: 0.3s;
}

.section__card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: 0.3s;
}

.section__card h6 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}

.section__card:hover::before {
  width: 400%;
}

.section__card:hover :is(h4, h5) {
  color: var(--white);
}

.section__card:hover :is(p, h6) {
  color: var(--secondary-color);
}

.section__card:hover img {
  border-color: var(--white);
}
/* Our Services Page */
.nhs-services-section {
    padding: 60px 20px;
    background: linear-gradient(to right, #f8f9fa, #eef2f3);
    font-family: 'Arial', sans-serif;
}

.nhs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.nhs-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #222;
    position: relative;
}

.nhs-highlight {
    color: #fc8f22;
    position: relative;
}

.nhs-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.nhs-service-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 300px;
    transition: transform 0.4s ease, background-color 0.4s ease;
    transform: translateY(0);
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.nhs-service-card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 50%;
    aspect-ratio: 1;
    border-radius: 100%;
    background-color: var(orange);
    z-index: -1;
    transition: 0.5s;
}




.nhs-service-card:hover::before {
    transform: scale(1);
}

.nhs-service-card:hover {
    transform: translateY(-10px) scale(1.03);
    background-color: #ff8c00; /* Deep orange */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.nhs-card-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    
    background-color: #f5fcff; 
    transition: transform 0.4s ease;
}

.nhs-service-card:hover .nhs-card-img {
    transform: scale(1.05);
}

.nhs-card-content {
    padding: 20px;
    position: relative;
    z-index: 1;
    
}

.nhs-card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
    color: #333;
}

.nhs-card-text {
    font-size: 1rem;
    color: #555;
    text-align: center;
    transition: color 0.3s ease;
}

.nhs-service-card:hover .nhs-card-text {
    color: #ffffff;
}

/* About-Us-Page */


.about-us-section {
    
    margin-top: 250px;
   padding: 100px 0;
   margin-bottom: 250px;
    background: url('../img/free-photo-of-buildings-around-illuminated-street-in-madrid-at-night.jpeg') no-repeat left;
    overflow: hidden;
    background-size: 35%;
}

.inner-container {
    width: 55%;
    float: right;
    align-items: flex-end;
    background-color: white;
    padding: 150px;
}

.inner-container h1 {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
}



.about-us-update-section {
    background: url('../img/pexels-photo-2470607.jpeg') no-repeat left;
    background-size:80%;
    background-repeat: no-repeat;
    background-position:  10% 50%;
    background-color: #fdfdfd;
    overflow: hidden;
    width: auto;
    padding: 100px 0;
}

.about-us-inner {
    width: 55%;
    float: right;
    background-color: #ffffff;
    padding: 150px;
    border: 5px double #ff914d;
}

.about-us-inner h1 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 900;
}

.about-us-text {
    font-size: 14px;
    color: #545454;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}

.about-us-skills {
    
    display: flex;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
}
.circle-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: orange;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 24%;
    margin-right: 1%;
}

.circle-button:hover {
    background-color: darkorange;
}




@media screen and (max-width: 1200px) {
    .about-us-inner {
        padding: 80px;
    }
}

@media screen and (max-width: 1000px) {
    .about-us-update-section {
        background-size: 100%;
        padding: 100px 40px;
    }
    .about-us-inner {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {

  .vc-image-col img {
        width: 100%;
        height: auto; /* maintain aspect ratio */
        max-width: 400px; /* limit max size on larger screens if needed */
        border-radius: 10px;
        object-fit: cover; /* optional: crop & fill container nicely */
        display: block;
        margin: 0 auto;
    }

     .about-us-update-section {
        padding: 0;
        /* It's good practice to ensure enough height for content on mobile */
        min-height: 450px; /* Adjust this value as needed based on your content length */
    }

       .about-us-inner {
        padding: 40px 20px; /* Adjust padding for mobile view for better spacing */
        
        /* New: Make .about-us-inner a flex container for vertical stacking */
        display: flex;
        flex-direction: column; /* Stack children vertically */
        align-items: center; /* Center children horizontally */
        /* You can set height: 100%; if .about-us-update-section has a fixed height */
    }

     .about-us-inner br {
        display: none;
    }

       .about-us-inner h1 {
        order: 1; /* Heading appears first */
        width: 100%; /* Ensure heading takes full width for centering */
        text-align: center; /* Center heading text */
        margin-bottom: 20px; /* Space below heading */
    }

     .about-us-inner p.about-us-text {
        order: 2; /* Paragraph appears second */
        width: 100%; /* Ensure paragraph takes full width */
        text-align: center; /* Center paragraph text */
        margin-bottom: 20px; /* Space below paragraph */
    }

     #switch-btn {
         z-index: 1001; /* Must be higher than the navbar's z-index */
    position: relative; /* z-index only works on positioned elements */
        order: 3; /* Switch button appears third */
        margin-top: 0; /* Reset any default top margin */
        margin-bottom: 40px;
        margin-left: 45px;
       /* Add space between switch button and services button */
        /* Its own width and the 'align-items: center' on parent will center it */
    }

     .about-us-skills {
        order: 4; /* 'Explore Our Services' button container appears last */
        width: 100%; /* Ensure it takes full width for centering its content */
        margin-top: 0; /* Reset any default top margin */
        text-align: center; /* Center the button within this div */
    }
    
        .container-hotels {
        display: flex;
        justify-content: center;
    }

    .container-hotels {
        display: flex;
        justify-content: center;
    }

       .pagination {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px; /* spacing between buttons */
    }
    
      .page-item {
        display: inline-block;
      }
    
    
    .page-link {
        padding: 8px 12px;
        text-decoration: none;
        background-color: white;
        border: 1px solid #ccc;
        color: black;
        border-radius: 5px;
    }
    
}

.vc-section {
    padding: 60px 0;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
  }
  
  .vc-container {
    margin-top: 50px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .vc-row {
    width: 80%;
    margin: 50px auto 40px auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .vc-row:nth-child(odd) {
    justify-content: flex-start; /* Align left */
  }
  
  .vc-row:nth-child(even) {
    justify-content: flex-end; /* Align right */
  }
  
  .vc-heading-col {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }
  
  .vc-heading h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
  }
  
  .vc-heading p {
    font-size: 16px;
    color: #777;
    margin-top: 10px;
  }
  
  .vc-content-area {
    display: flex;
    gap: 30px;
  }
  
  .vc-main-col {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .vc-item {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 20px;
  }
  
  .vc-item-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .vc-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    max-width: 250px;
  }
  
  .vc-image-col img {
    justify-content: center;
    align-items: center;
    width: 100%;
    
    border-radius: 10px;
  }
  
  .vc-content-col {
    flex: 2;
  }
  
  .vc-content-col h4 {
    margin-top: 0;
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
  }
  
  .vc-content-col span {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
  }

  .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
  
  .vc-button {

     background-color: #ff914d;
  color: #fff;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
  }

  .vc-button:hover {
  background-color: #ff7722;
}
  
  .vc-content-col p {
    font-size: 14px;
    color: #555;
  }
  
  .vc-info-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #333;
  }
  
  .vc-info-list li i {
    margin-right: 5px;
    color: #20c997;
  }
  
  .vc-text-link {
    font-size: 14px;
    color: #20c997;
    text-decoration: none;
  }
  
  .vc-text-link i {
    margin-left: 5px;
  }
  
  .vc-map-col {
    flex: 1;
  }
  
  .vc-map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .page-link:first-child {
    background-color: white;
    border: 1px solid #ff914d;
    color: black;
  }

  .page-link:hover {
    background-color: #ff914d;
  }

  .linkedin-recommendation {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
  }
  .linkedin-recommendation p {
    color: #444;
  }
  .linkedin-recommendation p.name {
    margin-top: 20px;
    font-weight: bold;
    color: #ff6600;
  }
  .linkedin-recommendation p.role {
    font-size: 14px;
    color: #777;
  }

  .testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow-y: hidden;
  }

  .testimonial-card:nth-of-type(9) {
    width: 300px;
    height: 500px;
  }

   .testimonial-card:nth-of-type(8) {
    width: 300px;
    height: 500px;
  }

 

  .testimonial-card:hover {
    transform: scale(.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow-y: hidden;
    overflow-x: hidden;
  }


  /* Extra Styles for the Our Story page */

  .container-story {
    margin-top: 50px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  
  }

  .container-story h1 {
    font-size: 24px;
    font-family: 'poppins';
    margin-top: 15px;
  }

  .lead {
    font-size: 18px;
  }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    margin-top: 20px;
  }
  
  .team-card {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-5px);
  }
  
  .team-photo {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  /* Stats Section */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    text-align: center;
  }
  
  .stat-card {
    background-color: #fc8f22;
    color: #000;
    padding: 20px;
    border-radius: 8px;
    font-size: 24px;
  }
  
  /* Responsive - Mobile Devices */
  @media (max-width: 768px) {
    .team-grid,
    .stats-grid {
      grid-template-columns: 1fr;
    }
    


  }
  .intro {
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px; /* reduced height */
    width: 100%;
    text-align: center;
    padding: 20px;
}

.intro-h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 2rem;
    color: black;
    line-height: 1.2;
}

.teammates-grids {
    background-color: #f5f5f5;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.grid-team {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.grid-team:hover {
    transform: translateY(-5px);
}

.grid-team img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.grid-team h2 {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1.2rem;
    margin: 8px 0 4px;
}

.grid-team h3 {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1rem;
    color: gray;
    margin-bottom: 10px;
}

.grid-team p {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.team{
	position: relative;
	width: 100%;
	height: 100vh;
	background: linear-gradient(to right, #f8f9fa, #eef2f3);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.team-content{
	
	max-width: 1350px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr) !important;
	align-items: center;
	gap: 7rem;
	text-align: center;
	margin-top: 4rem;
}
.team-content img{
	width: 50%;
	height: auto;
	border-radius: 15px;
	margin-bottom: 15px;
}
.center h1{
	color: #000000;
	font-size: 4rem;
	text-align: center;
}
.box{
	padding: 16px;
	background: #fc8f22;
	border-radius: 15px;
	transition: all .38s ease;
    width: 250px;
    height: 300px;
}
.box h3{
	font-size: 23px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 8px;
}
.box h5{
	font-size: 15px;
	font-weight: 600;
	color: #212122;
	letter-spacing: 2px;
    
}

.box h6{
	font-size: 15px;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 2px;
    margin-top: 0px;
    padding-bottom: 0px !important;
    display: flex;
    justify-content:center ;
    
}

.box:nth-child(4) img {
    width: 50%;
	height: 45%;
	border-radius: 15px;
	margin-bottom: 15px;
}

.box:nth-child(9) img {
    width: 50%;
	height: 45%;
	border-radius: 15px;
	margin-bottom: 15px;
}


.icons i{
	display: inline-block;
	color: #fff;
	font-size: 20px;
	margin: 0 8px;
	transition: all .38s ease;
}
.icons i:hover{
	transform: scale(1.2);
}
.box:hover{
	transform: translateY(-10px);
	cursor: pointer;
}

@media(max-width: 768px){

	.team{
		width: 100%;
		height: auto;
		padding: 90px 2%;
	}
	.center h1{
		font-size: 3.2rem;
	}
    .box h5{
        font-size: 12px;
        font-weight: 600;
        color: #000000;
        letter-spacing: 2px;
        margin-bottom: 20px;
        
    }

.team-content {
     width:auto;
    max-width: 350px;
    
    display: grid;
    grid-template-columns: repeat(1, 1fr)!important;
    align-items: center;
    
    gap: 2rem;
    text-align: center;
    margin-top: 4rem;
    }

    .box {
    padding: 16px;
    background: #fc8f22;
    border-radius: 15px;
    transition: all .38s ease;
    width: 250px;
    height: 300px !important;
}
    
}


/* Modal Styles */
.nhs-service-card {
    transition: all 0.5s cubic-bezier(0.86, -0.13, 0.58, 1);
    overflow: hidden;
    max-height: 400px; /* Initial size */
  }
  
  .nhs-service-card.expanded {
    position: fixed;
    top: 10%;
    left: 10%;
    width: 80vw;
    height: 80vh;
    max-height: 80vh;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.25); /* Aero Glass look */
    backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    padding: 20px;
    border-radius: 16px;
  }
  
  .nhs-service-card.expanded .nhs-card-extra {
    max-height: none;
    opacity: 1;
    margin-top: 10px;
  }
  
  /* Optional dark overlay background */
  .nhs-backdrop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    display: none;
  }
  .nhs-backdrop-overlay.active {
    display: block;
  }

  .nhs-expanded-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; 
    margin-top: 20px;
  }
  
  .nhs-grid-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
  }
  
  .nhs-grid-box:hover {
    transform: scale(1.02);
  }

  .nhs-card-extra {
    display: none;
    padding-top: 20px;
  }

  .nhs-service-card.expanded .nhs-card-extra {
    display: block;
  }

  .nhs-service-card .btn {

    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-flex; /* Allows for centering of text */
    align-items: center; /* Vertically centers the text */
    justify-content: center; /* Horizontally centers the text */
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center; /* Ensures text is centered */
}
# Faq Section
--------------------------------------------------------------*/


.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, #ff914d, transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, #ff914d, transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 24px;
  color: color-mix(in srgb, #ff914d, transparent 30%);
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-list {
  padding: 0;
}


.faq .faq-list .faq-item {
  position: relative;
 
  padding: 15px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, #ff914d, transparent 50%);
  cursor: pointer;
}

.faq .faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-list .faq-item h3 {
  font: inherit;
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  padding-bottom: 0px;
}

.faq .faq-list .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .fa-solid {
 font-size: 1.2rem;
  color: orange;
  float: right;
  transition: ;
    padding-top: 2px;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}



.faq .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 0px;
}


html body header section#faq.faq.section div.container div.row.gy-4.justify-content-between div.col-lg-8 div.faq-list div.faq-item.faq-active div.faq-content p span.btn-faq {
   background-color: #ff914d;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.fa-down-long {
   font-size: 1.2rem;
  color: #ff914d;
  float: right;
  transition: transform 0.3s ease;
}



@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }

  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .faq .faq-list .faq-item .fa-down-long {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }

  .fa-down-long {
    display: none;
   font-size: 1rem;
  color: #ff914d;
  float: right;
  transition: transform 0.3s ease;
}

.faq .faq-list .faq-item h3 {
  font: inherit;
  padding-right: 0px !important;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  padding-bottom: 0px;
}

.faq .faq-list .faq-item p {
  font: inherit;
  padding-top: 2px;
  font-size: 14px !important;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  padding-bottom: 0px;
}

}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1e1e1e;
  color: #fff;
  font-size: 14px;
  padding: 15px 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-content p {
  margin: 0;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

#accept-cookies {
  background: #4caf50;
  color: #fff;
}

#accept-cookies:hover {
  background: #43a047;
}

#reject-cookies {
  background: #555;
  color: #fff;
}

#reject-cookies:hover {
  background: #444;
}

.cookie-content a {
  color: #4cafef;
  text-decoration: underline;
}



