/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

/* 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;
}

.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: 20px 0;
}

.logo {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #000;
}

.nav-link.active {
    color: #000;
}

.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: #000;
    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 {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
    padding: 18px 60px;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 60px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    width: 10px;
    height: 10px;
}

/* Experts Section */
.experts-section {
    padding: 100px 0;
    background: #fff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

.text-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #000;
}

.text-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 60px;
    margin-bottom: 30px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.link-arrow {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: 15px;
}

.link-arrow::after {
    content: '→';
    font-size: 18px;
}

.image-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: transparent;
    border-radius: 15px;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 500;
    padding: 25px 0 15px;
    color: #000;
}

.service-card p {
    font-size: 14px;
    color: #666;
    padding: 0 0 25px;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: #2d3e50;
    color: #fff;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-section p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-form input {
    padding: 18px 25px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.btn-secondary {
    padding: 18px 40px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: #fff;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.location-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.location-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.location-details p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.location-details strong {
    color: #000;
}

.location-map iframe {
    border-radius: 15px;
    width: 100%;
    height: 400px;
}

/* Footer */
.footer {
    background: #2d3e50;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-form input {
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
}

.footer-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-form button {
    padding: 15px 30px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    background: rgba(255,255,255,0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
}

/* Responsive Design */
@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: 85vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn-primary {
        padding: 16px 40px;
        font-size: 12px;
        width: 100%;
        max-width: 300px;
    }

    .experts-section {
        padding: 60px 0;
    }

    .content-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .text-content {
        order: 1;
    }

    .image-content {
        order: 2;
        width: 100%;
    }

    .text-content h2 {
        font-size: 36px;
    }

    .text-content p {
        color: #999;
    }

    .image-content img {
        width: 100% !important;
        height: auto !important;
        border-radius: 20px !important;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card img {
        height: 200px;
    }

    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-section h2 {
        font-size: 36px;
    }

    .location-section {
        padding: 60px 0;
    }

    .location-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .location-text h2 {
        font-size: 36px;
    }

    .location-text p {
        color: #999;
    }

    .location-map iframe {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-menu.active {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .text-content h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats {
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .hero-dots {
        margin-top: 40px;
    }
}


/* Page Hero */
.page-hero {
    padding: 140px 0 80px;
    background: #fff;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.page-hero p {
    font-size: 16px;
    color: #666;
}

/* Features Combined Section */
.features-combined-section {
    padding: 80px 0;
    background: #fff;
}

.feature-item {
    margin-bottom: 80px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item .feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-item .feature-image img {
    width: 606px;
    height: 306px;
    object-fit: cover;
    border-radius: 20px;
}

.feature-item .feature-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.feature-item .feature-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Large Service Cards */
.services-cards-section {
    padding: 100px 0;
    background: #f8f8f8;
}

.large-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.large-service-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: visible;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 60px;
}

.large-service-card:hover {
    transform: translateY(-10px);
}

.large-service-card img {
    width: 606px;
    height: 304px;
    object-fit: cover;
    border-radius: 20px;
}

.card-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 30px 40px;
    border-radius: 0;
    width: 90%;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.card-overlay p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Stay Connected Section */
.stay-connected-section {
    padding: 100px 0;
    background: #2d3e50;
    color: #fff;
    text-align: center;
}

.stay-connected-section h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.stay-connected-section p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.connected-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.connected-form label {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}

.connected-form input {
    padding: 18px 25px;
    border: 1px solid rgba(255,255,255,0.3);
    background: #fff;
    color: #333;
    border-radius: 8px;
    font-size: 14px;
}

.connected-form input::placeholder {
    color: #999;
}

.btn-dark {
    padding: 18px 40px;
    background: #2d3e50;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #1a2332;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.detail-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contact-form-wrapper {
    background: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form textarea {
    resize: vertical;
}

/* Footer Dark */
.footer-dark {
    background: #2d3e50;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-contact-col h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-contact-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact-col p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-mini-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-mini-form input {
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
}

.footer-mini-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-mini-form button {
    padding: 15px 30px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-mini-form button:hover {
    background: rgba(255,255,255,0.3);
}

/* Responsive for Services Page */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .features-combined-section {
        padding: 50px 0;
    }

    .feature-item {
        margin-bottom: 50px;
    }

    .feature-item .feature-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .feature-item .feature-image img {
        width: 100% !important;
        height: auto !important;
    }

    .feature-item .feature-text h2 {
        font-size: 32px;
    }

    .feature-item .feature-text p {
        color: #999;
    }

    .services-cards-section {
        padding: 60px 0;
    }

    .large-cards-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .large-service-card {
        height: auto;
        margin-bottom: 40px;
    }

    .large-service-card img {
        width: 100% !important;
        height: auto !important;
    }

    .card-overlay {
        position: relative;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        margin-top: -30px;
    }

    .stay-connected-section {
        padding: 60px 0;
    }

    .stay-connected-section h2 {
        font-size: 36px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .contact-info p {
        color: #999;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* Blog Cards Section */
.blog-cards-section {
    padding: 120px 0 80px;
    background: #fff;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-card-content {
    padding: 30px 0;
}

.blog-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    font-size: 12px;
    color: #999;
}

/* Services Dark Section */
.services-dark-section {
    padding: 100px 0;
    background: #2d3e50;
    color: #fff;
}

.services-dark-section .section-title {
    color: #fff;
}

.services-dark-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.services-dark-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-dark-card {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-dark-card:hover {
    transform: translateY(-10px);
}

.service-dark-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
}

.service-dark-content {
    padding: 25px 0;
    text-align: center;
}

.service-dark-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.service-dark-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Stay Connected White */
.stay-connected-white {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.stay-connected-white h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.stay-connected-white p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.connected-white-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.connected-white-form label {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.connected-white-form input {
    padding: 18px 25px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    border-radius: 8px;
    font-size: 14px;
}

.connected-white-form input::placeholder {
    color: #999;
}

.btn-black {
    padding: 18px 40px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background: #333;
}

/* Get in Touch Section */
.get-in-touch-section {
    padding: 100px 0;
    background: #fff;
}

.section-title-center {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #000;
}

.section-subtitle-center {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.touch-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
}

.touch-form-wrapper {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 15px;
    width: 500px;
    min-height: 466px;
    z-index: 2;
}

.touch-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.touch-form label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.touch-form input,
.touch-form textarea {
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #333;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
}

.touch-form input::placeholder,
.touch-form textarea::placeholder {
    color: #999;
}

.touch-form textarea {
    resize: none;
    min-height: 100px;
}

.touch-image {
    margin-top: 65px;
    left: -80px;
    position: relative;
    z-index: 1;
}

.touch-image img {
    width: 503px;
    height: 384px;
    object-fit: cover;
    border-radius: 15px;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .blog-cards-section {
        padding: 100px 0 50px;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-card img {
        height: 250px;
    }

    .services-dark-section {
        padding: 60px 0;
    }

    .services-dark-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-dark-card img {
        height: 200px;
    }

    .stay-connected-white {
        padding: 60px 0;
    }

    .stay-connected-white h2 {
        font-size: 36px;
    }

    .get-in-touch-section {
        padding: 60px 0;
    }

    .section-title-center {
        font-size: 36px;
    }

    .touch-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .touch-form-wrapper {
        width: 100%;
        max-width: 100%;
        min-height: auto;
    }

    .touch-image {
        margin-top: 0;
        margin-left: 0;
        width: 100%;
    }

    .touch-image img {
        width: 100% !important;
        height: auto !important;
    }
}


/* Testimonials Hero */
.testimonials-hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(45, 62, 80, 0.85), rgba(45, 62, 80, 0.85)), url('https://images.unsplash.com/photo-1673348094802-aebab25be499?auto=format&fit=crop&w=1440') center/cover no-repeat;
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
    padding: 40px;
}

.stars {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #fff;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author span {
    font-size: 14px;
    font-weight: 500;
}

/* CRM Main Section */
.crm-main-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.crm-main-section h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.crm-main-section .subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
}

.crm-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.crm-feature-card {
    text-align: center;
}

.crm-feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.crm-feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.crm-feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Stay Magnetically Connected */
.stay-magnetically-connected {
    padding: 100px 0;
    background: #2d3e50;
    color: #fff;
    text-align: center;
}

.stay-magnetically-connected h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.stay-magnetically-connected p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.magnetic-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.magnetic-form label {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}

.magnetic-form input {
    padding: 18px 25px;
    border: 1px solid rgba(255,255,255,0.3);
    background: #fff;
    color: #333;
    border-radius: 8px;
    font-size: 14px;
}

.magnetic-form input::placeholder {
    color: #999;
}

/* Contact Info Section */
.contact-info-section {
    padding: 100px 0;
    background: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info-left h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

.contact-info-left p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-info-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-form label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.contact-info-form input,
.contact-info-form textarea {
    padding: 15px 20px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
}

.contact-info-form input::placeholder,
.contact-info-form textarea::placeholder {
    color: #999;
}

.contact-info-form textarea {
    resize: none;
}

.btn-dark-gray {
    padding: 18px 40px;
    background: #4a5568;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-dark-gray:hover {
    background: #2d3748;
}

/* Responsive for CRM Automation Page */
@media (max-width: 768px) {
    .testimonials-hero {
        padding: 100px 0 50px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .crm-main-section {
        padding: 60px 0;
    }

    .crm-main-section h1 {
        font-size: 36px;
    }

    .crm-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .crm-feature-card img {
        height: 200px;
    }

    .stay-magnetically-connected {
        padding: 60px 0;
    }

    .stay-magnetically-connected h2 {
        font-size: 36px;
    }

    .contact-info-section {
        padding: 60px 0;
    }

    .contact-info-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .contact-info-left h2 {
        font-size: 36px;
    }

    .contact-info-left p {
        color: #999;
    }
}
