/* Global Styles */
:root {
    --primary-color: #FFC107;
    --secondary-color: #2C3E50;
    --background-color: #1C2526;
    --text-color: #FFFFFF;
    --transition-speed: 0.3s;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-hover-bg: rgba(255, 255, 255, 0.1);
}

/* Hide mobile menu elements on desktop */
.mobile-menu-backdrop,
.mobile-menu-drawer {
    display: none;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color:#202d3f;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.2rem 0;
    transition: all var(--transition-speed);
}

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

.logo a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.logo .prima {
    color: var(--primary-color);
}

.logo .services {
    color: var(--text-color);
}

.logo {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo img {
    width: 170px;
    height: 56px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    transition: transform 0.2s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 1px;
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slideshow {
    position: relative;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.slide-content .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.slide.active .tagline {
    opacity: 1;
    transform: translateY(0);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all var(--transition-speed);
    opacity: 0;
    transform: translateY(20px);
}

.slide.active .cta-button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.cta-button:hover {
    background-color: #FFD54F;
    transform: translateY(-2px);
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.slideshow-controls button {
    background: none;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.slideshow-controls button:hover {
    background-color: var(--text-color);
    color: var(--background-color);
}

.slideshow-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-speed);
}

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

/* Overview Section */
.overview {
    padding: 5rem 0;
    text-align: center;
}

.overview h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Featured Services */
.featured-services {
    padding: 5rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.featured-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

/* Service Cards - Modern Design */
.service-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: var(--card-hover-bg);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all var(--transition-speed);
}

.service-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    transition: all var(--transition-speed);
}

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

.service-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.testimonial-card {
    background-color: var(--card-bg);
    padding: 3rem 2rem 2rem;
    border-radius: 15px;
    position: relative;
    transition: all var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4rem 0 2rem;
    width: 100%;
    box-shadow: none;
    background-image: none;
}

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

.footer-info .logo {
    margin-bottom: 1rem;
}

.footer-info .logo img {
    height: 80px;
    vertical-align: middle;
}

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

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #1A237E; /* Navy */
    font-size: 1.5rem;
    transition: color var(--transition-speed);
}

.social-icons a:hover {
    color: #FFC107; /* Yellow */
}

.footer-bottom {
    background-color: transparent;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    background-image: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Show hamburger menu on mobile */
    .nav-toggle {
        display: block !important;
        position: relative;
        z-index: 1001;
    }

    /* Hide desktop menu on mobile */
    .nav-menu {
        display: none !important;
    }

    /* Show mobile menu elements only on mobile */
    .mobile-menu-backdrop,
    .mobile-menu-drawer {
        display: block !important;
    }

    /* Ensure mobile menu backdrop is properly positioned */
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Ensure mobile menu drawer is properly positioned */
    .mobile-menu-drawer {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #202d3f 0%, #1a2332 100%);
        z-index: 1000;
        transition: right 0.7s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        border-top-left-radius: 18px;
        border-bottom-left-radius: 18px;
    }

    .mobile-menu-drawer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

    .mobile-menu-drawer.active {
        right: 0;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2.5rem 2rem 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 193, 7, 0.1);
        background: rgba(255, 255, 255, 0.02);
        position: relative;
        z-index: 2;
        flex-shrink: 0;
    }

    .mobile-logo {
        height: 100px;
        display: flex;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .mobile-logo:hover {
        transform: scale(1.05);
    }

    .mobile-logo img {
        height: 100px;
        width: auto;
        max-width: 300px;
        object-fit: contain;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    }

    /* Mobile Menu Close Button */
    .mobile-menu-close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        position: relative;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: rgba(255, 193, 7, 0.1);
        border: 1px solid rgba(255, 193, 7, 0.2);
    }

    .mobile-menu-close:hover {
        background: rgba(255, 193, 7, 0.2);
        transform: scale(1.1) rotate(90deg);
        border-color: rgba(255, 193, 7, 0.4);
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
    }

    .mobile-menu-close:active {
        transform: scale(0.95);
    }

    .mobile-menu-close span {
        position: absolute;
        width: 22px;
        height: 2px;
        background: #FFC107;
        border-radius: 1px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .mobile-menu-close span:first-child {
        transform: rotate(45deg);
    }

    .mobile-menu-close span:last-child {
        transform: rotate(-45deg);
    }

    .mobile-menu-close:hover span {
        background: #fff;
        box-shadow: 0 1px 4px rgba(255, 255, 255, 0.3);
    }

    /* Mobile Navigation Menu */
    .mobile-nav-menu {
        list-style: none;
        padding: 2rem 0;
        margin: 0;
        position: relative;
        z-index: 2;
        flex-grow: 1;
    }

    .mobile-nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0;
        transform: translateX(30px);
        animation: slideInRight 0.5s ease forwards;
    }

    .mobile-nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .mobile-nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .mobile-nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .mobile-nav-menu li:nth-child(4) { animation-delay: 0.4s; }

    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

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

    .mobile-nav-link {
        display: block;
        padding: 1.8rem 2rem;
        color: #fff;
        text-decoration: none;
        font-size: 1.3rem;
        font-weight: 500;
        letter-spacing: 0.8px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }

    .mobile-nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .mobile-nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #FFC107, #FFD54F);
        transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    }

    .mobile-nav-link:hover {
        color: #FFC107;
        transform: translateX(10px);
        text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
    }

    .mobile-nav-link:hover::before {
        left: 100%;
    }

    .mobile-nav-link:hover::after {
        width: 100%;
    }

    .mobile-nav-link.active {
        color: #FFC107;
        background: rgba(255, 193, 7, 0.05);
        border-left: 3px solid #FFC107;
    }

    .mobile-nav-link.active::after {
        width: 100%;
    }

    /* Hide hamburger button when menu is open */
    .nav-toggle.active {
        display: none !important;
    }

    /* Responsive adjustments for mobile */
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content .tagline {
        font-size: 1.2rem;
    }

    .overview h2,
    .featured-services h2 {
        font-size: 2rem;
    }

    .header .logo {
        height: 50px;
    }

    .logo img {
        width: 150px;
        height: 50px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in;
}

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

