/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    width: 158px;
    height: 75px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #7c3aed;
}

.nav-link.active {
    color: #000;
    font-weight: 500;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7C3AED, #E9D7FF, #7C3AED, #28243A, #A683FF);
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="blur"><feGaussianBlur stdDeviation="100"/></filter></defs><circle cx="200" cy="200" r="300" fill="rgba(255,255,255,0.1)" filter="url(%23blur)"/><circle cx="800" cy="400" r="400" fill="rgba(255,255,255,0.15)" filter="url(%23blur)"/><circle cx="600" cy="600" r="250" fill="rgba(138,43,226,0.2)" filter="url(%23blur)"/></svg>');
    background-size: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 16px 50px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    max-width: 1000px;
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 0;
    border: none;
    text-align: center;
}

.hero-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Connecting Brands Section */
.connecting-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    color: #333;
}

.connecting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.connecting-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.connecting-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.connecting-image {
    margin-top: 40px;
}

.connecting-image img {
    width: 100%;
    height: 424px;
    object-fit: cover;
    border-radius: 20px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: -30px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.service-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-content {
    background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
    padding: 40px 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: #fff;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-form label {
    font-size: 14px;
    color: #666;
}

.newsletter-form input {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #7c3aed;
}

.btn-submit {
    padding: 16px 40px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: center;
}

.btn-submit:hover {
    background: #333;
}

/* Footer */
.footer {
    background: #2d3748;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-center p,
.footer-center a,
.footer-right label {
    margin-bottom: 15px;
}

.footer-left p,
.footer-center p {
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.8;
}
.footer-center p a{
    font-size: 14px;
    color: #cbd5e0;
    line-height: 1.8;
    text-decoration: none;
}


.footer-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-right input {
    padding: 12px 20px;
    border: 1px solid #4a5568;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.btn-footer {
    padding: 12px 30px;
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.btn-footer:hover {
    background: #6d28d9;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    font-size: 13px;
    color: #cbd5e0;
}

/* Responsive */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        max-height: 400px;
        padding: 30px 60px;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 0;
        width: 100%;
        text-align: right;
    }
    
    .nav-link.active::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        margin-top: 80px;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    
    .connecting-section,
    .services-section,
    .newsletter-section {
        padding: 60px 0 !important;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .connecting-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    .connecting-text p {
        color: #999;
    }
    
    .connecting-image img {
        height: auto !important;
        border-radius: 20px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .nav-menu.active {
        padding: 30px 25px;
    }
}


/* Projects Section */
.projects-section {
    padding: 120px 0 100px;
    background: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.project-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    
    
}



.project-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.project-content {
    padding: 30px;
    position: relative;
    background: transparent;
}

.project-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #333;
}

.project-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-arrow {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.project-arrow:hover {
    transform: translateX(5px);
}

/* Brands Media Section */
.brands-media-section {
    padding: 100px 0;
    background: #fff;
}

.brands-media-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.brands-media-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.brands-media-text h2 {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
    grid-column: 1 / -1;
}

.brands-media-text > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 600;
    color: #7c3aed;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 15px;
    color: #666;
}

.brands-media-image {
    width: 100%;
    border-radius: 15px;
}

.brands-media-image img {
    width: 100%;
    height: 424px;
    object-fit: cover;
    border-radius: 15px;
}

/* Media Outreach Dark Section */
.media-outreach-dark {
    padding: 100px 0;
    background: #2d3748;
}

.section-title-white {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.section-subtitle-white {
    text-align: center;
    font-size: 16px;
    color: #cbd5e0;
    margin-bottom: 60px;
}

.outreach-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-radius: 15px 15px 0 0;
}

.outreach-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
     border-radius: 15px 15px 0 0;
}

.outreach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.outreach-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-radius: 15px 15px 0 0;
}

.outreach-content {
    padding: 30px 25px;
}

.outreach-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.outreach-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-map iframe {
    border-radius: 0;
}

.location-info h2 {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.location-info > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.location-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    margin-top: 25px;
}

.location-details h4:first-child {
    margin-top: 0;
}

.location-details p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Responsive for Media Outreach Page */
@media (max-width: 768px) {
    .projects-section {
        padding: 100px 0 60px !important;
        min-height: auto !important;
    }
    
    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .brands-media-grid {
        gap: 40px !important;
    }
    
    .brands-media-text {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .brands-media-text h2 {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .brands-media-image {
        width: 100% !important;
    }
    
    .brands-media-image img {
        height: auto !important;
    }
    
    .outreach-cards {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .location-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .location-map iframe {
        height: 300px !important;
    }
}


/* SEO Authority Section */
.seo-authority-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
}

.seo-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.seo-card {
    background: transparent;
    border-radius: 15px;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.seo-card:hover {
    transform: translateY(-5px);
}

.seo-image {
    border-radius: 15px;
    overflow: hidden;
}

.seo-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.seo-content {
    background: #fff;
    padding: 30px 35px;
    text-align: center;
    max-width: 70%;
    margin: -60px auto 0;
    position: relative;
    z-index: 2;
    border-radius: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.seo-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.seo-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Connecting Brands Globally Section */
.brands-globally-section {
    padding: 100px 0;
    background: #fff;
}

.brands-globally-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brands-globally-text h2 {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.brands-globally-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-get-started {
    display: inline-block;
    padding: 16px 45px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border: 2px solid #333;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-get-started:hover {
    background: #333;
    color: #fff;
}

.brands-globally-image {
    position: relative;
}

.brands-globally-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.stats-overlay {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: #7c3aed;
    padding: 35px 55px;
    border-radius: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.stat-item-overlay h3 {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item-overlay p {
    font-size: 14px;
    color: #fff;
    opacity: 0.95;
}

/* Responsive for SEO Authority Page */
@media (max-width: 768px) {
    .projects-section {
        padding: 100px 0 60px !important;
        min-height: auto !important;
    }
    
    .seo-cards {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .brands-globally-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .brands-globally-text h2 {
        font-size: 32px;
    }
    
    .brands-globally-image img {
        height: auto !important;
    }
    
    .stats-overlay {
        position: static !important;
        margin-top: 20px;
        padding: 25px 30px !important;
        gap: 30px !important;
    }
    
    .location-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}


/* Services Distribution Section */
.services-distribution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
}

.services-distribution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-distribution-card {
    background: transparent;
    text-align: left;
}

.service-distribution-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.service-distribution-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-distribution-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Responsive for Content Distribution Page */
@media (max-width: 768px) {
    .projects-section {
        padding: 100px 0 60px !important;
        min-height: auto !important;
    }
    
    .services-distribution-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}


/* Contact Section */
.contact-section {
    padding: 120px 0 100px;
    background: #fff;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-info h1 {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 60px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.contact-form-wrapper {
    background: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #7c3aed;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-send-message {
    padding: 16px 45px;
    background: #7c3aed;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
    font-family: 'Outfit', sans-serif;
}

.btn-send-message:hover {
    background: #6d28d9;
}

/* Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-section {
        padding: 100px 0 60px !important;
        min-height: auto !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    
    .contact-info h1 {
        font-size: 36px;
    }
    
    .contact-info > p {
        margin-bottom: 40px;
    }
    
    .btn-send-message {
        width: 100%;
    }
}
