@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap');

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

html {
    overflow-x: hidden;
}

:root {
    --primary-color: #1e5a8e;
    --secondary-color: #ff9800;
    --text-dark: #2c3e50;
    --text-light: #373737;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --topbar-bg: #0d3b66;
    --header-gradient: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --nav-hover-bg: rgba(30, 90, 142, 0.08);
}

body {
    font-family: "Sen", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 10px;
}

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

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

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #0d3b66 0%, #1e5a8e 100%);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-left a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-weight: 500;
}

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

.top-left i {
    font-size: 16px;
}

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

.top-right a {
    color: var(--white);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 16px;
}

.top-right a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Header */
.header {
    background: var(--header-gradient);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

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

.logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1001;
}

.call-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.call-btn:hover {
    background: linear-gradient(135deg, #f57c00, var(--secondary-color));
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    border-color: rgba(255, 152, 0, 0.2);
}

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

/* Navigation */
.nav-menu {
    position: relative;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu>ul>li {
    position: relative;
}

.nav-menu>ul>li>a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: transparent;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.nav-menu>ul>li>a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu>ul>li>a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--nav-hover-bg);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.nav-menu>ul>li>a:hover::before {
    width: 80%;
}

.nav-menu>ul>li>a:hover::after {
    opacity: 1;
}

.nav-menu>ul>li>a i {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 15px 0;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    display: grid !important;
    backdrop-filter: blur(10px);
}

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

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

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    padding: 14px 25px;
    display: block;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin: 0 8px;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    transition: width 0.3s ease;
    z-index: -1;
}

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

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 12px;
    background: linear-gradient(135deg, var(--bg-light), #f0f4f8);
    border-radius: 10px;
    border: 2px solid rgba(30, 90, 142, 0.1);
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: linear-gradient(135deg, #f0f4f8, var(--bg-light));
    border-color: var(--primary-color);
}

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

.mobile-toggle.active {
    background: var(--primary-color);
}

.mobile-toggle.active span {
    background: var(--white);
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
}

.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;
    overflow: hidden;
}

.hero-slide img {
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    transform: translate(-50%, -50%) scale(1.9);
    transition: transform 2s ease-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
}

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

.hero-slide.active img {
    transform: translate(-50%, -50%) scale(1);
}

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

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: var(--white);
    text-align: center;
    max-width: 800px;
    width: 90%;
    padding: 0 20px;
}

.hero-slide.active .hero-content h1 {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-slide.active .hero-content p {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-slide.active .hero-content .btn {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

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

.hero p {
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: 35px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.slider-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

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

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

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    user-select: none;
}

.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;
    -webkit-tap-highlight-color: transparent;
}

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

.dot:active {
    transform: scale(0.9);
}

.dot.active {
    background: var(--secondary-color);
    width: 35px;
    border-radius: 10px;
    border-color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.4);
}

/* Loading state for images */
.hero-slide img {
    transition: opacity 0.3s ease;
}

.hero-slide img[data-loading="true"] {
    opacity: 0.5;
}

/* Preloader for hero images */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-slide[data-loading="true"]::before {
    opacity: 1;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 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: 80px 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);
    animation: fadeInUp 0.8s ease;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.cta-content .btn {
    animation: fadeInUp 0.8s ease 0.4s backwards;
    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);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 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, #4891d9 0%, #004b8f 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;

}

.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;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #1e5a8e, #5db4ff);
    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: 30px;
    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: 998;
    animation: pulseWhatsapp 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 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);
    }
}

