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

html, body {
    width: 100%;
    overflow-x: hidden;
    background-color: #f8f9fa;
    color: #2b2b2b;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.site-header {
    width: 100%;
    background: transparent;
    padding: 30px 6% 20px 6%;
    position: absolute; 
    top: 0;
    left: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background: transparent;
}


.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
}

.header-logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-bold {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
    margin-top: 4px;
}


.navbar {
    display: flex;
    align-items: center;
}

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

.nav-links li {
    position: relative;
    list-style: none;
}

.nav-links a.nav-link,
.nav-links li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.18s ease;
}


.nav-links a.nav-link::before,
.nav-links li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f26522;
    border-radius: 50px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-links a.nav-link:hover,
.nav-links li > a:hover,
.nav-links a.nav-link.active,
.nav-links li > a.active {
    color: #ffffff;
}

.nav-links a.nav-link:hover::before,
.nav-links li > a:hover::before,
.nav-links a.nav-link.active::before,
.nav-links li > a.active::before {
    transform: scaleX(1);
}


.btn-book-call {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; 
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden; 
    border-radius: 30px; 
    z-index: 1;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    border: 2px solid #f27508;
    background: transparent; 
    min-width: 140px;
}

.link-text {
    position: relative;
    z-index: 2;
    pointer-events: none; 
}

.link-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%; 
    aspect-ratio: 1 / 1;
    background: #f27508;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.hover-target:hover .link-bg {
    transform: translate(-50%, -50%) scale(1);
}

.hover-target:hover {
    color: #ffffff; 
}


.mobile-dropdown-header {
    display: flex;
    align-items: center;
}

.mobile-arrow {
    background: none;
    border: none;
    font-size: 0.8rem;
    color: #1e293b;
    cursor: pointer;
    padding: 0 8px 0 2px;
    display: flex;
    align-items: center;
}

@media (min-width: 993px) {
    .mobile-dropdown:hover .mega-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 16px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    min-width: 550px;
}

.mega-dropdown-container {
    display: flex;
    gap: 20px;
}

.mega-column {
    flex: 1;
}

.column-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 6px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.service-item:hover {
    background: #f8fafc;
}

.service-icon {
    font-size: 1.2rem;
    color: #f26522;
}

.service-text strong {
    display: block;
    font-size: 0.85rem;
    color: #1e293b;
}

.service-text span {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
}


.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #1a1a1a;
    cursor: pointer;
}

.mobile-close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #1a1a1a;
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .site-header {
        padding: 20px 5%;
    }

    .mobile-toggle-btn {
        display: block;
    }

    .mobile-close-btn {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        padding: 70px 25px 30px 25px;
        flex-direction: column;
        align-items: flex-start;
        transition: right 0.3s ease;
        z-index: 200;
        overflow-y: auto;
    }

    .navbar.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 10px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a.nav-link, 
    .nav-links li > a {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 16px;
    }

    .mobile-dropdown-header {
        justify-content: space-between;
        width: 100%;
    }

    .mega-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        min-width: 100%;
        display: none;
        padding: 10px 0 10px 15px;
        opacity: 1;
        visibility: visible;
    }

    .mobile-dropdown.active .mega-dropdown {
        display: block;
    }

    .mobile-dropdown.active .mobile-arrow i {
        transform: rotate(180deg);
    }

    .mega-dropdown-container {
        flex-direction: column;
        gap: 15px;
    }

    .btn-book-call {
        width: 100%;
        margin-top: 15px;
    }
}

.hero-section {
    padding-bottom: 20px;
    margin-bottom:0;
    padding: 180px 6% 60px 6%; 
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(rgba(248, 249, 250, 0.85), rgba(248, 249, 250, 0.85)), url('dooodle.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%; 
    align-items: center;
    gap: 20px;
    z-index: 2;
}


.floating-contact-actions {
    position: fixed;
    left: 25px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 99999;
}


.action-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    border-radius: 50%;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.call-btn {
    background-color: #111926;
    box-shadow: 0 8px 20px rgba(17, 25, 38, 0.2);
}

.whatsapp-btn {
    background-color: #1ebd59;
    box-shadow: 0 8px 20px rgba(30, 189, 89, 0.25);
}


.action-btn:hover {
    transform: scale(1.18) translateY(-3px);
}

.call-btn:hover {
    background-color: #f27508;
    box-shadow: 0 10px 25px rgba(242, 117, 8, 0.45);
}

.whatsapp-btn:hover {
    background-color: #1aa64e;
    box-shadow: 0 10px 25px rgba(26, 166, 78, 0.45);
}


.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    animation: iconPulse 2s infinite ease-out;
}

.call-btn .pulse-ring {
    border: 2px solid #111926;
}
.call-btn:hover .pulse-ring {
    border-color: #f27508;
}

.whatsapp-btn .pulse-ring {
    border: 2px solid #1ebd59;
}