/* AOS Custom Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #FFD54F;
}

/* Page Hero Section - Updated Design */
.page-hero {
    height: 50vh;
    background: linear-gradient(135deg, #1C2526 0%, #2C3E50 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* About Section Styles */
.about-section {
    padding: 5rem 0;
}

.about-section:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse .about-content {
    direction: ltr;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-content ul {
    list-style: none;
    margin-top: 1rem;
}

.about-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-content ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.about-img-small {
    width: 80px;
    height: auto;
}

/* Team Section Styles */
.team-section {
    padding: 5rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.team-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.team-member {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform var(--transition-speed);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    padding: 0 1.5rem;
}

.team-member .position {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.team-member .bio {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* Values Section Styles */
.values-section {
    padding: 5rem 0;
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform var(--transition-speed);
}

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

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }

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

    .about-grid.reverse {
        direction: ltr;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .team-member img {
        height: 250px;
    }
}

/* Services Section Styles */
.services-section {
    padding: 5rem 0;
}

.services-section:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

.services-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.service-features {
    list-style: none;
    text-align: left;
    margin-top: auto;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* CTA Section - Modern Design */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #1C2526 0%, #2C3E50 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--background-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-speed);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-section .cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Responsive Design for CTA Section */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2.2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .cta-section .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Gallery Filter */
.gallery-filter {
    padding: 2rem 0;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--background-color);
}

/* Gallery Grid */
.gallery-grid {
    padding: 2rem 0 4rem;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform var(--transition-speed) ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 1.1rem;
    font-weight: 500;
}

.lb-data .lb-details {
    width: 100%;
    padding: 1rem;
}

.lb-closeContainer {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }

    .gallery-overlay {
        padding: 1rem;
    }

    .gallery-overlay h3 {
        font-size: 1rem;
    }

    .gallery-overlay p {
        font-size: 0.8rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.why-choose-us h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform var(--transition-speed);
}

.feature-card:hover i {
    transform: scale(1.2);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Statistics Section - Modern Design */
.statistics {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--secondary-color), var(--background-color));
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    position: relative;
    transition: all var(--transition-speed);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.stat-item p {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* Enhanced Testimonials */
.testimonial-card {
    position: relative;
    padding: 3rem 2rem 2rem;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.3;
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.client-info cite {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
}

.client-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Latest Projects */
.latest-projects {
    padding: 5rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.latest-projects h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.project-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

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

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform var(--transition-speed);
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.view-project {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all var(--transition-speed);
}

.view-project:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
}

/* Learn More Link - Modern Design */
.learn-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
    z-index: -1;
}

.learn-more:hover {
    color: var(--background-color);
}

.learn-more:hover::before {
    width: 100%;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }

    .project-card img {
        height: 200px;
    }

    .project-info {
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.8);
    }

    .features-grid,
    .stats-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.social-links h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: all var(--transition-speed);
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Form Styles */
.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed);
    position: relative;
    z-index: 1;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-color);
    opacity: 0.7;
    transition: all var(--transition-speed);
    pointer-events: none;
    background: var(--background-color);
    padding: 0 0.5rem;
    z-index: 2;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 2.5px solid #FFC107;
    outline-offset: 2px;
    border-color: #202d3f;
    background-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 0 0 2px #202d3f, 0 0 0 4px #FFC10733;
    z-index: 1;
}

/* Enhanced floating label to prevent outline overlap */
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.9rem;
    left: 0.4rem;
    font-size: 0.8rem;
    background-color: var(--background-color);
    padding: 0 0.7rem;
    color: #FFC107;
    z-index: 3;
    box-shadow: 0 0 0 6px var(--background-color);
    transition: all var(--transition-speed);
}

@media (max-width: 768px) {
    .form-group input:focus + label,
    .form-group textarea:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:not(:placeholder-shown) + label {
        top: -1.1rem;
        left: 0.2rem;
        font-size: 0.8rem;
        padding: 0 0.6rem;
        box-shadow: 0 0 0 6px var(--background-color);
    }
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    width: 100%;
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
    }
}

