
:root {
    --primary-color: #0056b3; 
    --secondary-color: #e63946; 
    --accent-color: #ffc107; 
    --dark-color: #2a4365; 
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #6c757d;
    --white: #ffffff;
    --success-color: #28a745;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: darkgoldenrod;
    font-weight: 700;
}

.divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 15px auto 30px;
    border-radius: 2px;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.utility-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

.utility-nav ul li {
    margin-left: 20px;
    position: relative;
}

.utility-nav ul li a {
    font-weight: 500;
    color: var(--dark-color);
    font-size: 14px;
    transition: var(--transition);
}

.utility-nav ul li a:hover {
    color: var(--primary-color);
}

.btn-admissions {
    background-color:#0056b3;
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.contact {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-admissions:hover {
    background-color: #cabe58;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.btn-login {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-register {
    background-color: var(--accent-color);
    color: var(--dark-color) !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-register:hover {
    background-color: #ffb700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-color);
    cursor: pointer;
}

.main-nav {
    background-color: var(--dark-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    color: var(--white);
    padding: 15px 20px;
    display: block;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.main-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.main-nav ul li a i {
    margin-left: 5px;
}
    /* Initially hide the mobile-only utility buttons */
    .mobile-utility-buttons {
        display: none;
    }
    
    /* Display the mobile-only buttons when the screen width is 768px or less */
    @media screen and (max-width: 768px) {
        .mobile-utility-buttons {
            display: block;
        }
    }
    
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.main-nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown li a {
    color: var(--text-color) !important;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown li a:hover {
    background-color: var(--light-color);
    color: var(--primary-color) !important;
}

.hero-section {
    height: 90vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/background/bg1.jpg') no-repeat center center/cover;
    overflow: hidden; }

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size */
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Better text visibility */
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Responsive font size */
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* Better text visibility */
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.apply-now-btn {
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    font-size: clamp(0.9rem, 2vw, 1rem); /* Responsive font size */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.apply-now-btn:hover {
    background-color: #ffb700;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.apply-now-btn:active {
    transform: translateY(1px);
}

/* Enhanced Arrow Buttons */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px); /* Frosted glass effect */
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.carousel-arrow:hover {
    background-color: var(--primary-color);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.left-arrow {
    left: 20px;
    padding-right: 3px; /* Visual centering adjustment */
}

.right-arrow {
    right: 20px;
    padding-left: 3px; /* Visual centering adjustment */
}

/* Mobile-friendly arrow positioning */
@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .left-arrow {
        left: 10px;
    }
    .right-arrow {
        right: 10px;
    }
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.8) 0%, rgba(230, 57, 70, 0.6) 100%);
    z-index: 1;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for arrows to attract attention */
@keyframes pulse {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
    100% { transform: translateY(-50%) scale(1); }
}

.carousel-arrow {
    animation: pulse 2s infinite;
}

/* ====== Text Box Section ====== */
.text-box-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--light-color);
}

.decoration {
    position: absolute;
    font-size: 150px;
    color: rgba(0, 86, 179, 0.05);
    z-index: 1;
}

.decoration-1 {
    top: 50px;
    left: -50px;
}

.decoration-2 {
    bottom: 50px;
    right: -50px;
}

.text-box-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.text-box-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.text-box-content {
    max-width: 800px;
    margin: 0 auto;
}

.text-box-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.text-box-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* ====== Mission Vision Section ====== */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.mv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.mv-card {
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: var(--white);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mission {
    border-top: 5px solid var(--primary-color);
}

.vision {
    border-top: 5px solid var(--secondary-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.vision .card-icon {
    background-color: rgba(230, 57, 70, 0.1);
    color: var(--secondary-color);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

/* ====== Why Choose Section ====== */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    align-items: center;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.benefit-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.primary-btn:hover {
    background-color: #004494;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
}

.secondary-btn {
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.secondary-btn:hover {
    background-color: #e9ecef;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.accreditation-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accreditation-badge i {
    color: var(--accent-color);
    font-size: 20px;
}

/* ====== Programs Section ====== */
.programs-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 30px;
}

.program-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.program-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.program-link:hover {
    color: var(--secondary-color);
    gap: 10px;
}

/*priciple*/
/* ====== Practice Questions Section ====== */
/* ====== Practice Questions Section (Exact Match) ====== */
.practice-questions-section {
    padding: 80px 0;
    background-color: #f8f9fa; /* Light gray background */
    text-align: center;
}

.pq-content h2 {
    font-size: 2.5rem;
    color: #2c3e50; /* Dark blue-gray */
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.pq-content h3 {
    font-size: 2rem;
    color: #3498db; /* Bright blue */
    margin-bottom: 25px;
    font-weight: 600;
}

.pq-description {
    font-size: 1.2rem;
    color: #555; /* Medium gray */
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.pq-divider {
    border-top: 2px solid #3498db; /* Matching blue */
    width: 100px;
    margin: 30px auto;
}

.pq-cta-button {
    display: inline-block;
    background-color: #3498db; /* Bright blue */
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pq-cta-button:hover {
    background-color: #2980b9; /* Slightly darker blue */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.pq-principles-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.pq-principle {
    flex: 1;
    min-width: 220px;
    max-width: 240px;
    padding: 25px 20px;
    background-color: white;
    border-top: 3px solid #3498db; /* Blue accent bar */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.pq-principle h4 {
    color: #2c3e50; /* Dark text */
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.pq-principle p {
    color: #7f8c8d; /* Light gray text */
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pq-content h2 {
        font-size: 2rem;
    }
    
    .pq-content h3 {
        font-size: 1.5rem;
    }
    
    .pq-principle {
        min-width: 100%;
        max-width: 300px;
    }
}

/* ====== 5-Pillar Impact Framework ====== */
/* ====== Enhanced Partners Section ====== */
.partners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
}

.partner-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-top: 5px solid;
    margin-bottom: 30px;
}

.public-sector {
    border-top-color: #3498db; /* Blue */
}

.ngo-sector {
    border-top-color: #2ecc71; /* Green */
}

.mission-sector {
    border-top-color: #e74c3c; /* Red */
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.2);
}

.partner-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-icon {
    transform: scale(1.1);
}

.partner-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.partner-card p {
    color: #7f8c8d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.sector-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.color-logo {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.color-logo:hover {
    transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 992px) {
    .sector-logos {
        gap: 20px;
    }
    
    .color-logo {
        height: 60px;
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .partner-card {
        padding: 30px;
    }
    
    .color-logo {
        height: 50px;
        max-width: 100px;
    }
    
    .partner-icon {
        font-size: 3rem;
    }
}

/* 5-Pillar Impact Framework - Fully Responsive */
.pillars-section {
    padding: clamp(2rem, 5vw, 6rem) 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #2c3e50;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.section-header .highlight {
    background: linear-gradient(90deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.divider-animate {
    height: 4px;
    width: clamp(60px, 8vw, 80px);
    background: linear-gradient(to right, #3498db, #2ecc71);
    margin: clamp(1rem, 2vw, 1.5rem) auto;
    border-radius: 2px;
    transform-origin: center;
    animation: dividerGrow 0.8s ease-out forwards;
}

/* Pillar Grid - Responsive Layout */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    margin: 0 auto;
}

/* Pillar Card - Universal Styling */
.pillar-card {
    background: white;
    border-radius: 16px;
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 5px 20px rgba(0, 86, 179, 0.08);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    border-top: 5px solid;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

.pillar-large {
    grid-column: span 1;
}

.pillar-wide {
    grid-column: span 1;
}

/* Color Coding */
.pillar-card:nth-child(1) { border-top-color: #3498db; }
.pillar-card:nth-child(2) { border-top-color: #2ecc71; }
.pillar-card:nth-child(3) { border-top-color: #e67e22; }
.pillar-card:nth-child(4) { border-top-color: #e74c3c; }
.pillar-card:nth-child(5) { border-top-color: #9b59b6; }

/* Hover Effects */
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.15);
}

/* Header Content */
.pillar-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
    position: relative;
    z-index: 1;
}

.pillar-number-container {
    width: clamp(36px, 5vw, 48px);
    height: clamp(36px, 5vw, 48px);
    background: rgba(52, 152, 219, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: clamp(0.75rem, 1.5vw, 1.25rem);
    flex-shrink: 0;
}

.pillar-number {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: #2c3e50;
}

.pillar-card h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    font-weight: 700;
    flex: 1;
}

.pillar-card p {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: #7f8c8d;
    line-height: 1.6;
    margin-top: 0.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Decorative Elements */
.pillar-icon {
    font-size: clamp(2rem, 6vw, 3rem);
    position: absolute;
    bottom: clamp(0.75rem, 1.5vw, 1.25rem);
    right: clamp(0.75rem, 1.5vw, 1.25rem);
    opacity: 0.15;
    transition: all 0.4s ease;
    z-index: 0;
}

.pillar-card:hover .pillar-icon {
    opacity: 0.2;
    transform: scale(1.1);
}

.pillar-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.pillar-card:hover .pillar-wave {
    transform: scaleX(1);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .pillar-wide {
        grid-column: span 2;
    }
    
    .pillar-card {
        min-height: 260px;
    }
}

@media (min-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pillar-wide {
        grid-column: span 3;
    }
    
    .pillar-card {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .pillar-header {
        flex-direction: column;
    }
    
    .pillar-number-container {
        margin-bottom: 0.75rem;
        margin-right: 0;
    }
    
    .pillar-card {
        min-height: auto;
        padding: 1.5rem;
    }
    
    .pillar-icon {
        display: none;
    }
}

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

@keyframes dividerGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.animate-card {
    animation: fadeIn 0.6s ease forwards;
    animation-delay: calc(var(--order) * 0.1s);
    opacity: 0;
}

.title-animate {
    animation: fadeIn 0.6s ease forwards 0.1s;
    opacity: 0;
}

.subtitle-animate {
    animation: fadeIn 0.6s ease forwards 0.2s;
    opacity: 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 1000;
  }
  
  .whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
  }
  
  .whatsapp-float img:hover {
    transform: scale(1.1);
  }
/* ====== Testimonials Section ====== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: none;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--primary-color);
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ====== Professional CTA Section ====== */
.cta-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('../images/cta-bg.jpg') no-repeat center center/cover;
    text-align: center;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(0, 86, 179, 0.85) 0%, 
                rgba(230, 57, 70, 0.75) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.cta-btn-primary {
    background-color: var(--accent-color);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.cta-btn-primary:hover {
    background-color: #ffb700;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.cta-btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
        min-height: 50vh;
    }
    
    .cta-content {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
    }
}
/* ====== Footer Section ====== */
/* ===== Footer Section ===== */
.main-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 70px 0 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.main-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.footer-logo h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.about-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-links a:hover {
    background-color: #00a0e3;
    transform: translateY(-3px);
}

.footer-col h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #00a0e3;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #00a0e3;
    padding-left: 5px;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.contact-info i {
    color: #00a0e3;
    margin-right: 10px;
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}
.threads-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.threads-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.threads-icon:hover {
    background-color: #00a0e3;
    transform: translateY(-3px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col h3 {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* ====== Back to Top Button ====== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* ====== Responsive Styles ====== */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .text-box-heading h2 {
        font-size: 2rem;
    }
    
    .mv-cards {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .image-content {
        order: -1;
    }
}

@media (max-width: 768px) {
    .utility-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 82px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 82px);
        background-color: var(--dark-color);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav ul li {
        margin: 0;
    }
    
    .main-nav ul li a {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav ul li:hover .dropdown {
        max-height: 500px;
    }
    
    .dropdown li a {
        padding-left: 40px !important;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .text-box-heading h2 {
        font-size: 1.8rem;
    }
    
    .section-title h2,
    .section-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .apply-now-btn,
    .primary-btn,
    .secondary-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .left-arrow {
        left: 15px;
    }
    
    .right-arrow {
        right: 15px;
    }
}