/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e5a8e;
    --secondary-color: #ff9800;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success: #27ae60;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --topbar-bg: #0d3b66;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Top Bar */
.top-bar {
    background: var(--topbar-bg);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

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

.top-left a {
    color: var(--white);
    margin-right: 25px;
    transition: color 0.3s ease;
}

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

.top-left i {
    margin-right: 6px;
}

.top-right {
    display: flex;
    gap: 15px;
}

.top-right a {
    color: var(--white);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.top-right a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo img {
    height: 65px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-btn {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255,152,0,0.3);
}

.call-btn:hover {
    background: #f57c00;
    transform: scale(1.1);
}

/* Navigation */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-menu > ul > li > a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 25px 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu > ul > li > a:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.nav-menu > ul > li > a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    list-style: none;

    border-radius: 0 0 10px 10px;
    border-top: 3px solid var(--primary-color);
    z-index: 1000;
    display: grid !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    padding: 14px 22px;
    display: block;
    color: var(--text-dark);
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-menu a:hover {
    color: var(--white)!important;
    padding-left: 30px;
}

.dropdown-menu a:hover::before {
    width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: var(--bg-light);
    border-radius: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Responsive Design */
.hero {
    position: relative;
    height: 650px;
    overflow: hidden;
    background:#fff5f4;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Responsive image - prevents cropping on mobile */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile and tablet - show full image without cropping */
@media (max-width: 968px) {
    .hero-slide img {
        object-fit: contain;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-slide.active .hero-content h1 {
    opacity: 1;
}

.hero-slide.active .hero-content p {
    opacity: 1;
}

.hero-slide.active .hero-content .btn {
    opacity: 1;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 22px;
    margin-bottom: 35px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 18px;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--secondary-color);
    width: 35px;
    border-radius: 10px;
    border-color: var(--white);
}

/* Removed fadeInUp animation */

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2980b9 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card {
  
    border: 2px solid rgba(30, 90, 142, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 90, 142, 0.05), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(30, 90, 142, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
   
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--white);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
  
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
 
   
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.stat-text {
    font-size: 16px;
   
    font-weight: 500;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

/* Responsive Design for Stats Section */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .stat-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 32px;
        margin-bottom: 8px;
    }
    
    .stat-text {
        font-size: 13px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #154a7a;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

/* Sections */
.section {
    padding: 22px 0;
}

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

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--success);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge.ongoing {
    background: var(--secondary-color);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.location {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.project-features {
    list-style: none;
    margin: 20px 0;
}

.project-features li {
    padding: 8px 0;
    color: var(--text-light);
}

.project-features i {
    color: var(--success);
    margin-right: 10px;
}

.project-progress {
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress {
    height: 100%;
    background: var(--success);
    transition: width 0.3s ease;
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgb(25 39 68 / 89%), rgb(25 39 68 / 87%)), url(../images/slider/1.jpg) center / cover no-repeat fixed;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-content .btn {
    padding: 16px 45px;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

/* Removed fadeInUp animation */

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.content-wrapper h3 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-size: 24px;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.member-image {
    height: 300px;
    background: var(--bg-light);
}

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

.member-info {
    padding: 25px;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.designation {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Press Grid */
.press-grid {
    display: grid;
    gap: 30px;
}

.press-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.press-date {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.press-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.read-more:hover {
    gap: 10px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-item h3 {
    padding: 20px;
    color: var(--primary-color);
}

.video-item p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* Career */
.career-openings {
    margin: 40px 0;
}

.job-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.job-card h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.job-location {
    color: var(--text-light);
    margin-bottom: 10px;
}

/* Forms */
.enquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.enquiry-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.enquiry-form,
.career-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Members List */
.members-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.member-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.member-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-social h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--white);
}

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

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

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--white);
    font-weight: 600;
}

.contact-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin: 0;
}

.contact-text a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom-links span {
    color: rgba(255,255,255,0.3);
}

/* Call Button */
.call-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    z-index: 998;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.6);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: whatsappPulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(39, 174, 96, 0.7);
    }
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-about {
        grid-column: auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .call-button {
        width: 55px;
        height: 55px;
        bottom: 80px;
        right: 20px;
        font-size: 22px;
    }
}


@media (max-width: 768px) {
        .stats-grid {
        grid-template-columns: 1fr 1fr!important;
        gap: 9px!important;
    }

    .stat-card {
        padding: 11px 4px!important;
    }

}


@media (max-width: 576px) {
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-col h3 {
        font-size: 18px;
    }

    .contact-info li {
        flex-direction: row;
        gap: 10px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Mobile Download Brochure Button */
.mobile-download-btn {
    display: none; /* Hidden by default */
    margin-top: 20px;
    padding: 0 20px;
}

.download-brochure-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    color: var(--white) !important;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-brochure-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.download-brochure-btn:hover::before {
    left: 100%;
}

.download-brochure-btn:hover {
    background: linear-gradient(135deg, #f57c00, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    color: var(--white) !important;
}

.download-brochure-btn i {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 968px) {
    /* Show mobile download button only on mobile */
    .mobile-download-btn {
        display: block !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
        transition: right 0.4s ease;
        z-index: 1001;
        padding: 80px 0 20px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-menu > ul > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
 .nav-menu > ul > li > a {
        padding: 10px 16px;
        width: 100%;
        justify-content: space-between;
    }
    
    /* Add some spacing before the download button */
    .mobile-download-btn {
        border-top: 2px solid var(--bg-light);
        margin-top: 15px;
        padding-top: 20px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f0f4f8;
        border: none;
        border-radius: 0;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
    }
    
    .dropdown-menu a {
        padding: 12px 20px 12px 35px;
        font-size: 14px;
    }
    
    .dropdown-menu a:hover {
        padding-left: 40px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .top-right {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .enquiry-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
    }
    
    .top-left a {
        margin-right: 15px;
    }
    
    .logo img {
        height: 55px;
    }
    
    .call-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-btn.prev {
        left: 15px;
    }
    
    .slider-btn.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .enquiry-form,
    .career-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }
    
    .hero {
        height: 300px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 28px;
    }
    
    .call-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        left: 20px;
    }
}

/* Extra small devices - portrait phones */
@media (max-width: 375px) {
    .hero {
        height: 133px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
}


/* About Section Improved */
.about-section {
    background: var(--bg-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
}

.about-content-left {
    padding-right: 20px;
}

.section-title {
    margin-bottom: 25px;
}

.subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.lead-text {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content-left > p {
    font-size: 16px;
    line-height: 1.8;
    color: #002c4f;
    margin-bottom: 9px;
}

.about-features {
    margin: 9px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(30, 90, 142, 0.2);
}

.feature-text h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.about-image-right {
    position: relative;
}

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

.image-wrapper img {
    width: 100%;
   
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--secondary-color);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-align: center;
}

.badge-content h3 {
    font-size: 42px;
    color: var(--white);
    margin: 0;
    font-weight: 700;
}

.badge-content p {
    font-size: 14px;
    color: var(--white);
    margin: 5px 0 0;
    font-weight: 500;
}

/* Responsive About Section */
@media (max-width: 968px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content-left {
        padding-right: 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .image-wrapper img {
        height: 400px;
    }
    
    .experience-badge {
        bottom: 20px;
        left: 20px;
        padding: 20px 25px;
    }
    
    .badge-content h3 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .lead-text {
        font-size: 18px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .image-wrapper img {
        height: 350px;
    }
}


/* Projects Section Home */
.projects-section {
    background: var(--white);
}

.title-line-center {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    margin: 15px auto 20px;
}

.projects-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.project-card-home {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

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

.project-image-home {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card-home:hover .project-image-home img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.project-badge {
    background: var(--success);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-badge.ongoing {
    background: var(--secondary-color);
}

.project-info-home {
    padding: 20px;
}

.project-info-home h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.project-location {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-location i {
    color: var(--secondary-color);
}

.project-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 42px;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-view:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.btn-view i {
    font-size: 12px;
}

.projects-cta {
    text-align: center;
    margin-top: 50px;
}

/* Targeted Programs Section */
.targeted-programs-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.targeted-programs-section .section-header .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.targeted-programs-section .section-header .subtitle i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.targeted-programs-section .section-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin: 15px 0;
}

.targeted-programs-section .highlight-text {
    color: var(--primary-color);
    position: relative;
}

.targeted-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.program-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: height 0.4s ease;
}

.program-card-blue::before {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.program-card-pink::before {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.program-card-yellow::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.program-card-green::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.program-card-purple::before {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.program-card-orange::before {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.program-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

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

.program-card-blue:hover {
    border-color: #3b82f6;
}

.program-card-pink:hover {
    border-color: #ec4899;
}

.program-card-yellow:hover {
    border-color: #f59e0b;
}

.program-card-green:hover {
    border-color: #10b981;
}

.program-card-purple:hover {
    border-color: #8b5cf6;
}

.program-card-orange:hover {
    border-color: #f97316;
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.program-card-blue .program-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.program-card-pink .program-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.program-card-yellow .program-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.program-card-green .program-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.program-card-purple .program-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.program-card-orange .program-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
}

.program-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.program-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.program-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border-radius: 25px;
}

.program-card-blue .program-link {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.program-card-pink .program-link {
    color: #ec4899;
    background: rgba(236, 72, 153, 0.1);
}

.program-card-yellow .program-link {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.program-card-green .program-link {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.program-card-purple .program-link {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.program-card-orange .program-link {
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
}

.program-link:hover {
    gap: 12px;
    transform: translateX(5px);
}

.program-link i {
    font-size: 12px;
}

.programs-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 90, 142, 0.3);
}

.btn-view-all:hover {
    background: var(--secondary-color);
    gap: 15px;
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
    transform: translateY(-2px);
}

.btn-view-all i {
    font-size: 14px;
}

/* Responsive Design for Targeted Programs Section */
@media (max-width: 1200px) {
    .targeted-programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .targeted-programs-section {
        padding: 60px 0;
    }
    
    .targeted-programs-section .section-header h2 {
        font-size: 36px;
    }
    
    .targeted-programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .program-card {
        padding: 30px 25px;
    }
    
    .program-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .program-card h3 {
        font-size: 20px;
    }
    
    .program-subtitle {
        font-size: 13px;
    }
    
    .program-desc {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .targeted-programs-section {
        padding: 50px 0;
    }
    
    .targeted-programs-section .section-header h2 {
        font-size: 28px;
    }
    
    .targeted-programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .program-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .program-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .program-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .program-subtitle {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .program-desc {
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    .program-link {
        font-size: 13px;
        padding: 6px 18px;
    }
    
    .btn-view-all {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Responsive Projects Grid */
@media (max-width: 1200px) {
    .projects-grid-home {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .projects-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .project-image-home {
        height: 200px;
    }
}

@media (max-width: 640px) {
    .projects-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-image-home {
        height: 250px;
    }
    
    .project-info-home {
        padding: 18px;
    }
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-us-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.why-choose-us-section .section-header .subtitle,
.why-choose-us-section .section-header h2,
.why-choose-us-section .section-header p {
    color: #fff;
}

.why-choose-us-section .title-line-center {
    background: #fff;
}

.why-choose-content {
    position: relative;
    z-index: 1;
}

/* Features Grid */
.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.why-feature-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.why-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #fff;
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-feature-item:hover .feature-icon-box {
    transform: rotate(10deg) scale(1.1);
}

.feature-icon-box i {
    font-size: 32px;
    color: #fff;
}

.feature-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Stats Box */
.why-stats-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.stat-card {
  
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
  
}

.stat-card:hover {
    transform: scale(1.05);
    background: #3a9b34;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card i {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-card p {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Highlights */
.why-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.highlight-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.highlight-card:hover img {
    transform: scale(1.1);
}

.highlight-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 70%, transparent 100%);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-info i {
    font-size: 28px;
    color: #4ade80;
    flex-shrink: 0;
}

.highlight-info h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-stats-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-highlights {
        grid-template-columns: 1fr;
    }
    
    .highlight-card {
        height: 250px;
    }
    
    .stat-card h3 {
        font-size: 36px;
    }
    
    .why-feature-item {
        padding: 25px 20px;
    }
    
    .feature-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-box i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .why-stats-box {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 30px 15px;
    }
    
    .why-feature-item {
        flex-direction: column;
        text-align: center;
    }
}


/* Why Choose Us Section */
.why-choose-section {
    background: var(--bg-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #af4704, #192744);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Our Core Strengths Section */
.core-strengths-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.core-strengths-section .section-header .subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.core-strengths-section .section-header .subtitle i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.core-strengths-section .section-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin: 15px 0;
}

.core-strengths-section .highlight-text {
    color: var(--primary-color);
    position: relative;
}

.core-strengths-section .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
}

.core-strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.strength-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.strength-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 90, 142, 0.05), transparent);
    transition: left 0.6s ease;
}

.strength-card:hover::before {
    left: 100%;
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(30, 90, 142, 0.15);
    border-color: var(--primary-color);
}

.strength-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(30, 90, 142, 0.3);
}

.strength-card:hover .strength-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--secondary-color), #f39c12);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.strength-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Core Strengths Section */
@media (max-width: 1200px) {
    .core-strengths-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .core-strengths-section {
        padding: 60px 0;
    }
    
    .core-strengths-section .section-header h2 {
        font-size: 36px;
    }
    
    .core-strengths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
    
    .strength-card {
        padding: 30px 20px;
    }
    
    .strength-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .strength-card h3 {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .core-strengths-section {
        padding: 50px 0;
    }
    
    .core-strengths-section .section-header h2 {
        font-size: 28px;
    }
    
    .core-strengths-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .strength-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .strength-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .strength-card h3 {
        font-size: 14px;
    }
}

/* Property Categories Section */
.property-categories-section {
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.category-content {
    padding: 25px;
}

.category-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.category-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.category-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

/* Amenities Section */
.amenities-section {
    background: var(--bg-light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.amenity-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.amenity-item h4 {
    font-size: 16px;
    color: var(--text-dark);
}

.location-section {
    background: #f3f3f3;
}
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.location-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff9800, var(--secondary-color));
    border-radius: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    flex-shrink: 0;
}

.location-feature-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.location-feature-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.location-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

/* Gallery Section */
.gallery-section {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 90, 142, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    font-size: 40px;
    color: var(--white);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
    position: relative;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    margin-top: 50px;
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-content {
    padding: 20px;
}

.testimonial-content video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.quote-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
}

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

.author-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: var(--secondary-color);
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.testimonial-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* News Section */
.news-section {
    background: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.news-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.date-day {
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.news-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.news-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-slider .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
    
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-grid,
    .categories-grid,
    .amenities-grid,
    .gallery-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .location-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .location-feature-icon {
        margin: 0 auto;
    }
}


/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Additional Responsive Adjustments */
@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .why-card,
    .category-card,
    .news-card {
        margin-bottom: 20px;
    }

    .testimonials-slider .testimonial-card {
        flex: 0 0 calc(100% - 0px);
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
    
    .amenity-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .location-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .news-content h3 {
        font-size: 18px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}


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

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* CTA Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 70px 0;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
}


/* Breadcrumb Section */
.breadcrumb-section {
    position: relative;
    background: linear-gradient(135deg, rgb(2 29 53 / 67%), rgb(12 48 73 / 71%)), url(../images/slider/1.jpg) center / cover no-repeat;
    padding: 100px 0 60px;
    color: var(--white);
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 0.8s ease;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb-nav a {
    color: var(--white);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav .current {
    color: var(--secondary-color);
    font-weight: 600;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed fadeInUp animation */

/* Story Carousel */
.story-carousel {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev-btn {
    left: 20px;
}

.carousel-btn.next-btn {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--secondary-color);
    width: 35px;
    border-radius: 10px;
    border-color: var(--white);
}

.story-carousel .experience-badge {
    position: absolute;
    bottom: 80px;
    left: 30px;
    background: var(--secondary-color);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-align: center;
    z-index: 10;
}

.story-carousel .badge-content h3 {
    font-size: 42px;
    color: var(--white);
    margin: 0;
    font-weight: 700;
}

.story-carousel .badge-content p {
    font-size: 14px;
    color: var(--white);
    margin: 5px 0 0;
    font-weight: 500;
}

/* Vision Mission Values Sections */
.vision-section {
    background: var(--white);
}

.mission-section {
    background: var(--bg-light);
}

.values-section {
    background: var(--white);
}

.vm-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vm-wrapper.reverse {
    direction: ltr;
}

.vm-wrapper.reverse .vm-image {
    order: 1;
}

.vm-wrapper.reverse .vm-content {
    order: 2;
}

.vm-content {
    padding: 20px;
}

.vm-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(30, 90, 142, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.vm-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.vm-content .title-line {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    margin-bottom: 20px;
}

.vm-lead {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.vm-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.vm-list {
    list-style: none;
    margin-top: 25px;
}

.vm-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.vm-list li i {
    color: var(--success);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.vm-list li strong {
    color: var(--primary-color);
}

.vm-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.image-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 90, 142, 0.85), rgba(41, 128, 185, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    backdrop-filter: blur(10px);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Old Vision Mission Section - Keep for backward compatibility */
.vision-mission-section {
    background: var(--white);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.vm-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
    background: var(--white);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(30, 90, 142, 0.3);
    transition: all 0.4s ease;
}

.vm-card:hover .vm-icon {
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    transform: rotateY(360deg);
}

.vm-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vm-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    padding: 28px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
  
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.1) rotate(360deg);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--bg-light);
}

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

.why-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    transform: rotateY(360deg);
}

.why-card h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .breadcrumb-content h1 {
        font-size: 36px;
    }
    
    .carousel-container {
        height: 450px;
    }
    
    .vm-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vm-wrapper.reverse .vm-image,
    .vm-wrapper.reverse .vm-content {
        order: unset;
    }
    
    .vm-content h2 {
        font-size: 32px;
    }
    
    .image-frame img {
        height: 400px;
    }
    
    .vm-grid,
    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 80px 0 50px;
    }
    
    .breadcrumb-content h1 {
        font-size: 32px;
    }
    
    .breadcrumb-nav {
        font-size: 14px;
    }
    
    .carousel-container {
        height: 400px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn.prev-btn {
        left: 15px;
    }
    
    .carousel-btn.next-btn {
        right: 15px;
    }
    
    .story-carousel .experience-badge {
        bottom: 70px;
        left: 20px;
        padding: 20px 25px;
    }
    
    .story-carousel .badge-content h3 {
        font-size: 36px;
    }
    
    .vm-wrapper {
        gap: 35px;
    }
    
    .vm-content {
        padding: 10px;
    }
    
    .vm-content h2 {
        font-size: 28px;
    }
    
    .vm-lead {
        font-size: 18px;
    }
    
    .vm-icon-large {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .image-frame img {
        height: 350px;
    }
    
    .overlay-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    
    .vm-card,
    .why-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-content h1 {
        font-size: 28px;
    }
    
    .carousel-container {
        height: 350px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .story-carousel .experience-badge {
        bottom: 60px;
        left: 15px;
        padding: 15px 20px;
    }
    
    .story-carousel .badge-content h3 {
        font-size: 30px;
    }
    
    .story-carousel .badge-content p {
        font-size: 12px;
    }
    
    .vm-content h2 {
        font-size: 24px;
    }
    
    .vm-lead {
        font-size: 16px;
    }
    
    .vm-icon-large {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .image-frame img {
        height: 300px;
    }
    
    .overlay-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .vm-list li {
        font-size: 14px;
    }
    
    .vm-list li i {
        font-size: 16px;
    }
    
    .vm-icon,
    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}


/* Enhanced Enquiry Pages */
.enquiry-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.enquiry-left {
    position: sticky;
    top: 100px;
}

.enquiry-image-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.enquiry-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.enquiry-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 90, 142, 0.9), rgba(41, 128, 185, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 30px;
}

.enquiry-overlay-content .overlay-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.enquiry-overlay-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.enquiry-overlay-content p {
    font-size: 16px;
    opacity: 0.95;
}

.enquiry-info-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.enquiry-info-box h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.info-list li i {
    color: var(--success);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.partnership-types {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.partnership-types h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 25px;
}

.partnership-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.partnership-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.partnership-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.partnership-item h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.partnership-item p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.enquiry-right {
    position: relative;
}

.enquiry-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--bg-light);
}

.form-header h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 15px;
}

.enquiry-form-card .form-group {
    margin-bottom: 25px;
}

.enquiry-form-card .form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.enquiry-form-card .form-group label i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 18px;
}

.enquiry-form-card input,
.enquiry-form-card select,
.enquiry-form-card textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.enquiry-form-card input:focus,
.enquiry-form-card select:focus,
.enquiry-form-card textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 90, 142, 0.1);
}

.enquiry-form-card textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-block i {
    font-size: 18px;
}

.enquiry-left .contact-details {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.enquiry-left .contact-details h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 25px;
}

.enquiry-left .contact-details .contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.enquiry-left .contact-details .contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.enquiry-left .contact-details .contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.enquiry-left .contact-details .contact-item h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.enquiry-left .contact-details .contact-item p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.enquiry-left .contact-details .contact-item a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.enquiry-left .contact-details .contact-item a:hover {
    color: var(--primary-color);
}

/* Responsive Enquiry Pages */
@media (max-width: 968px) {
    .enquiry-page-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .enquiry-left {
        position: static;
    }
    
    .enquiry-image-section {
        height: 350px;
    }
    
    .enquiry-form-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .enquiry-image-section {
        height: 300px;
    }
    
    .enquiry-overlay-content .overlay-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .enquiry-overlay-content h3 {
        font-size: 24px;
    }
    
    .enquiry-info-box,
    .partnership-types,
    .enquiry-left .contact-details {
        padding: 25px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .enquiry-form-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .enquiry-image-section {
        height: 250px;
    }
    
    .enquiry-overlay-content {
        padding: 20px;
    }
    
    .enquiry-overlay-content .overlay-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .enquiry-overlay-content h3 {
        font-size: 20px;
    }
    
    .enquiry-info-box,
    .partnership-types,
    .enquiry-left .contact-details {
        padding: 20px;
    }
    
    .enquiry-form-card {
        padding: 20px;
    }
    
    .form-header {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
    
    .form-header h2 {
        font-size: 22px;
    }
    
    .partnership-item i,
    .enquiry-left .contact-details .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Application Form Styles */
.application-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.application-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 50px;
}

.application-info {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.application-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.info-list {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-item i {
    color: var(--success);
    margin-right: 12px;
    font-size: 16px;
}

.requirements h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.requirements ul {
    list-style: none;
    padding: 0;
}

.requirements li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.requirements li:before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 10px;
}

.application-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group small {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

/* Career Page Styles */
.career-section {
    padding: 80px 0;
}

.career-intro {
    text-align: center;
    margin-bottom: 60px;
}

.career-intro h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.career-intro p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.career-benefits {
    margin-bottom: 60px;
}

.career-benefits h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
}

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

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.career-positions {
    margin-bottom: 60px;
}

.career-positions h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
}

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

.position-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
}

.position-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.position-header h4 {
    font-size: 22px;
    margin: 0;
}

.position-type {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.position-content {
    padding: 30px;
}

.position-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.position-requirements {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.position-requirements li {
    padding: 8px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.position-requirements li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.career-process {
    text-align: center;
}

.career-process h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Status Page Styles */
.status-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 20px;
}

.status-content {
    background: var(--white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.success-message i {
    font-size: 80px;
    color: var(--success);
    margin-bottom: 30px;
}

.error-message i {
    font-size: 80px;
    color: #e74c3c;
    margin-bottom: 30px;
}

.status-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.status-content p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.status-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .application-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .status-content {
        padding: 40px 30px;
    }
    
    .status-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-button,
    .call-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    
    .call-button {
        bottom: 80px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .application-info,
    .application-form {
        padding: 25px;
    }
    
    .benefit-card,
    .position-content,
    .process-step {
        padding: 20px;
    }
    
    .status-content {
        padding: 30px 20px;
    }
}


/* Toppers Gallery Section */
.toppers-gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    overflow: hidden;
}

.toppers-subheading {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 10px;
}

.toppers-subheading .highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

.toppers-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    padding: 20px 0;
}

.toppers-slider {
    display: flex;
    gap: 30px;
    animation: scroll-toppers 30s linear infinite;
    width: max-content;
}

.toppers-slider:hover {
    animation-play-state: paused;
}

.topper-slide {
    flex-shrink: 0;
    width: 350px;
    
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.topper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(30, 90, 142, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.topper-slide:hover::before {
    opacity: 1;
}

.topper-slide:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(30, 90, 142, 0.3);
}

.topper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.topper-slide:hover img {
    transform: scale(1.1);
}

@keyframes scroll-toppers {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 9 - 30px * 9));
    }
}

/* Duplicate slides for seamless loop */
.toppers-slider::after {
    content: '';
    display: flex;
    gap: 30px;
}

/* Responsive Design for Toppers Gallery */
@media (max-width: 768px) {
    .toppers-gallery-section {
        padding: 60px 0;
    }
    
    .toppers-subheading {
        font-size: 16px;
    }
    
    .topper-slide {
        width: 280px;
      
    }
    
    @keyframes scroll-toppers {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 9 - 30px * 9));
        }
    }
}

@media (max-width: 480px) {
    .toppers-gallery-section {
        padding: 50px 0;
    }
    
    .toppers-slider-wrapper {
        margin-top: 30px;
    }
    
    .topper-slide {
        width: 250px;
       
        border-radius: 12px;
    }
    
    .toppers-slider {
        gap: 20px;
    }
    
    @keyframes scroll-toppers {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-250px * 9 - 20px * 9));
        }
    }
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, rgba(30, 90, 142, 0.9), rgba(41, 128, 185, 0.9)), url(../images/slider/1.jpg) center / cover;
    padding: 11px 0;
    position: relative;
    color: var(--white);
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

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

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav .current {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Program Section Styles */
.program-section {
    padding: 80px 0;
}

.program-overview {
    margin: 50px 0;
}

.overview-content h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 90, 142, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Curriculum Tabs */
.program-curriculum {
    margin: 60px 0;
}

.program-curriculum h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.curriculum-tabs, .classes-tabs {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: var(--primary-color);
    background: var(--white);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.tab-btn:hover {
    color: var(--primary-color);
    background: rgba(30, 90, 142, 0.05);
}

.tab-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Curriculum Grid */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.curriculum-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.curriculum-item h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.curriculum-item ul {
    list-style: none;
    padding: 0;
}

.curriculum-item li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.curriculum-item li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sport-category {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid var(--secondary-color);
}

.sport-category h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.sport-category ul {
    list-style: none;
    padding: 0;
}

.sport-category li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.sport-category li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Schedule Table */
.schedule-table {
    overflow-x: auto;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.schedule-table th,
.schedule-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.schedule-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.schedule-table td {
    color: var(--text-dark);
}

.schedule-table .break {
    background: var(--bg-light);
    color: var(--text-light);
    font-style: italic;
}

.schedule-table tr:hover {
    background: rgba(30, 90, 142, 0.05);
}

/* Benefits List */
.program-benefits {
    margin: 60px 0;
}

.program-benefits h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(30, 90, 142, 0.15);
}

.benefit-item i {
    color: var(--success);
    font-size: 20px;
}

.benefit-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Enrollment CTA */
.enrollment-cta, .foundation-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.enrollment-cta h3, .foundation-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.enrollment-cta p, .foundation-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

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

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Foundation Course Specific Styles */
.foundation-section {
    padding: 80px 0;
}

.foundation-overview {
    margin: 50px 0;
}

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

.importance-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.importance-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 90, 142, 0.15);
}

.importance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 20px;
}

.importance-item h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.importance-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Class Content */
.class-content h4 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
}

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

.subjects-covered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.subject-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.subject-item h5 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subject-item h5 i {
    color: var(--secondary-color);
}

.subject-item ul {
    list-style: none;
    padding: 0;
}

.subject-item li {
    padding: 6px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.subject-item li::before {
    content: '▶';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 10px;
}

/* Methodology Grid */
.foundation-methodology {
    margin: 60px 0;
}

.foundation-methodology h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

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

.method-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 90, 142, 0.15);
    border-top-color: var(--secondary-color);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin: 0 auto 20px;
}

.method-card h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.method-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Benefits Comparison */
.foundation-benefits {
    margin: 60px 0;
}

.foundation-benefits h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-table td {
    color: var(--text-dark);
}

.comparison-table tr:hover {
    background: rgba(30, 90, 142, 0.05);
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: #e74c3c !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-content h1 {
        font-size: 28px;
    }
    
 .breadcrumb-nav {
        flex-direction: unset;
        gap: 5px;
    }
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        text-align: left;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .schedule-table {
        font-size: 12px;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 10px 5px;
    }
}

@media (max-width: 480px) {
    .program-section,
    .foundation-section {
        padding: 50px 0;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .enrollment-cta,
    .foundation-cta {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .enrollment-cta h3,
    .foundation-cta h3 {
        font-size: 24px;
    }
}
/* Founders Section Styles */
.founders-section {
    padding: 2px 0;
}

.founder-profile-main {
    margin: 60px 0;
    background: var(--white);
   
    overflow: hidden;
}

.founder-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    min-height: 600px;
}

.founder-image-section {
   
   
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.founder-image-container {
    position: relative;
    text-align: center;
}

.founder-image-container img {
   
    object-fit: cover;
    border-radius: 15px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.founder-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.founder-badge i {
    color: var(--secondary-color);
}

.founder-details-section {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-header h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.founder-title {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.founder-credentials {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.credential-badge {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
}

.founder-description .lead-text {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.6;
}

.founder-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.founder-achievements {
    margin-top: 30px;
}

.founder-achievements h4 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 20px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(30, 90, 142, 0.1);
}

.achievement-item i {
    color: var(--secondary-color);
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.achievement-item h5 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.achievement-item p {
    color: var(--text-light);
    font-size: 13px;
    margin: 0;
}

/* Co-Founder Section */
.co-founder-section {
    margin: 80px 0;
}

.co-founder-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.co-founder-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 400px;
}

.co-founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.co-founder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 90, 142, 0.9));
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.co-founder-image:hover .co-founder-overlay {
    transform: translateY(0);
}

.co-founder-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.co-founder-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.co-founder-details h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 10px;
}

.co-founder-title {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.co-founder-credentials {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.co-founder-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.co-founder-specialties h5 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.co-founder-specialties ul {
    list-style: none;
    padding: 0;
}

.co-founder-specialties li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-light);
}

.co-founder-specialties li i {
    color: var(--secondary-color);
    width: 20px;
}

/* Vision Mission Section */
.founders-vision-mission {
    margin: 80px 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vision-card, .mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-card::before, .mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin: 0 auto 25px;
}

.vision-card h3, .mission-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.vision-card p, .mission-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.vm-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* Leadership Philosophy */
.leadership-philosophy {
    margin: 80px 0;
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 20px;
}

.philosophy-content h3 {
    color: var(--primary-color);
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.philosophy-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 90, 142, 0.15);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.philosophy-item h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.philosophy-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Founders Message */
.founders-message {
    margin: 80px 0;
}

.message-container {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
}

.message-header h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.message-line {
    width: 100px;
    height: 3px;
    background: var(--white);
    margin: 0 auto 40px;
}

.message-content blockquote {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    position: relative;
}

.message-content blockquote::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.3;
}

.message-signatures {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.signature {
    text-align: center;
}

.signature strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.signature span {
    font-size: 14px;
    opacity: 0.8;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--white);
    color: var(--text-light);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Masonry Gallery */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery Load More */
.gallery-load-more {
    text-align: center;
    margin-top: 60px;
}

.gallery-load-more .btn {
    padding: 15px 40px;
    font-size: 16px;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-nav {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(5px);
}

.lightbox-nav:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .founder-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .founder-image-section {
        padding: 30px;
    }
    
    .founder-details-section {
        padding: 40px 30px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .co-founder-profile {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .founders-section {
        padding: 60px 0;
    }
    
    .founder-header h2 {
        font-size: 28px;
    }
    
    .founder-title {
        font-size: 18px;
    }
    
    .founder-image-container img {
    
    }
    
    .message-container {
        padding: 40px 30px;
    }
    
    .message-content blockquote {
        font-size: 18px;
    }
    
    .message-signatures {
        flex-direction: column;
        gap: 30px;
    }
    
    .masonry-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .founder-details-section {
        padding: 30px 20px;
    }
    
    .founder-image-section {
        padding: 5px;
    }
    
    .founder-image-container img {
       
    }
    
    .credential-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .masonry-gallery {
        grid-template-columns: 1fr;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    #lightboxImage {
        max-height: 60vh;
    }
}

/* About Page - Strength and R&D Sections */
.strength-section, .rd-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.strength-section h3, .rd-section h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strength-section h3 i, .rd-section h3 i {
    color: var(--secondary-color);
    font-size: 20px;
}

.strength-section p, .rd-section p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.rd-highlights {
    margin-top: 20px;
}

.rd-highlights ul {
    list-style: none;
    padding: 0;
}

.rd-highlights li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dark);
    line-height: 1.6;
}

.rd-highlights li i {
    color: var(--success);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .strength-section, .rd-section {
        padding: 20px 15px;
        margin: 20px 0;
    }
    
    .strength-section h3, .rd-section h3 {
        font-size: 20px;
    }
    
    .rd-highlights li {
        font-size: 14px;
    }
}
/* Additional Styles for New Sections */
.founder-tagline {
    background: linear-gradient(135deg, var(--bg-light), #e9ecef);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.founder-tagline p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.founder-mission {
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    position: relative;
}

.founder-mission::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 15px;
    opacity: 0.3;
}

.founder-mission p {
    font-size: 1.05rem;
    font-style: italic;
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Experience Section */
.experience-section {
    margin: 60px 0;
    padding: 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.experience-timeline {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.experience-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.experience-header h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.experience-company {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.experience-description p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}
/* Expertise Tiers Section */
.expertise-tiers-section {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.tiers-container {
    display: grid;
    gap: 25px;
    margin-top: 40px;
}

.tier-item {
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tier-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    transition: width 0.3s ease;
}

.tier-item:hover::before {
    width: 100%;
    opacity: 0.1;
}

.apex-tier {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: var(--white);
}

.apex-tier::before {
    background: var(--white);
}

.middle-tier {
    background: linear-gradient(135deg, var(--primary-color), #3498db);
    color: var(--white);
}

.middle-tier::before {
    background: var(--white);
}

.base-tier {
    background: linear-gradient(135deg, var(--secondary-color), #f39c12);
    color: var(--white);
}

.base-tier::before {
    background: var(--white);
}

.tier-header h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.tier-description p {
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}
/* Career Timeline Section */
.career-timeline-section {
    margin: 60px 0;
    padding: 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.timeline-container {
    position: relative;
    margin-top: 40px;
    padding-left: 30px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Academic Foundation Section */
.academic-foundation-section {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, var(--bg-light), #e9ecef);
    border-radius: 20px;
}

.academic-timeline {
    display: grid;
    gap: 25px;
    margin-top: 40px;
}

.academic-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.academic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.academic-year {
    background: linear-gradient(135deg, var(--secondary-color), #f39c12);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.academic-content h5 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.academic-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}
/* Executive Profile Section */
.executive-profile-section {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.executive-profile-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.executive-profile-section .section-header h3 {
    color: var(--white);
}

.executive-profile-section .title-line-center::after {
    background: var(--white);
}

.executive-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.executive-item {
    text-align: center;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.executive-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.executive-item h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--white);
}

.executive-item p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .experience-section,
    .expertise-tiers-section,
    .career-timeline-section,
    .academic-foundation-section,
    .executive-profile-section {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .timeline-container {
        padding-left: 20px;
    }
    
    .timeline-item {
        padding-left: 30px;
    }
    
    .academic-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .academic-year {
        min-width: auto;
        padding: 10px 15px;
    }
    
    .executive-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .founder-tagline,
    .founder-mission {
        padding: 15px;
        margin: 15px 0;
    }
    
    .founder-mission::before {
        font-size: 3rem;
        top: -5px;
        left: 10px;
    }
}