.dynamic-icon {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.action-btn:hover .dynamic-icon {
    transform: rotate(15deg) scale(1.1);
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.hero-content h1 {
    font-size: 76px;
    line-height: 1.05;
    font-weight: 800;
    color: #2b2b2b;
    margin-bottom: 30px;
}

.highlight-text-orange {
    background: linear-gradient(135deg, #f2994a 0%, #f7db0c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@media(max-width: 768px){
   .main-nav .nav-links {
        display: none;
   }
   .hero-content h1{
        font-size: 48px;
   }
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #c4683c;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.btn-secondary {
    background-color: transparent;
    color: #555555;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    border: 1px solid #dddddd;
    font-weight: 600;
    display: inline-block;
}

.hero-visual-showcase {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px; 
    overflow: visible;
}

.carousel-3d-stage {
    position: relative;
    width: 270px;
    height: 480px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

.showcase-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 270px;
    height: 480px;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backface-visibility: hidden; 
    transition: opacity 0.6s ease;
}

.hero-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-us-section{
    padding-top: 20px;
    margin-top:0;
}

.features-section {
    position: relative;
    width: 100%;
    background-color: #f8f9fa;
    padding: 80px 8%;
    text-align: center;
}

.features-header h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #f27508;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: rgb(3, 3, 55); 
    box-shadow: 0 2px 10px rgb(4, 4, 101);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #f27508;
}

.logo span {
    color: rgb(217, 225, 232);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #f27508;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: rgb(231, 233, 236);
}

.nav-btn {
    background-color: rgb(183, 189, 195);
    color: #f27508;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: rgb(3, 3, 55);
}

.hero {
    min-height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    background: linear-gradient( rgb(217, 217, 222), rgb(196, 199, 203)), url('this.png') no-repeat center center/cover;
}
.hero-left {
    flex: 1;
    max-width: 650px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title{
    font-size: 48px;
    color: #f27508;
    margin-bottom: 20px;
}

.hero-subtitle{
    font-size: 18px;
    color: #f27508;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-badges{
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-content h1 {
    font-size: 48px;
    color: #f27508;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: #f27508;
    margin: 0 auto 35px auto;
    max-width: 700px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons a {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-phone {
    background-color: rgb(3, 3, 55);
    color: #f27508;
    gap: 8px;
}

.btn-primary {
    background-color: rgb(233, 236, 238);
    color: #f27508;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: rgb(3, 3, 55);
    color: #f27508;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgb(247, 219, 12);
    color: rgb(3, 3, 55);
    border: 2px solid rgb(3, 3, 55);
}

.btn-secondary:hover {
    background-color: rgb(3, 3, 55);
    color: rgb(247, 157, 7);
    border-color: rgb(247, 157, 7);
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    
}

.mockup-placeholder {
    width: 100%;
    max-width: 500px;
}

.services-container {
    padding: 80px 8%;
    background-color: rgb(3, 3, 55);
    text-align: center;
    width: 100%;
}

.section-title {
    font-size: 36px;
    color: rgb(247, 219, 12);
    margin-bottom: 10px;
    width: 100%;
}

.section-subtitle {
    font-size: 16px;
    color: rgb(247, 219, 12);
    margin-bottom: 50px;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.service-card {
    background-color: rgb(3, 3, 55);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid rgb(247, 157, 7);
    transition: all 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgb(238, 157, 7);
}

.service-icon {
    font-size: 40px;
    color: rgb(238, 157, 7);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: rgb(238, 157, 7);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    color: rgb(238, 157, 7);
    line-height: 1.6;
}


.features-section {
    padding: 80px 8%;
    background-color: #f9f9fb;
    text-align: center;
}

.features-header .sub-title {
    color: #ff9f43;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.features-header h2 {
    font-size: 2.5rem;
    color: #1e272e;
    margin-bottom: 15px;
}

.features-header p {
    color: #57606f;
    max-width: 600px;
    margin: 0 auto 50px auto;

}

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

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);

    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: #ff9f43;
    margin-bottom: 20px;
}


.main-footer {
    background-color: #030337;
    color: #ffffff;
    padding: 80px 6% 30px 6%;
    font-family: 'Segoe UI', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    position: relative;
    clear: both;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px ;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    text-align: left;
}

.footer-column h3 {
    font-size: 18px ;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px; 
    color: #f27508;
}

.footer-column ul {
    list-style-type: none;
    padding: 0 ;
    margin: 0;
}

.footer-column ul li {
    font-size: 14px ;
    line-height: 1.6;
    margin-bottom: 12px ;
    color: #cccccc;
}

.footer-column ul li a {
    color: #cccccc; 
    text-decoration: none; 
    transition: color 0.2s ease-in-out; 
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #f27508 ; 
}

.location-bold-title {
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-brand-column{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
}

.footer-logo-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo-img{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-logo-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-brand-title{
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-brand-subtitle{
    font-size: 16px;
    font-weight: 800;
    color: #f27508;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    color: #888888;
    font-size: 13px ;
    margin: 0;
}

@media (max-width: 992px){
    .footer-container{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-brand-column{
        justify-content: flex-start;
        width: 100%;
        margin-top: 20px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual-showcase {
        height: 520px;
    }
}

.portfolio-slider-section {
    padding: 100px 6% 40px 6%;
    background-color: #f8f9fa;
}

.portfolio-slider-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.portfolio-card.header-card {
    flex: 0 0 320px;
    background: #ffffff;
    border: 2px solid #2b2b2b;
    border-radius: 24px;
    height: 480px;
    overflow: hidden;
    position: relative;
}

.header-card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;  
    object-position: center bottom; 
    z-index: 1;
}

.header-card-content.visual-overlay {
    position: relative;
    z-index: 2;      
    height: 100%;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 40%); 
}

.header-card-content.visual-overlay h2 {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    color: #2b2b2b;
    letter-spacing: -1px;
}

.plus-icon-bottom {
    font-size: 24px;
    color: #2b2b2b;
    align-self: flex-start;
}

.portfolio-window {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.portfolio-track{
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 25px 0;
    scrollbar-width: none;
}

.portfolio-track::-webkit-scrollbar{
    display: none;
}

.portfolio-card.item-card {
    flex: 0 0 340px;
    height: 480px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
}

.card-image-wrapper {
    width: 100%;
    height: 82%;
    overflow: hidden;
    position: relative;
    background: #000;
}

.card-image-wrapper img, 
.portfolio-video-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    padding: 20px 25px;
    background: #ffffff;
}

.card-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2b2b2b;
    margin: 0;
}

.card-tag {
    font-size: 13px;
    color: #888888;
}

.portfolio-controls-centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.orange-ctrl-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #f27508;
    background: #ffffff;
    color: #f27508;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(242, 117, 8, 0.15);
    transition: all 0.25s ease-in-out;
}

.orange-ctrl-btn:hover {
    background: #f27508;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(242, 117, 8, 0.35);
    transform: translateY(-2px);
}

.portfolio-anchor-section {
    padding: 20px 6% 100px 6%;
    background-color: #f8f9fa;
    text-align: center;
}

.marquee-text-container {
    overflow: hidden;
    width: 100%;
    background-color: #f7f7f7;
    padding: 40px 0;
    display: flex;
    align-items: center;
}

.marquee-content{
    display: flex;
    white-space: nowrap;
    animation: scroll-text 20s linear infinite;
}

.marquee-content span{
    font-size:8rem;
    font-weight: 800;
    font-family: poppins;
    color: #1a1a1a;
    text-transform: uppercase;
}

.witty-portfolio-link {
    font-size: 17px;
    font-weight: 600;
    color: #f27508;
    text-decoration: none;
    border-bottom: 2px solid #f27508;
    padding-bottom: 5px;
    transition: all 0.2s ease-in-out;
}

.witty-portfolio-link:hover {
    color: #f27508;
    border-bottom-color: #2b2b2b;
}

@media (max-width: 992px) {
    .portfolio-slider-container {
        flex-direction: column;
    }
    .portfolio-card.header-card {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }
    .marquee-content span {
        font-size: 65px;
    }
}

@keyframes scroll-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%); 
  }
}

em:nth-child(12) { animation-delay: 0.60s; }
.brand-item:nth-child(13) { animation-delay: 0.65s; }
.brand-item:nth-child(14) { animation-delay: 0.70s; }
.brand-item:nth-child(15) { animation-delay: 0.75s; }
.brand-item:nth-child(16) { animation-delay: 0.80s; }
.brand-item:nth-child(17) { animation-delay: 0.85s; }
.brand-item:nth-child(18) { animation-delay: 0.90s; }
.brand-item:nth-child(19) { animation-delay: 0.95s; }
.brand-item:nth-child(20) { animation-delay: 1.00s; }


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.homepage-bento-grid-uniform {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.homepage-bento-card {
    position: relative;
    border-radius: 24px;
    min-height: 260px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.3s ease;
}

.homepage-bento-card.dark-card {
    background-color: #1a2436;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.homepage-bento-card.dark-card h3 { color: #ffffff; }
.homepage-bento-card.dark-card p { color: rgba(255, 255, 255, 0.9); }

.homepage-bento-card.light-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.homepage-bento-card.light-card h3 { color: #030337; }
.homepage-bento-card.light-card p { color: #555566; }

.card-inner-layout {
    position: relative;
    z-index: 5;
    padding: 35px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.card-copy h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.card-copy p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}
.brands-section{
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 0 5%;
}


.brands-header .subtitle{
    font-size: 12px;
    font-weight: 700;
    color: #f27508;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-align:center;
}
.brands-header h2{
    margin-bottom: 50px;
    font-weight: 800;
    font-size: 36px;
    color: #2b2b2b;
    text-align: center;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px 30px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    opacity: 0;
    transform: translateY(25px) scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.brand-item.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}


.brand-item img {
    max-width: 130px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-item img:hover {
    transform: scale(1.08);
}

.card-icon-asset {
    font-size: 32px;
    align-self: flex-end;
    transition: transform 0.4s ease;
}

.homepage-bento-card:hover {
    transform: translateY(-8px);
    border-color: #f27508;
    box-shadow: 0 15px 35px rgba(242, 117, 8, 0.25);
    cursor: pointer;
}

.homepage-bento-card:hover .card-icon-asset {
    transform: scale(1.25) rotate(-8deg);
}

.card-glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(242, 117, 8, 0.08), transparent 50%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}
.homepage-bento-card:hover .card-glow-effect {
    opacity: 1;
}

@media (max-width: 1024px) {
    .homepage-bento-grid-uniform {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .homepage-bento-grid-uniform {
        grid-template-columns: 1fr;
    }
}

.trusted-marquee-header{
    width: 100%;
    text-align: center;
    padding-top: 68px;
    margin-bottom:  40px;
}

.trusted-marquee-header h2 {
    font-size: 48px;                 
    font-weight: 800;
    color: #0b0b0b;                  
    letter-spacing: -1px;
    text-transform: capitalize;
    margin: 0;
}

.trusted-marquee-window {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.trusted-marquee-track {
    display: flex;
    gap: 40px;
    padding: 20px 0;
    width: max-content;
    animation: horizontalReviewCrawl 55s linear infinite;
}

@keyframes horizontalReviewCrawl {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trusted-marquee-window:hover .trusted-marquee-track {
    animation-play-state: paused;
}

.trusted-feedback-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 480px; 
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
    flex-shrink: 0;
}

.card-image-side {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #f27508;
}

.card-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    text-align: left;
}

.feedback-text {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.feedback-user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.user-meta h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.user-role {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.feedback-brand-logo {
    height: 30px;
    width: 30px;
    object-fit: cover;
    border-radius: 50%;
}



@media (max-width:768px){



.hero-section{
    padding:130px 20px 60px;
    min-height:auto;
}

.hero-container{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
}

.hero-content h1{
    font-size:42px;
    line-height:1.15;
}

.hero-actions{
    justify-content:center;
    flex-wrap:wrap;
}



.site-header{
    padding:20px;
}

.main-nav .nav-links{
    display:none;
}



.portfolio-slider-container{
    flex-direction:column;
}

.portfolio-card.header-card{
    width:100%;
    height:260px;
    flex:none;
}

.header-card-bg-img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
}

.header-card-content.visual-overlay{
    padding:20px;
    background:linear-gradient(to bottom,
    rgba(255,255,255,.75),
    rgba(255,255,255,.2));
}

.header-card-content.visual-overlay h2{
    font-size:26px;
}

.portfolio-card.item-card{
    flex:0 0 290px;
    height:420px;
}

.card-image-wrapper{
    height:78%;
}



.brands-section{
    margin:60px 0;
}

.brands-grid{
    grid-template-columns:repeat(2,1fr);
    gap:30px 20px;
}

.brand-item{
    opacity:1;
    transform:none;
}

.brand-item img{
    max-width:100px;
}


.marquee-content span{
    font-size:54px;
}



.homepage-bento-grid-uniform{
    grid-template-columns:1fr;
}



.trusted-feedback-card{
    width:320px;
}


.footer-container{
    flex-direction:column;
}

.footer-column{
    width:100%;
}

.footer-brand-column{
    justify-content:center;
}

}

@media(max-width:768px){

.brand-item{
    opacity:1 ;
    transform:none ;
}

}



@media (max-width:992px){

.portfolio-slider-container{
    flex-direction:column;
    gap:30px;
}

.portfolio-card.header-card{
    width:100%;
    height:280px;
}

.header-card-bg-img{
    object-fit:contain;
    object-position:center;
}

.header-card-content.visual-overlay{
    padding:25px;
}

}




@media (max-width:768px){



.portfolio-slider-container{
    flex-direction:column;
    gap:24px;
}

.portfolio-card.header-card{
    width:100%;
    height:240px;
}

.header-card-bg-img{
    object-fit:contain;
    object-position:center;
}

.header-card-content.visual-overlay{
    padding:20px;
}

.portfolio-card.item-card{
    width:100%;
    max-width:340px;
    margin:auto;
}



.brands-grid{
    grid-template-columns:repeat(2,minmax(120px,1fr));
    gap:30px 20px;
}

.brand-item img{
    max-width:110px;
}



}



.ogilvy-team-section {
    max-width: 1300px;
    margin: 60px auto 100px;
    padding: 0 24px;
}


.ogilvy-team-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 20px;
}

.editorial-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: #ff6a00;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 6px;
}

.ogilvy-team-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #111111;
    margin: 4px 0 8px 0;
}

.editorial-sub {
    font-size: 1rem;
    color: #55555e;
    margin: 0 auto;
    max-width: 600px;
}


.ogilvy-asymmetric-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr; 
    gap: 24px;
    align-items: start;
}


.ogilvy-card {
    background: #141519;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.ogilvy-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 106, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}


.ogilvy-image-box {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0d0e12;
}

.ogilvy-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(10%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.ogilvy-card:hover .ogilvy-photo {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.photo-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 21, 25, 0) 35%, rgba(20, 21, 25, 0.92) 100%);
}


.ogilvy-base-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ogilvy-card.active-panel .ogilvy-base-info {
    opacity: 0;
}

.status-badge {
    font-size: 0.68rem;
    font-weight: 800;
    color: #a1a1aa;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 6px;
}

.status-badge.orange {
    color: #ff6a00;
    background: rgba(255, 106, 0, 0.18);
    border: 1px solid rgba(255, 106, 0, 0.3);
}

.member-name {
    color: #ffffff ;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.5px;
}


.ogilvy-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 21, 25, 0.88);
    backdrop-filter: blur(8px);
    z-index: 3;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.ogilvy-card:hover .ogilvy-hover-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.member-role {
    color: #ff6a00;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
    max-width: 75%;
}


.plus-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff6a00;
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.4);
    pointer-events: auto;
}

.plus-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

.plus-toggle-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.1);
}