@keyframes pulseWhatsapp {

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

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 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: 95px;
        left: 20px;
        font-size: 22px;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 25px;
        left: 20px;
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .footer-logo img {
        max-width: 150px;
    }

    .footer-col h3 {
        font-size: 18px;
    }

    .contact-info li {
        flex-direction: column;
        gap: 10px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #0d73d5 0%, #2e5073 100%);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 1001;
        padding: 100px 0 30px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-overlay.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        padding: 0 20px;
    }

    .nav-menu>ul>li {
        width: 100%;
        margin-bottom: 5px;
    }

    .nav-menu>ul>li>a {
        padding: 18px 20px;
        width: 100%;
        justify-content: space-between;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(30, 90, 142, 0.1);
        margin-bottom: 5px;
    }

    .nav-menu>ul>li>a::before {
        display: none;
    }

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

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(30, 90, 142, 0.05);
        border: none;
        border-radius: 8px;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin: 5px 0 10px;
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-menu a {
        padding: 12px 25px;
        font-size: 14px;
        margin: 0 10px;
        border-radius: 8px;
        background: transparent;
    }

    .dropdown-menu a:hover {
        padding-left: 35px;
        background: var(--primary-color);
        color: var(--white);
    }

    .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: 13px;
        padding: 10px 0;
    }

    .top-left {
        gap: 20px;
    }

    .top-left a {
        padding: 6px 12px;
        font-size: 13px;
    }

    .top-right a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .header-content {
        padding: 6px 0;
    }

    .logo img {
        height: 60px;
    }

    .call-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 10px;
    }

    .nav-menu {
        width: 280px;
        padding: 90px 0 25px;
    }

    .nav-menu ul {
        padding: 0 15px;
    }

    .nav-menu>ul>li>a {
        padding: 16px 18px;
        font-size: 14px;
    }

    /* Additional responsive breakpoints for hero */
    @media (max-width: 1200px) {
        .hero {
            height: 80vh;
            min-height: 450px;
            max-height: 700px;
        }
    }

    @media (max-width: 992px) {
        .hero {
            height: 75vh;
            min-height: 400px;
            max-height: 600px;
        }

        .slider-btn {
            width: 45px;
            height: 45px;
            font-size: 16px;
        }

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

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

    @media (max-width: 768px) {
        .hero {
            height: 70vh;
            min-height: 350px;
            max-height: 500px;
        }

        .slider-btn {
            width: 40px;
            height: 40px;
            font-size: 14px;
            border-radius: 8px;
        }

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

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

        .slider-dots {
            bottom: 15px;
            gap: 8px;
            padding: 6px 12px;
        }

        .dot {
            width: 8px;
            height: 8px;
        }

        .dot.active {
            width: 24px;
        }

        .hero-content {
            padding: 0 15px;
        }
    }

    @media (max-width: 480px) {
        .hero {
            height: 60vh;
            min-height: 300px;
            max-height: 400px;
        }

        .slider-btn {
            width: 35px;
            height: 35px;
            font-size: 12px;
        }

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

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

        .slider-dots {
            bottom: 10px;
            gap: 6px;
            padding: 4px 8px;
        }

        .dot {
            width: 6px;
            height: 6px;
        }

        .dot.active {
            width: 20px;
        }
    }

    @media (orientation: landscape) and (max-height: 500px) {
        .hero {
            height: 100vh;
            min-height: 300px;
        }

        .slider-dots {
            bottom: 10px;
        }

        .slider-btn {
            width: 35px;
            height: 35px;
        }
    }

    .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: 60vh;
        min-height: 350px;
        max-height: 500px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-radius: 8px;
    }

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

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

    .slider-dots {
        bottom: 15px;
        gap: 8px;
        padding: 6px 12px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .call-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 80px;
        left: 20px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }
}


/* About Section Enhanced */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="hexagons" width="80" height="80" patternUnits="userSpaceOnUse"><polygon points="40,10 60,25 60,55 40,70 20,55 20,25" fill="none" stroke="rgba(30,90,142,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>');
    opacity: 0.4;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

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

.about-content-left {
    padding-right: 30px;
    position: relative;
}

.about-content-left::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0.3;
}

.section-title {
    margin-bottom: 35px;
    position: relative;
}

.subtitle {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    display: none;
}



.section-title h2 {
    font-size: clamp(32px, 4vw, 48px);
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.title-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    position: relative;
}

.title-line::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.lead-text {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-content-left>p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: justify;
}

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


.about-image-right img {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.8);
}