/* Partners & Slogan Section */
.partners-section {
    background: linear-gradient(135deg, #202d3f 0%, #1a2332 100%);
    padding: 6rem 0 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 193, 7, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 193, 7, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.slogan-block {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.slogan {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.slogan::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFC107, transparent);
    border-radius: 2px;
}

.slogan span {
    color: #FFC107;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
    position: relative;
}

.slogan span::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.08), transparent);
    border-radius: 6px;
    z-index: -1;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.partners-heading {
    font-size: 1.4rem;
    color: #FFC107;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.partners-heading::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #FFC107;
    border-radius: 1px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.partner-logo {
    width: 200px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.6s ease;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.3);
}

.partner-logo:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 4rem 0 3rem 0;
    }
    
    .slogan {
        font-size: 1.4rem;
        font-family: 'Poppins', sans-serif;
        letter-spacing: 1px;
    }
    
    .slogan::after {
        width: 60px;
        height: 2px;
    }
    
    .slogan span::before {
        content: none;
        background: none;
        animation: none;
    }
    
    .partners-heading {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .partners-logos {
        gap: 1.5rem;
    }
    
    .partner-logo {
        width: 140px;
        height: 80px;
        padding: 1rem 1.2rem;
    }
}

/* Enhanced dropdown styling for contact form */
.form-group select {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #000;
    font-size: 1rem;
    transition: all var(--transition-speed);
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.form-group select option {
    background-color: #fff;
    color: #000;
    padding: 0.5rem;
    font-size: 1rem;
}

.form-group select option:first-child {
    color: var(--primary-color);
    font-style: italic;
    font-weight: bold;
}

.form-group select:focus {
    outline: 2.5px solid #FFC107;
    outline-offset: 2px;
    border-color: #202d3f;
    background-color: rgba(255, 255, 255, 0.13);
    box-shadow: 0 0 0 2px #202d3f, 0 0 0 4px #FFC10733;
    z-index: 1;
    color: #000;
} 

.form-group select:invalid {
    color: var(--primary-color);
} 