/* ===== CSS VARIABLES & BASE STYLES ===== */
:root {
    --theme: #14c0e9;
    --dark: #000000;
    --light: #ffffff;
    --gray: #f5f5f5;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ITC Avant Garde Gothic';
    /* font-family: Avant, sans-serif; */
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
}

@font-face {
    font-family: 'ITC Avant Garde Gothic';
    src: url('../fonts/AvantGardeCE-Book.eot');
    src: url('../fonts/AvantGardeCE-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvantGardeCE-Book.woff2') format('woff2'),
        url('../fonts/AvantGardeCE-Book.woff') format('woff'),
        url('../fonts/AvantGardeCE-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: Avant;
    src: url(../fonts/itcavant.eot);
    src: url(../fonts/itcavant.eot?#iefix) format("embedded-opentype"),
        url(../fonts/itcavant.woff) format("woff"),
        url(../fonts/itcavant.ttf) format("truetype");
    font-display: swap;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== HEADER STYLES ===== */


.top-bar {
    background: var(--dark);
    color: var(--light);
    font-size: 0.9rem;
    padding: 12px 0;
}

.top-bar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-info {
    display: flex;
    gap: 15px;
}

.phone-section,
.email-section {
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-icon,
.email-icon {
    color: #ffffff;
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.phone-number,
.email-address {
    font-size: 16px;
    color: #ffffff;
}

.social-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-label {
    font-size: 16px;
    color: #ffffff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #3498db;
}

.header-menu {
    position: fixed;
    z-index: 9;
    width: 100%;
    background: transparent;
    transition: all 0.4s ease;
}

.header-menu.scrolled {
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.navbar img {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    margin-bottom: 0;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--theme);
}

/* Dropdown hidden initially */
.nav-links .dropdown {
    position: absolute;
    background: #fff;
    list-style: none;
    min-width: 180px;
    display: none;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-links .dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
}

.nav-links .dropdown li a:hover {
    background: #14c0e9;
    color: #fff;
}

.nav-links li.has-submenu {
    position: relative;
}



.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* ===== HERO SECTION STYLES ===== */
.hero {
    background: url('../img/banner.jpg') center/cover no-repeat;
    height: 600px;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-desc {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 60px;
    padding: 15px 0;
}

.hero h1 {
    color: var(--light);
    text-align: left;
    font-size: 2.5rem;
    margin: 0;
}

.hero h1 span {
    color: var(--theme);
}

/* ===== FEATURES SECTION STYLES ===== */
.features {
    padding: 50px 0;
    background-color: #f7f8f8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 30px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 100%;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--theme);
}

.feature-description {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.7;
}

/* ===== ABOUT SECTION STYLES ===== */
.about {
    padding: 50px 0;
}

.about-content {
    background-color: #f7f7f7;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.description-section {
    padding: 40px;
}

.about-header {
    margin-bottom: 30px;
}

.about-title {
    color: var(--theme);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-subtitle {
    color: var(--dark);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.9;
}

.description-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 30px;
}

.highlight-text {
    font-weight: 600;
    color: var(--dark);
}

.stats-section {
    display: flex;
    gap: 30px;
}

.stat-item {
    flex: 1;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--dark);
    margin-top: 5px;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SERVICES SECTION STYLES ===== */
.services {
    padding: 25px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-title {
    color: var(--theme);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
}

.services-header p {
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f2f2f2;
    border-radius: 5px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 60%;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-subtitle {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.service-description {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    margin: 0 auto;
    gap: 8px;
    background: transparent;
    color: var(--theme);
    border: 2px solid var(--theme);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: fit-content;
}

.learn-more-btn:hover {
    background: var(--theme);
    color: white;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* ===== PARTNERS SECTION STYLES ===== */
.partners {
    padding: 50px 0;
}

.partners h2 {
    color: var(--theme);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logos-slider {
    margin: 0 auto;
    padding-top: 30px;
}

.logo-item {
    text-align: center;
    padding: 0 20px;
    height: 220px;
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    height: auto;
    width: 100%;
    max-width: 200px;
}

/* ===== REVIEWS SECTION STYLES ===== */
.reviews {
    padding: 25px 0;
}

.reviews h2 {
    color: var(--theme);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
}

.reviews-slider {
    padding: 40px 0 20px;
    margin-bottom: 0 !important;
}

.review-slide {
    background: #f2f2f2;
    border-radius: 5px;
    padding: 30px;
    margin: 0 10px;
    height: 100%;
    min-height: 425px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.stars {
    color: #ffbf00;
    font-size: 20px;
    margin-bottom: 10px;
}

.review-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.author {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #555;
    margin-top: 20px;
    font-weight: 500;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--theme);
    border-radius: 50%;
    margin-right: 10px;
}

/* ===== CONTACT SECTION STYLES ===== */
.contact {
    padding: 25px 0;
}

.contact-section {
    background-color: #f2f2f2;
    padding: 40px;
}

.contact-section h2 {
    color: var(--theme);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.form-row input {
    width: 100%;
    max-width: 100%;
    height: 55px;        /* restore your original height */
    box-sizing: border-box;
	 padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* .form-row input { */
    /* flex: 1; */
    /* min-width: 250px; */
    /* padding: 12px 15px; */
    /* border: 1px solid #ddd; */
    /* border-radius: 5px; */
    /* font-size: 1rem; */
/* } */

textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    resize: none;
    width: 100%;
}

.consent {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #000000;
}

.consent a {
    color: var(--theme);
    text-decoration: none;
}

.consent a:hover {
    text-decoration: underline;
}

.checkbox {
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #000000;
}

.checkbox input {
    margin-top: 4px;
}

.btn-submit {
    align-self: flex-start;
    background: none;
    border: 2px solid var(--theme);
    color: var(--theme);
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--theme);
    color: white;
}

/* ===== ACCREDITATIONS SECTION STYLES ===== */
.accreditations {
    padding: 50px 0;
}

.accreditations h2 {
    color: var(--theme);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.accreditations .logo-container {
    overflow: hidden;
}

.accreditations .logo-container img {
    margin: 0 25px;
    width: 120px;
    height: auto;
}

/* ===== FOOTER STYLES ===== */
.footer {
    background-color: #000;
    color: #fff;
    padding: 50px 20px 20px;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--theme);
}

.footer-container .footer-col:nth-child(2) p {
    display: flex;
    align-items: baseline;
}

.footer-col p {
    margin: 10px 0;
    font-size: 0.95rem;
}

.footer-col i {
    color: #ffffff;
    margin-right: 10px;
    width: 20px;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--theme);
    color: var(--theme);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 5px;
    margin: 8px 0 20px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--theme);
    color: #fff;
}

.social-title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer .social-icons {
    display: flex;
    gap: 15px;
}

.footer .social-icons a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .social-icons a:hover {
    color: var(--theme);
}

.footer-bottom {
    text-align: left;
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 0.9rem;
}

.copyright {
    color: #ccc;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    text-decoration: none;
    display: flex;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 1.5rem;
    text-align: center;
    z-index: 100;
    transition: transform 0.3s ease;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== SLICK SLIDER CUSTOMIZATIONS ===== */
.slick-prev,
.slick-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 1;
    background-color: var(--theme);
    border-radius: 50%;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 22px;
    color: white;
    opacity: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background-color: var(--theme);
}

.slick-prev:before {
    content: '\f060';
}

.slick-next:before {
    content: '\f061';
}

/* Slick dots customization */
.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    color: var(--theme);
    font-size: 12px;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--theme);
    opacity: 1;
}

#about {
    scroll-margin-top: 70px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .slick-next {
        right: 0;
    }

    .slick-prev {
        left: 0;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .accreditations .logo-container {
        justify-content: center;
        gap: 20px;
    }

    .review-slide {
        min-height: 450px;
    }

    .reviews-slider .slick-dots {
        bottom: -20px;
    }
}

@media (min-width: 769px) {
    .nav-links li.has-submenu:hover>.dropdown {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .header-menu {
        background: rgba(0, 0, 0, 0.9);
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: -300px;
        right: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transition: top 0.4s ease;
    }

    .nav-links.active {
        top: 74px;
    }

    .nav-links .dropdown {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0;
    }

    .nav-links .dropdown li a {
        padding-left: 30px;
        color: #ffffff;
    }

    .nav-links .dropdown li a:hover {
        background-color: transparent;
        color: #14c0e9;
    }

    .top-bar {
        display: none;
    }

    .top-bar-wrap {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-desc {
        bottom: 40px;
    }

    .about-title,
    .services-title,
    .partners h2,
    .reviews h2,
    .contact-section h2,
    .accreditations h2 {
        font-size: 30px;
    }

    .description-section {
        padding: 30px 25px;
    }

    .stats-section {
        gap: 20px;
    }

    .stat-item {
        width: 100%;
    }

    .service-card,
    .feature-card {
        padding: 25px;
    }

    .service-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .service-title,
    .feature-title {
        font-size: 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    /* .slick-prev,
    .slick-next {
        display: none !important;
    } */

    .logo-item {
        height: 180px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .about-title,
    .services-title,
    .partners h2,
    .reviews h2,
    .contact-section h2,
    .accreditations h2 {
        font-size: 26px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card,
    .feature-card {
        padding: 20px;
    }

    .description-section {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .contact-section {
        padding: 30px 20px;
    }

    .form-row input {
        min-width: 100%;
    }

    .accreditations .logo-container img {
        width: 100px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 15px;
        right: 15px;
    }

    .review-slide {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .reviews-slider .slick-slide {
        margin: 0 5px;
    }

    .review-slide {
        padding: 20px;
    }

    .logo-item {
        height: 150px;
    }

    .footer {
        padding: 40px 15px 15px;
    }
}