.ogilvy-details-panel {
    position: absolute;
    inset: 0;
    background: #121316;
    z-index: 10;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.ogilvy-card.active-panel .ogilvy-details-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.panel-tag {
    font-size: 0.65rem;
    font-weight: 800;
    color: #ff6a00;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.close-panel-btn {
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-panel-btn:hover {
    color: #ffffff;
}

.ogilvy-details-panel h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff ;
    margin: 0 0 2px 0;
}

.panel-role {
    font-size: 0.8rem;
    color: #ff6a00;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.panel-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 12px;
}

.panel-bio {
    font-size: 0.82rem;
    color: #d1d1d6;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.panel-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-highlights li {
    font-size: 0.78rem;
    color: #a1a1aa;
    margin-bottom: 4px;
}

.panel-highlights span {
    color: #ffffff;
    font-weight: 700;
}


.founder-col {
    width: 100%;
}

.ceo-featured-card .member-name {
    font-size: 1.6rem;
}


.team-subgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mini-card .member-name {
    font-size: 1.2rem;
}


.mini-card.centered-bottom-card {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: calc(50% - 10px); 
}


@media (max-width: 900px) {
    .ogilvy-asymmetric-grid {
        grid-template-columns: 1fr;
    }
    .founder-col {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .team-subgrid {
        grid-template-columns: 1fr;
    }
    .mini-card.centered-bottom-card {
        grid-column: auto;
        max-width: 100%;
    }
}


.nav-item.dropdown {
    position: relative;
}


.nav-link .arrow-icon {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .arrow-icon {
    transform: rotate(180deg);
}


.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 900px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}


@media (min-width:769px){

.mobile-dropdown:hover > .mega-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

}


.mega-dropdown-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.mega-column {
    flex: 1;
}

.column-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 8px;
}


.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item, 
a.service-item {
  display: flex ;
  align-items: center ;
  gap: 12px ;
  text-decoration: none ;
}

.service-item:hover {
    background-color: #f8fafc;
    transform: translateX(4px);
}


.service-icon {
  display: flex ;
  align-items: center ;
  justify-content: center ;
  width: 42px ;
  height: 42px ;
  min-width: 42px ;
  background-color: #f4f4f6 ;
  border-radius: 8px ;
  margin: 0 ;
  padding: 0 ;
  position: relative ;
}

.service-icon::before {
  display: block ;
  font-size: 16px ;
  line-height: 1 ;
  margin: 0 auto ;
  position: static ;
}
.service-item:hover .service-icon {
    background-color: var(--primary-orange, #f26522);
    color: #ffffff;
    border-color: var(--primary-orange, #f26522);
}


.service-text {
  display: flex;
  flex-direction: column;
}

.service-text strong {
    font-size: 0.92rem;
    color: #1e293b;
    font-weight: 600;
}

.service-text span {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 2px;
}


.mega-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
}

.promo-illustration {
    width: 100%;
    height: auto;
    object-fit: contain;
}


@media (max-width: 992px) {
    .mega-dropdown {
        width: 95vw;
        left: 0;
        transform: translateY(15px);
    }
    
    .nav-item.dropdown:hover .mega-dropdown {
        transform: translateY(0);
    }

    .mega-promo {
        display: none; 
    }
}



@media (max-width: 992px) {
    
    .mega-dropdown {
        position: static;
        width: 100%;
        max-width: 100%;
        transform: none ;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        box-shadow: none;
        border-radius: 0;
        background: #f8fafc; 
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    }

   
    .nav-item.dropdown.mobile-active .mega-dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 1200px; 
        padding: 20px 15px;
    }

    
    .mega-dropdown-container {
        flex-direction: column;
        gap: 20px;
    }

    .mega-column {
        width: 100%;
    }

    .column-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }

   
    .service-item {
        padding: 12px 10px;
    }

    .service-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }

    
    .mega-promo {
        display: none;
    }
}


