
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Poppins', sans-serif; background: #fff; }
        a { text-decoration: none; color: inherit; }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0; width: 100%; z-index: 1000;
            padding: 25px 5%;
            display: flex; align-items: center; justify-content: space-between;
            transition: 0.4s ease;
        }

        header.sticky {
            background: #fff;
            padding: 15px 5%;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        header.sticky .logo, header.sticky .nav-links a { color: #333; }

        .logo { font-size: 1.6rem; font-weight: 800; color: #fff; transition: 0.3s; }

        .nav-links { display: flex; gap: 30px; align-items: center; }
        .nav-links a { font-size: 0.95rem; font-weight: 500; color: #fff; transition: 0.3s; }
        .nav-links a:hover { color: #FFCC00; }

        .btn-cta {
            background: #FFCC00; color: #000 !important;
            padding: 10px 20px; border-radius: 4px; font-weight: 700;
        }

        /* Mobile Menu Toggle */
        .menu-toggle { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
        header.sticky .menu-toggle { color: #333; }

        /* --- HERO BANNER --- */
        .hero-banner {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&q=80&w=2000') no-repeat center center/cover;
            display: flex; align-items: center; padding: 10% 5% 0 5%; color: #fff;
        }

        .container {
            display: flex; justify-content: space-between; align-items: center;
            width: 100%; max-width: 1200px; margin: 0 auto;
        }

        .hero-text { flex: 1; padding-right: 50px; }
        .hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
        #changing-text { color: #FFCC00; border-right: 3px solid #FFCC00; }

        .hero-form {
            background: #fff; padding: 40px; border-radius: 10px; width: 400px;
            color: #333; box-shadow: 0 15px 40px rgba(0,0,0,0.5);
        }

        .hero-form input, .hero-form select {
            width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 5px;
        }

        .hero-form button {
            width: 100%; padding: 15px; background: #FFCC00; border: none; font-weight: 700; cursor: pointer;
        }

        /* --- LOGO IMAGE SECTION (Gourmet Marketing Style) --- */
        .client-logos {
            padding: 60px 5%;
            background: #fdfdfd;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .client-logos h2 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #999;
            margin-bottom: 40px;
        }

        .logo-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 50px;
            opacity: 0.7;
        }

        .logo-grid img {
            max-width: 140px;
            height: auto;
            filter: grayscale(100%); /* Keeps it elegant and professional */
            transition: 0.3s;
        }

        .logo-grid img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
		/* --- MASONRY GALLERY --- */
.portfolio-gallery {
    background: #0b0e13; /* Dark background matching your images */
    padding: 80px 2%;
    overflow: hidden;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100px;
}

/* Stagger effect: making every second column start lower */
.gallery-col:nth-child(even) {
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Overlay Text like Gourmet Marketing */
.gallery-item .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* Always visible in your reference */
}

.gallery-item .overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    background: rgba(0,0,0,0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-col {
        min-width: 100%;
        margin-top: 0 !important;
    }
}
/* --- DROPDOWN STYLES --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Appears right below the link */
    background-color: #fff;
    min-width: 240px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1001;
    text-align: left;
	
	
}

/* THE HOVER BRIDGE: This fills the gap so the menu stays open */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -20px; /* This covers the gap between link and menu */
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Hover State */
.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; /* Allows clicking links */
}
/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
   /* animation: fadeIn 0.3s ease;*/
}

.dropdown-menu li a {
    color: #333 !important; /* Always dark text for readability on white bg */
    padding: 12px 20px;
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    transition: 0.2s;
}

.dropdown-menu li a:hover {
    background-color: #f8f8f8;
    color: #FFCC00 !important;
    padding-left: 25px; /* Subtle slide effect */
}

/* Sticky Header Adjustment */
header.sticky .dropdown-toggle {
    color: #333;
}

/* Fade in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- MEGA MENU STYLES --- */
.dropdown {
    position: static; /* Important: Allows the menu to span the full width */
}


/* Specific fix for Mega Menu positioning */
.mega-dropdown {
    position: static; /* Allows mega menu to be full width of the header */
}

.mega-menu {
	/* Positioning */
        position: absolute;
        top: 75%; /* Sits right below the toggle */
        left: 5%;
		right:5%;
        z-index: 1000;
        
        /* Layout */
        display: flex; 
        gap: 40px;
        width: 90%;
        padding: 30px;
        
        /* Visuals */
        background-color: #ffffff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        border-radius: 8px;
        border: 1px solid #eee;

        /* Hidden State */
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
}


/* Reveal on Hover */
.dropdown:hover .mega-menu {
    display: flex;
    animation: fadeIn 0.3s ease;
}
.mega-col{
	width:33%;
}
.mega-col h3 {
    font-size: 1.1rem;
    color: #FFCC00; /* Signature Yellow */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 10px;
}

.mega-col ul {
    list-style: none;
}

.mega-col ul li {
    margin-bottom: 12px;
}

.mega-col ul li a {
    color: #444 !important;
    font-size: 0.9rem;
    padding: 0 !important;
    transition: 0.3s;
    display: inline-block;
}

.mega-col ul li a:hover {
    color: #FFCC00 !important;
    transform: translateX(5px); /* Subtle slide effect */
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Mobile Adjustments */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        grid-template-columns: 1fr;
        background: transparent;
        box-shadow: none;
        padding: 20px;
    }
    .mega-col h3 { color: #FFCC00; border-color: #444; }
    .mega-col ul li a { color: #fff !important; }
}




/* Header adjustments for sticky state */
header.sticky .dropdown-toggle {
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive adjustment */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        grid-template-columns: 1fr;
        padding: 20px;
        background: transparent;
        box-shadow: none;
    }
    .mega-col h3 { color: #FFCC00; border-color: #444; }
    .mega-col ul li a { color: #fff !important; }
}

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) {
            .menu-toggle { display: block; }
            .nav-links { display: none; } /* In a real site, add a drawer menu here */
            .container { flex-direction: column; text-align: center; padding-top: 80px; }
            .hero-text { padding-right: 0; margin-bottom: 40px; }
            .hero-text h1 { font-size: 2.5rem; }
            .hero-form { width: 100%; }
        }
		
		
		/* --- WHAT WE CAN DO SECTION --- */
.services-section {
    padding: 100px 5%;
    background: #ffcc00;
    text-align: center;
}

.services-header {
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.services-header p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    transition: all 0.4s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #FFCC00;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card .learn-more {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    color: #FFCC00;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* what can we do end*/

/* --- TESTIMONIAL SECTION --- */

/* --- TESTIMONIAL SLIDER --- */
.testimonials-section {
    padding: 100px 5%;
    background: #fdfdfd;
    text-align: center;
    overflow: hidden;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.stars {
    color: #FFCC00;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 30px;
}

.client-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFCC00;
}

.client-info h4 {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 2px;
}

.client-info p {
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #FFCC00;
    transform: scale(1.2);
}


/* --- CONTACT US SECTION  --- */
.contact-section {
    padding: 100px 5%;
    background: #f7f7f7;
    border-top: 1px solid #eee;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 3.2rem;
    color: #222;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: #fdfdfd;
    padding: 50px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.contact-form-wrapper h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 5px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #666;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #FFCC00;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e6b800;
    transform: translateY(-2px);
}

/* --- FOOTER --- */
footer {
    padding: 40px 5%;
    background: #fff;
    border-top: 1px solid #eee;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

@media (max-width: 992px) {
    .contact-container { grid-template-columns: 1fr; gap: 50px; }
    .contact-info h2 { font-size: 2.5rem; }
    .contact-form-wrapper { padding: 30px; }
}

/* ---nav mobile ---*/
/* --- MOBILE NAVIGATION DRAWER --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    padding: 80px 40px;
    transition: 0.4s ease-in-out;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav.active {
    right: 0; /* Slide in */
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mobile-nav .close-menu {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

/* Dark Overlay when menu is open */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* Ensure toggle is visible on small screens */
@media (max-width: 992px) {
    .menu-toggle { 
        display: block !important; 
        color: #fff; 
    }
    header.sticky .menu-toggle { 
        color: #333; 
    }
}
/* nav mobile end */


/* --- FOOTER SECTION --- */
.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 5% 40px;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #FFCC00; /* Your brand gold */
}

.footer-col p {
    line-height: 1.8;
    color: #bbbbbb;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbbbbb;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #FFCC00;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #bbbbbb;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-links a {
    width: 35px;
    height: 35px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social-links a:hover {
    background: #FFCC00;
    color: #1a1a1a;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #777;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


/* --- SOCIAL MEDIA MARKETING PAGE STYLES --- */
.smm-hero {
    padding: 150px 5% 100px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.smm-hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.smm-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; line-height: 1.6; }

.importance-section { padding: 100px 5%; background: #fff; }
.importance-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}

.importance-text h2 { font-size: 2.5rem; margin-bottom: 25px; }
.importance-text p { color: #666; line-height: 1.8; margin-bottom: 20px; }

.smm-features {
    padding: 80px 5%;
    background: #f9f9f9;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.smm-feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.smm-feature-card img { width: 60px; margin-bottom: 20px; }
.smm-feature-card h3 { margin-bottom: 15px; font-size: 1.3rem; }
.smm-feature-card p { color: #777; font-size: 0.95rem; line-height: 1.6; }

.approach-section {
    padding: 100px 5%;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.approach-content { max-width: 900px; margin: 0 auto; }
.approach-content h2 { font-size: 2.8rem; margin-bottom: 30px; color: #FFCC00; }
.approach-content p { font-size: 1.1rem; line-height: 1.9; color: #ccc; margin-bottom: 40px; }

/* --- social media PAGE STYLES end --- */

/* --- ABOUT US PAGE STYLES start--- */
.about-hero {
    padding: 160px 5% 100px;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.about-hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.about-hero p { font-size: 1.2rem; color: #FFCC00; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }

.story-section { padding: 100px 5%; background: #fff; }
.story-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    align-items: center; 
}

.story-text h2 { font-size: 2.5rem; margin-bottom: 30px; color: #222; }
.story-text p { line-height: 1.8; color: #555; margin-bottom: 20px; font-size: 1.05rem; }

.impact-stats {
    background: #fdfdfd;
    padding: 80px 5%;
    display: flex;
    justify-content: space-around;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item h2 { font-size: 3rem; color: #FFCC00; margin-bottom: 10px; }
.stat-item p { text-transform: uppercase; letter-spacing: 1px; color: #888; font-weight: 600; }

.mission-vision {
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    padding: 50px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
}

.mv-card:hover { border-color: #FFCC00; transform: translateY(-5px); }
.mv-card h3 { font-size: 1.8rem; margin-bottom: 20px; color: #222; }

@media (max-width: 992px) {
    .story-container, .mission-vision { grid-template-columns: 1fr; }
    .impact-stats { flex-wrap: wrap; gap: 40px; }
}

/* --- OUR TEAM PAGE STYLES --- */
.team-hero {
    padding: 160px 5% 80px;
    background: #1a1a1a;
    text-align: center;
}

.team-hero h1 { font-size: 3.5rem; color: #FFCC00; margin-bottom: 20px; }
.team-hero p { font-size: 1.1rem; color: #fff; max-width: 700px; margin: 0 auto; line-height: 1.6; }

.team-section { padding: 80px 5%; background: #fff; }
.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: #fff;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.team-img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    margin-bottom: 20px;
}

.team-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.team-card:hover img { transform: scale(1.05); }

.team-info h3 { font-size: 1.4rem; color: #222; margin-bottom: 5px; }
.team-info p { color: #FFCC00; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.team-social a {
    color: #ccc;
    font-size: 0.9rem;
    transition: 0.3s;
    text-decoration: underline;
}

.team-social a:hover { color: #FFCC00; }

.join-us {
    background: #1a1a1a;
    color: #fff;
    padding: 100px 5%;
    text-align: center;
    margin-top: 50px;
}

.join-us h2 { font-size: 2.8rem; margin-bottom: 25px; }
.join-us p { margin-bottom: 40px; color: #ccc; max-width: 600px; margin-left: auto; margin-right: auto; }


/* --- CONTACT PAGE STYLES --- */
.contact-hero {
    padding: 160px 5% 60px;
    background: #1a1a1a;
    text-align: center;
}

.contact-hero h1 { font-size: 3rem; color: #fff; }

.contact-main {
    padding: 60px 5% 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info-box h2 { font-size: 2rem; margin-bottom: 20px; }
.contact-info-box p { color: #666; margin-bottom: 40px; line-height: 1.6; }

.info-item { display: flex; gap: 20px; margin-bottom: 30px; }
.info-icon { 
    width: 50px; height: 50px; background: #FFCC00; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; font-size: 1.2rem;
}

.info-text h4 { font-size: 1.1rem; margin-bottom: 5px; color: #333; }
.info-text p { margin: 0; color: #777; }

/* Contact Form Styling */
.contact-form-container {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.contact-form-container .form-group { margin-bottom: 20px; }
.contact-form-container input, 
.contact-form-container select, 
.contact-form-container textarea {
    width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit;
}

.contact-form-container textarea { height: 150px; }

.btn-contact {
    width: 100%; padding: 18px; background: #FFCC00; border: none;
    border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.3s;
}

.btn-contact:hover { background: #e6b800; transform: translateY(-2px); }

@media (max-width: 992px) {
    .contact-main { grid-template-columns: 1fr; gap: 50px; }
}