.feature-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 90, 142, 0.1);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.feature-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;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(30, 90, 142, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.feature-text h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

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

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

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

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

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    padding: 30px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.badge-content h3 {
    font-size: 48px;
    color: var(--white);
    margin: 0;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.badge-content p {
    font-size: 16px;
    color: var(--white);
    margin: 8px 0 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Responsive About Section */
@media (max-width: 968px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content-left {
        padding-right: 0;

    }



    .about-content-left::before {
        display: none;
    }

    .section-title h2 {
        font-size: clamp(28px, 5vw, 36px);
    }

    .about-content-left>p {
        padding: 20px;
        font-size: 16px;
    }

    .feature-item {
        padding: 15px;
        gap: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .carousel-container {
        height: 450px;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

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

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

    .story-carousel .experience-badge {
        bottom: 80px;
        left: 30px;
        padding: 25px 30px;
    }

    .story-carousel .badge-content h3 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-wrapper {
        gap: 40px;
    }

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

    .subtitle {
        font-size: 14px;
        letter-spacing: 1.5px;
        padding-left: 20px;
    }


    .section-title h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .title-line {
        width: 60px;
        height: 4px;
    }

    .title-line::after {
        width: 8px;
        height: 8px;
        right: -12px;
    }

    .about-content-left>p {
        padding: 18px;
        font-size: 15px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .feature-icon {
        align-self: center;
    }

    .carousel-container {
        height: 400px;
    }

    .story-carousel {
        border-radius: 20px;
    }

    .story-carousel .experience-badge {
        bottom: 70px;
        left: 25px;
        padding: 20px 25px;
        border-radius: 15px;
    }

    .story-carousel .badge-content h3 {
        font-size: 36px;
    }

    .story-carousel .badge-content p {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 50px 0;
    }

    .about-wrapper {
        gap: 30px;
    }

    .about-content-left>p {
        padding: 15px;
        font-size: 14px;
        text-align: left;
    }

    .feature-item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        border-radius: 12px;
    }

    .feature-text h4 {
        font-size: 18px;
    }

    .feature-text p {
        font-size: 14px;
    }

    .carousel-container {
        height: 350px;
    }

    .story-carousel {
        border-radius: 15px;
        border-width: 2px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

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

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

    .carousel-indicators {
        bottom: 20px;
        gap: 12px;
        padding: 12px 20px;
    }

    .indicator {
        width: 12px;
        height: 12px;
    }

    .indicator.active {
        width: 35px;
    }

    .story-carousel .experience-badge {
        bottom: 60px;
        left: 20px;
        padding: 18px 22px;
        border-radius: 12px;
        border-width: 2px;
    }

    .story-carousel .badge-content h3 {
        font-size: 30px;
    }

    .story-carousel .badge-content p {
        font-size: 12px;
        margin-top: 6px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }

    .subtitle {
        font-size: 13px;
        padding-left: 18px;
    }

    .section-title h2 {
        font-size: clamp(20px, 7vw, 28px);
    }

    .about-content-left>p {
        padding: 12px;
        font-size: 13px;
        border-left-width: 3px;
    }

    .feature-item {
        padding: 12px;
        border-radius: 12px;
    }

    .carousel-container {
        height: 300px;
    }

    .story-carousel {
        border-radius: 12px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .carousel-indicators {
        bottom: 15px;
        gap: 10px;
        padding: 10px 15px;
    }

    .story-carousel .experience-badge {
        bottom: 50px;
        left: 15px;
        padding: 15px 18px;
    }

    .story-carousel .badge-content h3 {
        font-size: 24px;
    }

    .story-carousel .badge-content p {
        font-size: 11px;
    }
}

.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::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"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(30,90,142,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.6;
}

.projects-section .container {
    position: relative;
    z-index: 1;
}

.title-line-center {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin: 15px auto 20px;
    position: relative;
}

.title-line-center::before,
.title-line-center::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.title-line-center::before {
    left: -15px;
}

.title-line-center::after {
    right: -15px;
}

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

.project-card-home {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.project-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 90, 142, 0.02), rgba(255, 152, 0, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-card-home:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(30, 90, 142, 0.2);
}

.project-card-home:hover::before {
    opacity: 1;
}

.project-image-home {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.project-image-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.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.5));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card-home:hover .project-overlay {
    opacity: 1;
}

.project-badge {
    background: linear-gradient(135deg, var(--success), #27ae60);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    backdrop-filter: blur(10px);
}

.project-badge.ongoing {
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.project-info-home {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.project-info-home h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.project-card-home:hover .project-info-home h3 {
    color: var(--secondary-color);
}

.project-location {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.project-location i {
    color: var(--secondary-color);
    font-size: 16px;
}

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

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-view:hover {
    color: var(--white);
    gap: 15px;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 90, 142, 0.3);
}

.btn-view:hover::before {
    left: 0;
}

.btn-view i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-view:hover i {
    transform: translateX(3px);
}

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

/* Enhanced Section Header */
.projects-section .section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 15px;
}

.projects-section .section-header p {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0;
}

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

    .project-image-home {
        height: 260px;
    }
}

@media (max-width: 968px) {
    .projects-grid-home {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 50px;
    }

    .project-image-home {
        height: 240px;
    }

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

    .project-info-home h3 {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .projects-section {
        padding: 60px 0;
    }

    .projects-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .project-card-home {
        border-radius: 16px;
        margin: 0 10px;
    }

    .project-image-home {
        height: 220px;
        border-radius: 16px 16px 0 0;
    }

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

    .project-info-home h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .project-location {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .btn-view {
        padding: 8px 16px;
        font-size: 13px;
    }

    .projects-section .section-header {
        margin-bottom: 30px;
    }

    .projects-section .section-header h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .projects-section .section-header p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .projects-section {
        padding: 50px 0;
    }

    .project-card-home {
        margin: 0 5px;
        border-radius: 12px;
    }

    .project-image-home {
        height: 200px;
        border-radius: 12px 12px 0 0;
    }

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

    .project-info-home h3 {
        font-size: 16px;
    }

    .project-location {
        font-size: 12px;
    }

    .btn-view {
        padding: 6px 14px;
        font-size: 12px;
        gap: 8px;
    }

    .title-line-center {
        width: 60px;
    }

    .title-line-center::before,
    .title-line-center::after {
        width: 6px;
        height: 6px;
    }

    .title-line-center::before {
        left: -12px;
    }

    .title-line-center::after {
        right: -12px;
    }
}

/* ===================================
   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 {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.stat-card i {
    font-size: 40px;
    color: #667eea;
    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;
}

/* 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;

}

.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 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.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 {
        grid-template-columns: 1fr;
    }

    .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 1fr;
        gap: 5px;
    }

    .location-feature {
        flex-direction: column;
        text-align: center;
        border: 1px solid #b9b9b9;
        padding: 23px;
        background: #fbfbfb;
        border-radius: 24px;
        box-shadow: 2px 5px 1px 1px #e7dada;
    }

    .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,
    .testimonial-card,
    .news-card {
        margin-bottom: 20px;
    }

    .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/breadcumb.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;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.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);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Story Carousel */
.story-carousel {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.story-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 90, 142, 0.1), rgba(255, 152, 0, 0.1));
    z-index: 2;
    pointer-events: none;
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transform: scale(1);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.carousel-slide.active img {
    animation: zoomIn 0.8s ease forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1.2);
    }

    to {
        transform: scale(1);
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(30, 90, 142, 0.1);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.4);
    border-color: var(--secondary-color);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

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

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

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    padding: 15px 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--secondary-color);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    background: var(--secondary-color);
    width: 45px;
    border-radius: 15px;
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.indicator.active::before {
    width: 100%;
    height: 100%;
}

.story-carousel .experience-badge {
    position: absolute;
    bottom: 100px;
    left: 40px;
    background: linear-gradient(135deg, var(--secondary-color), #f57c00);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 10;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.story-carousel .badge-content h3 {
    font-size: 52px;
    color: var(--white);
    margin: 0;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1;
}

.story-carousel .badge-content p {
    font-size: 16px;
    color: var(--white);
    margin: 10px 0 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 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: 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 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;
    background: rgba(255, 255, 255, 0.15);
    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: 20px 0 30px;
    }

    .dropdown-menu a {

        color: #ffffff !important;

    }

    .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;
    }
}


/* simple card container */
.form-card {
    max-width: 680px;
    width: 100%;
    background-color: var(--white);
    border-radius: 36px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin: 40px auto;
}

/* header with builder touch */
.form-header {
    background: var(--header-gradient);
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 4px solid var(--secondary-color);
    text-align: center;
}

.form-header i {
    font-size: 3rem;
    color: var(--primary-color);
    background: rgba(30, 90, 142, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
    text-transform: capitalize;
}

.form-header p {
    color: var(--text-light);
    margin-top: 0.3rem;
    font-size: 1rem;
}

/* form body */
.form-body {
    padding: 2.5rem;
}

/* two column for small fields */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-row .field-group {
    flex: 1 1 calc(50% - 0.6rem);
    min-width: 200px;
}

.field-group {
    margin-bottom: 1.4rem;
}

.field-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: capitalize;
}

.field-group label i {
    color: var(--secondary-color);
    width: 1.5rem;
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid var(--border-color);
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
    transition: 0.15s;
    background: var(--bg-light);
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 90, 142, 0.2);
}

/* file upload area (simple) */
.file-upload {
    border: 2px dashed var(--primary-color);
    background: rgba(30, 90, 142, 0.02);
    border-radius: 40px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    margin: 1rem 0 0.5rem;
}

.file-upload i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.file-upload span {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
}

.file-upload small {
    color: #7f8c8d;
    font-size: 0.85rem;
}

.file-upload:hover {
    background: rgba(255, 152, 0, 0.05);
    border-color: var(--secondary-color);
}

/* hide default file input */
#resume {
    opacity: 0;
    position: absolute;
    width: 1px;
    height: 1px;
}

/* submit button */
.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 60px;
    width: 100%;
    cursor: pointer;
    transition: 0.2s;
    margin: 1.8rem 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: 2px solid transparent;
}

.submit-btn i {
    font-size: 1.2rem;
    transition: 0.2s;
}

.submit-btn:hover {
    background: #0f4370;
    transform: scale(1.01);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* footer note */
.form-footer {
    text-align: center;
    color: #7a8b9b;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 0.8rem;
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* mini alert (simulated) */
.required-note {
    background: #fef8e7;
    border-left: 4px solid var(--secondary-color);
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    color: var(--text-dark);
}

.required-note i {
    color: var(--secondary-color);
    margin-right: 0.4rem;
}

/* responsive */
@media (max-width: 500px) {
    .form-body {
        padding: 1.8rem;
    }

    .form-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }
}

.section {
    padding: 5rem 2rem;
    background: var(--white);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

/* ----- section header refined ----- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(30, 90, 142, 0.08);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.title-line-center {
    width: 90px;
    height: 5px;
    background: var(--accent);
    margin: 0.8rem auto 1.5rem;
    border-radius: 4px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ----- layout: left features + right image (balanced) ----- */
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.location-left {
    flex: 1.2 1 450px;
    /* slightly more width for features */
}

.about-image-right {
    flex: 0.9 1 380px;
    position: relative;
}

/* features grid — modern card style */
.location-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.location-feature {
    background: var(--white);
    border-radius: var(--radius-medium);
    padding: 1.3rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    box-shadow: 0 4px 14px rgba(0, 30, 60, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    border-radius: 24px;

}

.location-feature:hover {
    transform: translateY(-4px);
    text-align: center;
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
    background: linear-gradient(145deg, #ffffff, #f9fcff);
    border-radius: 24px;
}

/* new style for the image inside each feature */
.location-feature-icon {
    width: 100%;
    height: 300px;
    background: rgba(255, 152, 0, 0.12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--primary);
    transition: 0.2s;
    flex-shrink: 0;
    overflow: hidden;
    /* so image fits nicely if round */
}

/* image inside the icon — makes each feature unique */
.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    /* slightly matches parent */
    transition: transform 0.3s;
}

.location-feature:hover .feature-img {
    transform: scale(1.08);
}

.location-feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.location-feature-text h4 {
    font-size: 1.06rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    line-height: 1.3;
    text-align: center;
}

.location-feature-text p {
    font-size: 0.92rem;
    color: var(--secondary-color);
    font-weight: 500;
    display: inline-block;
    background: rgba(30, 90, 142, 0.04);
    padding: 0.2rem 1rem 0.2rem 0.8rem;
    border-radius: 40px;
    letter-spacing: 0.2px;
}

/* right image — elegant */
.about-image-right {
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: fit-content;
}

.about-image-right img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s;
    object-fit: cover;
}

.about-image-right:hover img {
    transform: scale(1.02);
}

.about-image-right::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.location-feature-text p i {
    margin-right: 4px;
    color: var(--accent);
    font-size: 0.8rem;
}

/* responsive */
@media (max-width: 1000px) {
    .location-content {
        flex-direction: column-reverse;
    }

    .about-image-right {
        max-width: 600px;
        margin: 0 auto;
    }

    .location-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 650px) {
    .section-header h2 {
        font-size: 2.4rem;
    }

    .location-features {
        grid-template-columns: 1fr;
    }

    .location-feature {
        padding: 1.2rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 450px) {
    .location-feature {
        flex-wrap: wrap;
    }
}

.section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Subtle background pattern */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(30, 90, 142, 0.02) 100%);
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

/* Right Image - Modern & Elegant */
.about-image-right {
    flex: 1 1 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 30px 40px -20px rgba(0, 50, 80, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-right:hover {
    transform: translateY(-6px);
    box-shadow:
        0 40px 50px -20px rgba(30, 90, 142, 0.4),
        0 0 0 2px rgba(255, 152, 0, 0.2) inset;
}

.about-image-right img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-image-right:hover img {
    transform: scale(1.02);
}

/* Decorative frame around image */
.about-image-right::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
   /* border: 2px solid rgba(255, 255, 255, 0.4);*/
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
    transition: all 0.4s ease;
}

.about-image-right:hover::before {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-color: rgba(255, 152, 0, 0.5);
}

/* Left Content - Clean & Professional */
.about-content-left {
    flex: 1 1 500px;
}

/* Uncommented and styled the title section (was commented in HTML) */
.section-title {
    margin-bottom: 2rem;
}

.subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff9800;
    background: rgba(255, 152, 0, 0.08);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    display: none !important;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e5a8e;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.title-line {
    width: 80px;
    height: 4px;
    background: #ff9800;
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* Paragraph styling - refined */
.about-content-left p {
    color: #3a4a5c;
    padding: 0;
    position: relative;
    font-weight: 400;
    text-align: justify;
}
/* 
.about-content-left p::first-letter {
     
    font-weight: 700;
    color: #1e5a8e;
    float: left;
    line-height: 0.8;
    margin-right: 0.8rem;
    font-family: 'Times New Roman', serif;
} */

/* Add subtle pull quote style */
.about-content-left p strong {
    color: #1e5a8e;
    font-weight: 600;
}

/* Decorative element - subtle */
.about-content-left::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #ff9800, transparent);
    margin-top: 2rem;
}

.position{
    color: #F76405;
    font-size: 16px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1000px) {
    .section {
        padding: 4rem 2rem;
    }

    .about-wrapper {
        gap: 2.5rem;
    }

    .section-title h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column-reverse;
    }

    .about-image-right {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .about-content-left p {
        font-size: 1rem;
        text-align: left;
    }

     

    .about-section::before {
        width: 100%;
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 1.5rem;
    }

    .subtitle {
        font-size: 0.8rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .title-line {
        width: 60px;
    }
}

/* Optional: Add some subtle animation on scroll (just for flair) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content-left {
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-image-right {
    animation: fadeInUp 0.8s 0.1s ease-out forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.footer-main {
    padding: 4rem 0 3rem;
    position: relative;
}

.footer-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), var(--secondary), transparent);
    opacity: 0.2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 2.5rem;
}

/* Footer Columns */
.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-col:hover h3::after {
    width: 60px;
}

/* About Section */
.footer-about {
    padding-right: 1rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
}

.footer-logo img:hover {
    opacity: 1;
    transform: scale(1.02);
}

.footer-about>p {
    color: var(--text-lighter);
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Social Section */
.footer-social h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 152, 0, 0.2);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--dark-bg);
    transform: translateY(-3px);
    border-color: var(--secondary);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 0;
}
.text-center{
    text-align: center;
}
.footer-links a i {
    color: #F76405;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    transform: translateX(1px);
    transition: .1s ease-in-out;
}

.member-info p {
    color: #F76405;
    font-size: 16px;
    margin: 0;
}

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

/* Contact Info */
.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

.contact-info li:hover .contact-icon {
    background: var(--secondary);
    color: var(--dark-bg);
    transform: scale(1.1);
    border-color: var(--secondary);
}

.contact-text h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-text p,
.contact-text a {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: var(--transition);
}

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

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.footer-bottom-content p {
    color: var(--text-lighter);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

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

/* Call & WhatsApp Buttons */
.call-button,
.whatsapp-button {
    position: fixed;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
}

.call-button {
    bottom: 100px;
    background: linear-gradient(145deg, #1e5a8e, #5db4ff);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-button {
    bottom: 30px;
    background: linear-gradient(145deg, #25D366, #128C7E);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.call-button:hover,
.whatsapp-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: none;
}

.call-button:hover {
    background: var(--primary);
}

.whatsapp-button:hover {
    background: #25D366;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 152, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
    }
}

.whatsapp-button {
    animation: pulseWhatsApp 2s infinite;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

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

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

    .footer-about {
        grid-column: span 2;
    }

    .footer-col h3 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .call-button,
    .whatsapp-button {
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .call-button {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .contact-info li {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-icon {
        width: 35px;
        height: 35px;
    }
}

/* Hover effect for footer links */
.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Footer decorative elements */
.footer-col {
    position: relative;
}

.footer-col::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1.25rem;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 152, 0, 0.2), transparent);
}

.footer-col:last-child::after {
    display: none;
}

@media (max-width: 992px) {
    .footer-col::after {
        display: none;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-light);
}