.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #1e293b;
    cursor: pointer;
    padding: 8px;
}


html, body {
    max-width: 100vw;
    overflow-x: hidden;
}


@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

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

    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        display: none; 
        z-index: 999;
    }

    .navbar.active {
        display: flex; 
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a.nav-link, 
    .nav-links li > a {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
    }

    
    .mega-dropdown {
        position: static ;
        width: 100% ;
        max-width: 100% ;
        transform: none ;
        box-shadow: none ;
        padding: 0 10px ;
        background: #f8fafc;
        border-radius: 10px;
        display: none; 
        opacity: 1 ;
        visibility: visible ;
    }

    
    .nav-item.dropdown.mobile-open .mega-dropdown {
        display: block;
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .mega-dropdown-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5px;
    }

    .mega-column {
        width: 100%;
    }

    .service-item {
        padding: 10px 8px;
    }

    .book-call-btn {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 992px) {
   
    .mobile-menu-btn {
        display: flex ;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        font-size: 1.6rem;
        color: #1e293b;
        cursor: pointer;
        padding: 8px;
        z-index: 1001; 
    }

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

    
    .navbar {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }

    
    .navbar.active {
        display: flex ;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 0;
        margin: 0 0 15px 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a.nav-link {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 10px 14px;
    }

    
    .mega-dropdown {
        display: none;
        position: static ;
        width: 100% ;
        box-shadow: none ;
        background: #f8fafc;
        border-radius: 8px;
        padding: 10px ;
    }

    .nav-item.dropdown.mobile-open .mega-dropdown {
        display: block ;
    }

    .btn-book-call {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    
    .site-header .header-container {
        display: flex ;
        flex-direction: column ;
        align-items: center ;
        width: 100% ;
        padding: 15px 10px ;
        background: transparent ;
    }

    
    .main-nav, 
    #navbar, 
    .navbar {
        display: flex ;
        position: static ;
        flex-direction: column ;
        align-items: center ;
        width: 100% ;
        height: auto ;
        margin-top: 10px ;
        padding: 0 ;
        background: none ;
        background-color: transparent ;
        box-shadow: none ;
        border: none ;
        border-radius: 0 ;
    }

    
    .nav-links,
    .main-nav ul {
        display: flex ;
        flex-direction: row ;
        flex-wrap: wrap ;
        justify-content: center ;
        align-items: center ;
        list-style: none ;
        padding: 0 ;
        margin: 10px 0 ;
        gap: 12px 18px ;
        width: 100% ;
    }

   
    .nav-links li,
    .nav-links a,
    .main-nav a {
        display: inline-flex ;
        align-items: center ;
        font-weight: 600 ;
        font-size: 15px ;
        color: #1a1a1a ;
        text-decoration: none ;
        padding: 0 ;
        background: transparent ;
    }

   
    .btn-book-call {
        display: inline-block ;
        margin-top: 10px ;
        padding: 10px 24px ;
        border: 2px solid #e06c28 ;
        border-radius: 25px ;
        color: #1a1a1a ;
        font-weight: 600 ;
        text-decoration: none ;
        width: auto ;
    }
}


.hamburger{
    display:none;
    width:46px;
    height:46px;
    border:none;
    background:transparent;
    cursor:pointer;
    padding:0;
    position:relative;
    z-index:99999;
}

.hamburger span{
    display:block;
    width:28px;
    height:3px;
    margin:6px auto;
    background:#222;
    border-radius:5px;
    transition:.35s;
}

.hamburger.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

.mobile-arrow{
    display:none;
}


@media screen and (max-width: 768px) {

    
    .desktop-only {
        display: none ;
    }
    
    .mobile-only {
        display: flex ;
        flex-direction: column ;
    }

   
    .site-header .navbar,
    nav#navbar {
        position: fixed ;
        top: 0 ;
        right: -100% ;
        left: auto ;
        width: 85% ;
        max-width: 320px ;
        height: 100vh ;
        background: #ffffff ;
        transition: right 0.35s ease-in-out ;
        overflow-y: auto ;
        padding: 70px 20px 40px 20px ;
        box-sizing: border-box ;
        z-index: 99998 ;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15) ;
    }

    nav#navbar.active {
        right: 0 ;
    }

    
    .nav-links.mobile-only {
        display: flex ;
        flex-direction: column ;
        gap: 12px ;
        width: 100% ;
        padding: 0 ;
        margin: 0 ;
        list-style: none;
    }

    .nav-item {
        width: 100% ;
        margin: 0 ;
        padding: 0 ;
        height: auto ; 
    }

   
    .nav-block,
    .nav-links.mobile-only a:not(.btn-book-call),
    .nav-links.mobile-only li {
        background: transparent ;
        border: none ;
        border-radius: 0 ;
        box-shadow: none ;
        outline: none ;
        height: auto ;
    }

    .nav-block {
        display: flex ;
        align-items: center ;
        justify-content: space-between ;
        width: 100% ;
        padding: 10px 0 ;
        color: #0f172a ;
        text-decoration: none ;
        font-size: 1rem ;
        font-weight: 600 ;
        cursor: pointer ;
        box-sizing: border-box ;
    }

    .block-left {
        display: flex ;
        align-items: center ;
        gap: 12px ;
    }

    .block-icon {
        color: #f26522 ; 
        font-size: 1.1rem ;
        width: 22px ;
        display: flex ;
        align-items: center ;
        justify-content: center ;
    }

    .accordion-toggle {
        font-size: 1.1rem ;
        font-weight: 700 ;
        color: #0f172a ;
        padding-left: 10px ;
    }

    
    .accordion-body {
        display: none ;
        list-style: none ;
        padding: 6px 0 6px 34px ; 
        margin: 0 ;
        width: 100% ;
        box-sizing: border-box ;
    }

    
    .accordion-item.open .accordion-body {
        display: flex ;
        flex-direction: column ;
        gap: 10px ;
    }

    .accordion-body li {
        width: 100% ;
        margin: 0 ;
        padding: 0 ;
    }

    .accordion-body a {
        color: #475569 ;
        text-decoration: none ;
        font-size: 0.9rem ;
        font-weight: 500 ;
        display: block ;
        padding: 4px 0 ;
        transition: color 0.2s ease ;
    }

    .accordion-body a:hover {
        color: #f26522 ;
    }

    
    a.btn-book-call,
    .btn-book-call {
        display: flex ;
        justify-content: center ;
        align-items: center ;
        width: 100% ;
        margin-top: 15px ;
        padding: 14px 0 ;
        background: #f26522 ; 
        color: #ffffff ;
        border-radius: 50px ; 
        text-decoration: none ;
        font-weight: 700 ;
        font-size: 0.95rem ;
        border: none ;
        box-shadow: 0 4px 12px rgba(242, 101, 34, 0.25) ;
    }

    .btn-book-call .link-text {
        color: #ffffff ;
    }

     
    .desktop-only { display: none ; }
    .mobile-only { display: flex ; }

    
    .site-header {
        display: flex ;
        justify-content: space-between ;
        align-items: center ;
        padding: 15px 20px ;
        position: relative ;
        z-index: 1000 ;
    }

    
    nav#navbar,
    .navbar {
        position: fixed ;
        top: 0 ;
        right: -100% ;
        width: 80% ;
        max-width: 320px ;
        height: 100vh ;
        background: #ffffff ;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15) ;
        transition: right 0.3s ease-in-out ;
        z-index: 99999 ;
        padding: 20px ;
        box-sizing: border-box ;
        overflow-y: auto ;
    }

    nav#navbar.active,
    .navbar.active {
        right: 0 ;
    }

    
    .mobile-close-btn {
        position: absolute ;
        top: 15px ;
        right: 20px ;
        background: transparent ;
        border: none ;
        font-size: 28px ;
        line-height: 1 ;
        color: #1a1a1a ;
        cursor: pointer ;
        z-index: 100001 ;
    }

    
    .nav-links.mobile-only {
        flex-direction: column ;
        gap: 12px ;
        width: 100% ;
        margin: 40px 0 20px 0 ;
        padding: 0 ;
        list-style: none ;
    }

    .nav-item {
        width: 100% ;
        list-style: none ;
    }

    .nav-block {
        display: flex ;
        align-items: center ;
        justify-content: space-between ;
        width: 100% ;
        padding: 10px 0 ;
        color: #1e293b ;
        text-decoration: none ;
        font-size: 1rem ;
        font-weight: 600 ;
        cursor: pointer ;
    }

    .block-left {
        display: flex ;
        align-items: center ;
        gap: 12px ;
    }

    .block-icon {
        color: #f26522 ;
        font-size: 1.1rem ;
        width: 20px ;
    }

    .accordion-toggle {
        font-size: 1.2rem ;
        font-weight: 700 ;
        color: #1e293b ;
    }

    
    .accordion-body {
        display: none ;
        flex-direction: column ;
        gap: 8px ;
        padding: 6px 0 8px 32px ;
        width: 100% ;
        box-sizing: border-box ;
    }

   
    .accordion-item.open .accordion-body {
        display: flex ;
    }

    .accordion-body a {
        color: #475569 ;
        text-decoration: none ;
        font-size: 0.9rem ;
        font-weight: 500 ;
        padding: 4px 0 ;
    }

    .accordion-body a:hover {
        color: #f26522 ;
    }

   
    a.btn-book-call {
        display: flex ;
        justify-content: center ;
        align-items: center ;
        width: 100% ;
        padding: 12px 0 ;
        background: #f26522 ;
        color: #ffffff ;
        border-radius: 50px ;
        text-decoration: none ;
        font-weight: 700 ;
        font-size: 1rem ;
        border: none ;
        box-shadow: 0 4px 12px rgba(242, 101, 34, 0.25) ;
    }
}


.mobile-only {
    display: none ;
}

@media screen and (max-width: 768px) {
    .desktop-only {
        display: none ;
    }
    .mobile-only {
        display: flex;
    }
}

/*=============== HAMBURGER & MOBILE MENU ===============*/
.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #1a1a1a;
    cursor: pointer;
}

.mobile-close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #1a1a1a;
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .site-header {
        padding: 20px 5%;
    }

    .mobile-toggle-btn,
    .mobile-close-btn {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        padding: 70px 20px 30px 20px;
        flex-direction: column;
        align-items: flex-start;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .navbar.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 10px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a.nav-link, 
    .nav-links li > a {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 16px;
    }

    
    .mobile-dropdown-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .mobile-arrow {
        background: transparent;
        border: none;
        font-size: 1rem;
        color: #1e293b;
        padding: 10px 15px;
        cursor: pointer;
    }

    .mobile-arrow i {
        transition: transform 0.3s ease;
    }

    
    .mega-dropdown {
        position: static ;
        transform: none ;
        box-shadow: none ;
        min-width: 100% ;
        width: 100% ;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        padding: 0 10px;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
        background: #f8fafc;
        border-radius: 10px;
        margin-top: 5px;
    }

   
    .mobile-dropdown.open .mega-dropdown {
        max-height: 1200px;
        opacity: 1;
        visibility: visible;
        padding: 15px 10px;
    }

    .mobile-dropdown.open .mobile-arrow i {
        transform: rotate(180deg);
    }

    .mega-dropdown-container {
        flex-direction: column;
        gap: 15px;
    }

    .btn-book-call {
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 992px) {
    .site-header {
        padding: 15px 5%;
    }

    .mobile-toggle-btn,
    .mobile-close-btn {
        display: block;
    }

    
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%; 
        max-width: 380px; 
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        padding: 60px 20px 40px 20px;
        flex-direction: column;
        align-items: center; 
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .navbar.active {
        right: 0;
    }

    
    .nav-links {
        flex-direction: column;
        align-items: center; 
        width: 100%;
        gap: 12px;
        text-align: center;
    }

    .nav-links li {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links a.nav-link {
        width: auto;
        justify-content: center;
        text-align: center;
        padding: 10px 20px;
    }

    
    .mobile-dropdown-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        position: relative;
    }

    .mobile-arrow {
        background: transparent;
        border: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
        cursor: pointer;
        color: #1e293b;
    }

    .chevron-icon {
        transition: transform 0.3s ease;
    }

    
    .mega-dropdown {
        position: static ;
        transform: none ;
        left: auto ;
        box-shadow: none ;
        width: 100% ;
        max-width: 320px;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        padding: 0;
        margin: 0 auto; 
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
        background: #f8fafc;
        border-radius: 14px;
        box-sizing: border-box;
    }

    
    .mobile-dropdown.open .mega-dropdown {
        max-height: 1200px;
        opacity: 1;
        visibility: visible;
        padding: 16px;
        margin-top: 10px;
    }

    .mobile-dropdown.open .chevron-icon {
        transform: rotate(180deg);
    }

    .mega-dropdown-container {
        flex-direction: column;
        gap: 18px;
        width: 100%;
        text-align: center;
    }

    .mega-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .column-title {
        text-align: center;
        width: 100%;
    }

    .service-list {
        width: 100%;
        align-items: center;
    }

    .service-item {
        justify-content: center;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .service-text {
        text-align: center;
    }

    .btn-book-call {
        width: 100%;
        max-width: 260px;
        margin-top: 15px;
    }
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #1e272e;
    margin-bottom: 15px;
}

.feature-card p {
    color: #57606f;
    font-size: 0.95rem;
    line-on-height: 1.6;
}


.slideshow-wrapper {
  background-color: #faf9f6;
  color: #1a1a1a;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.slideshow-wrapper * {
  box-sizing: border-box;
}

.slideshow-wrapper .team-section {
  max-width: 1000px;
  width: 100%;
}


.slideshow-wrapper .team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.slideshow-wrapper .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #f1ebd9;
  color: #333333;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.slideshow-wrapper .badge .dot {
  color: #e65c00;
  font-size: 14px;
}

.slideshow-wrapper .title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0;
}

.slideshow-wrapper .title .highlight {
  color: #d85a1a;
}

.slideshow-wrapper .right-col {
  max-width: 320px;
  padding-bottom: 8px;
}

.slideshow-wrapper .description {
  color: #666666;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.slideshow-wrapper .carousel-container {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
}

.slideshow-wrapper .slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slideshow-wrapper .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none; 
}

.slideshow-wrapper .slide.active {
  opacity: 1;
}

.slideshow-wrapper .counter-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  z-index: 100;
}

.slideshow-wrapper .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 9999; 
  pointer-events: all; 
}

.slideshow-wrapper .nav-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.05);
}

.slideshow-wrapper .nav-btn.prev {
  left: 20px;
}

.slideshow-wrapper .nav-btn.next {
  right: 20px;
}


@media (max-width: 768px) {
  .slideshow-wrapper {
    padding: 40px 16px;
  }

  
  .slideshow-wrapper .team-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .slideshow-wrapper .title {
    font-size: 32px; 
  }

  .slideshow-wrapper .right-col {
    max-width: 100%;
  }

  
  .slideshow-wrapper .carousel-container {
    height: 320px; 
  }

  
  .slideshow-wrapper .nav-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .slideshow-wrapper .nav-btn.prev {
    left: 10px;
  }

  .slideshow-wrapper .nav-btn.next {
    right: 10px;
  }

  .slideshow-wrapper .counter-badge {
    top: 12px;
    right: 12px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .slideshow-wrapper .carousel-container {
    height: 240px; 
  }

  .slideshow-wrapper .title {
    font-size: 28px;
  }
}