/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Navigation Overlay */
.navbar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar-overlay.is-sticky {
    position: fixed;
    background: #ffffff;
    padding: 0.9rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar-overlay .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}

/* Override Bootstrap's navbar-toggler hiding on desktop */
.navbar-overlay .navbar-toggler,
.navbar-overlay .custom-toggler {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

@media (min-width: 992px) {
    .navbar-overlay .navbar-toggler,
    .navbar-overlay .custom-toggler {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img-overlay {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.custom-toggler {
    background: #f5f5f5;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    margin-left: auto;
    visibility: visible !important;
    opacity: 1 !important;
}

.custom-toggler:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: scale(1.05);
}

.navbar-toggler-icon-custom {
    display: flex;
    flex-direction: column;
    
    height: 18px;
    justify-content: space-between;
}

.navbar-toggler-icon-custom span {
    display: block;
    height: 2.5px;
    width: 20px;
    background: #c11c22;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.custom-toggler.active .navbar-toggler-icon-custom span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.custom-toggler.active .navbar-toggler-icon-custom span:nth-child(2) {
    opacity: 0;
}

.custom-toggler.active .navbar-toggler-icon-custom span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 126, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-content {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

.nav-overlay-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-overlay-close:hover {
    background: rgba(255,255,255,0.1);
    transform: rotate(90deg);
}

.nav-overlay-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-overlay-menu li {
    margin: 1.5rem 0;
}

.nav-overlay-menu li a {
    color: #fff !important;
    font-size: 2rem!important;
    font-weight: 600!important;
    text-decoration: none!important;
    display: inline-block!important;
    transition: all 0.3s ease!important;
    position: relative!important;
}

.nav-overlay-link:hover {
    color: #ffd700;
    transform: translateX(10px);
}

.nav-dropdown-menu-overlay {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-dropdown-overlay.active .nav-dropdown-menu-overlay {
    max-height: 500px;
}

.nav-dropdown-menu-overlay li {
    margin: 0.8rem 0;
}

.nav-dropdown-menu-overlay .nav-overlay-link {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
}

.dropdown-toggle-overlay {
    cursor: pointer;
}

.dropdown-toggle-overlay i {
    font-size: 1rem;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown-overlay.active .dropdown-toggle-overlay i {
    transform: rotate(180deg);
}

/* Hero Section */
.hero-section {
    background: #ffeb3b;
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.05) 100px,
            rgba(255, 255, 255, 0.05) 200px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(255, 255, 255, 0.05) 100px,
            rgba(255, 255, 255, 0.05) 200px
        );
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.innovate-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 250px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 3px rgba(255, 255, 255, 0.15);
    text-stroke: 3px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 40px;
    opacity: 0.4;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    z-index: 2;
    animation: floatText 20s ease-in-out infinite;
}

@keyframes floatText {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.hero-brand {
    margin-bottom: 2rem;
}

.hero-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title-main {
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 1rem;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.7);
    letter-spacing: 0;
    max-width: 1100px;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffeb3b;
    margin: 0 0 2rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.hero-tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #ffeb3b;
    animation: expandLine 1s ease-out 1.2s both;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.hero-description-text {
    margin: 0 0 3rem;
    max-width: 600px;
}

.hero-description-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
    font-weight: 300;
}

.hero-cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta-btn {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.hero-cta-btn.primary {
    background: #c11c22;
    color: #fff;
    border: 2px solid #c11c22;
    box-shadow: 0 4px 20px rgba(193, 28, 34, 0.4);
}

.hero-cta-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s ease;
}

.hero-cta-btn.primary:hover::before {
    left: 100%;
}

.hero-cta-btn.primary:hover {
    background: #a0161c;
    border-color: #a0161c;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(193, 28, 34, 0.5);
    color: #fff;
}

.hero-cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    backdrop-filter: blur(10px);
}

.hero-cta-btn.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    transition: width 0.4s ease;
    z-index: -1;
}

.hero-cta-btn.secondary:hover::before {
    width: 100%;
}

.hero-cta-btn.secondary:hover {
    color: #c11c22;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}


/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.whatsapp-link {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(0,0,0,0.3);
    padding: 5px 10px;
    border-radius: 15px;
    white-space: nowrap;
}

.btn-primary {
    background-color: #c11c22;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #a0161c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 28, 34, 0.4);
}

.btn-outline-primary {
    border: 2px solid #c11c22;
    color: #c11c22;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #c11c22;
    color: #fff;
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.about-section-compact {
    padding: 72px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.about-content {
    padding-right: 2rem;
}

.about-content-compact {
    max-width: 780px;
    margin: 0 auto;
    padding-right: 0;
}

.about-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c11c22;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
  
}

/* .about-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: #c11c22;
} */

.about-content-compact .about-label {
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
}

.about-content-compact .about-label::before {
    display: none;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c11c22, #ffeb3b);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.about-tagline {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.about-text {
    margin-bottom: 2.5rem;
}

.about-content-compact .about-text {
    margin-bottom: 1.5rem;
}

.about-subheading {
    font-size: 1rem;
    font-weight: 700;
    color: #c11c22;
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-content-compact .about-features {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.about-feature-item i {
    color: #c11c22;
    font-size: 1.1rem;
}

.about-content-compact .about-feature-item {
    background: #fff;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.about-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #c11c22;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid #c11c22;
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s ease;
}

.about-btn:hover::before {
    left: 100%;
}

.about-btn:hover {
    background: #a0161c;
    border-color: #a0161c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 28, 34, 0.3);
    color: #fff;
}

.about-content-compact .about-btn {
    margin-top: 0.5rem;
}

.about-section-rich {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(193, 28, 34, 0.12), transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.about-section-rich::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 235, 59, 0.06), transparent 30%);
    pointer-events: none;
}

.about-copy-panel {
    position: relative;
    z-index: 1;
}

.about-copy-panel {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(193, 28, 34, 0.08);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.about-title-divider {
    margin-bottom: 1.2rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: stretch;
}

.about-stat-card {
    background: linear-gradient(180deg, #fffdf8 0%, #fdf5e6 100%);
    border: 1px solid rgba(236, 180, 75, 0.22);
    border-radius: 28px;
    padding: 1.35rem 1.35rem 1.2rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 0.35rem;
    align-items: start;
    align-content: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 30px;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-stat-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background: linear-gradient(135deg, #c11c22, #ff5b63);
    color: #fff;
    font-size: 1.55rem;
    box-shadow: 0 12px 24px rgba(193, 28, 34, 0.22);
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
}

.about-stat-card strong {
    display: block;
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 0;
    line-height: 1.2;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-top: 0.1rem;
}

.about-stat-card p {
    margin: 0;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.75;
    grid-column: 2;
    grid-row: 2;
    align-self: start;
}

.about-service-callout {
    display: flex;
    gap: 1.1rem;
    align-items: center;
    padding: 1.35rem 1.4rem;
    border-radius: 24px;
    background: linear-gradient(180deg, #fffaf0 0%, #fdf4df 100%);
    border: 1px solid rgba(236, 180, 75, 0.25);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
    margin: 0 0 1.4rem;
}

.about-service-callout-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    color: #c11c22;
    font-size: 1.8rem;
    box-shadow: 0 12px 24px rgba(193, 28, 34, 0.1);
}

.about-service-callout-copy {
    flex: 1;
}

.about-service-callout-copy h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.7rem;
    line-height: 1.15;
}

.about-service-callout-copy p {
    margin: 0;
    color: #555;
    line-height: 1.8;
    font-size: .98rem;
}

.about-service-callout .about-spotlight-label {
    font-size: 0.86rem;
    letter-spacing: 2px;
    margin-bottom: 0.55rem;
}

.about-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.3rem;
}

.about-tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(193, 28, 34, 0.12);
    color: #333;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.about-label-center {
    padding-left: 0;
}

.about-label-center::before {
    display: none;
}

.about-section-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0;
}

.about-highlight-bar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #c11c22, #a0161c);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(193, 28, 34, 0.25);
    margin-bottom: 1.3rem;
}

.about-highlight-bar i {
    font-size: 1.1rem;
}

.about-service-spotlight {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(193, 28, 34, 0.08), rgba(255, 235, 59, 0.12));
    border: 1px solid rgba(193, 28, 34, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.about-spotlight-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    color: #c11c22;
    font-size: 1.8rem;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.about-spotlight-copy {
    flex: 1;
}

.about-spotlight-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #c11c22;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-spotlight-copy h3 {
    font-size: 1.55rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.7rem;
}

.about-spotlight-copy p {
    margin: 0;
    color: #555;
    line-height: 1.8;
}

.about-info-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.45rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.06);
}

.about-info-card-accent {
    background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}

.about-info-card h4 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-info-card h4 i {
    color: #c11c22;
}

.about-info-list,
.about-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.about-info-list li,
.about-check-list li {
    position: relative;
    padding-left: 1.35rem;
    color: #444;
    line-height: 1.6;
}

.about-info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #c11c22;
    font-size: 1.25rem;
    line-height: 1;
}

.about-check-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: #c11c22;
    font-size: 1rem;
}

.about-why-card {
    height: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 1.6rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.1);
}

.about-why-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.22);
}

.about-why-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.7rem;
}

.about-why-card p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}

.about-image-wrapper {
    position: relative;
    padding-left: 2rem;
}

.about-image-wrapper-full {
    padding-left: 0;
    height: 100%;
    width: 100%;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
    border-radius: 20px;
}

.about-image-full {
    width: 100%;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.about-image-full img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-image-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #c11c22, #ffeb3b);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: floatDecoration 6s ease-in-out infinite;
}

@keyframes floatDecoration {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #c11c22 0%, #a0161c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* New Services Section */
.services-section-new {
    padding: 80px 0;
    background: #2a2a2a;
}

.services-title-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
}

.service-card-new {
    background: #fff;
    border-radius: 15px;
    min-height: 350px;
    perspective: 1000px;
    position: relative;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card-new:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-new:hover {
    background: #c11c22;
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.service-card-front {
    background: transparent;
}

.service-card-back {
    background: transparent;
    transform: rotateY(180deg);
    justify-content: center;
}

.service-card-new:hover .service-card-back .service-name-new {
    color: #fff;
}

.service-card-new:hover .service-card-back .service-description {
    color: #fff;
}

.service-description {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.btn-outline-dark {
    border: 2px solid #333;
    color: #333;
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-card-new:hover .service-card-back .btn-outline-dark {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-dark:hover {
    background: #fff;
    color: #c11c22;
    border-color: #fff;
}

.service-laptop-illustration {
    position: relative;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.laptop-screen {
    width: 200px;
    height: 140px;
    background: #fff;
    border-radius: 8px 8px 0 0;
    border: 3px solid #333;
    border-bottom: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px;
    gap: 10px;
}

.laptop-screen::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 8px;
    background: #333;
    border-radius: 0 0 8px 8px;
}

.service-screen-icon {
    font-size: 1.5rem;
    color: #333;
    position: relative;
    z-index: 2;
}

.service-icon-red {
    color: #e53935;
}

.service-icon-green {
    color: #4caf50;
}

.service-icon-yellow {
    color: #ffc107;
}

.service-icon-blue {
    color: #2196f3;
}

.service-icon-colorful {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #ffe66d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Digital Creations Section */
.creations-section {
    padding: 80px 0;
    background: #faf5ff;
}

.creations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.creations-carousel-wrapper {
    position: relative;
}

.creation-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.creation-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.btn-creations-more {
    display: inline-block;
    padding: 14px 40px;
    background: #c11c22;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    box-shadow: 0 12px 30px rgba(193, 28, 34, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-creations-more:hover {
    background: #a0161c;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(193, 28, 34, 0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .creation-card img {
        height: 260px;
    }
}

@media (max-width: 576px) {
    .creation-card img {
        height: 220px;
    }
}

.laptop-tripod {
    width: 4px;
    height: 40px;
    background: #333;
    margin-top: -5px;
    position: relative;
}

.laptop-tripod::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: #333;
}

.service-name-new {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
    transition: color 0.3s ease;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: #fff;
}

.clients-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    border: 1px solid #e0e0e0;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0;
}

.client-logo-item {
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem;
    transition: all 0.3s ease;
    position: relative;
}

.client-logo-item:hover {
    background: #f9f9f9;
    z-index: 1;
}

.client-logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 1rem;
}

.client-logo {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.client-logo-item:hover .client-logo {
    transform: scale(1.05);
    filter: grayscale(0);
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background: #fafafa;
}

.case-studies-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.case-study-card-new {
    background: #1a237e;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.case-study-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.case-study-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 3px, transparent 3px);
    background-size: 50px 50px, 60px 60px, 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.case-study-logo-circle {
    position: relative;
    width: 100%;
    padding: 3rem 2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.case-study-logo-wrapper {
    width: 200px;
    height: 200px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.case-study-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.case-study-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    position: relative;
}

.case-study-campaign {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1;
}

.case-study-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2rem 0;
    opacity: 0.9;
}

.case-study-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.case-study-button {
    background: #25d366;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
}

.case-study-button:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.case-study-button i {
    font-size: 1rem;
}

/* Influencer Section */
.influencer-section {
    padding: 80px 0;
}

.video-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.video-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #c11c22 0%, #a0161c 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #a0161c 0%, #c11c22 100%);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 20px;
    text-align: center;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #c11c22;
    font-weight: 500;
}

/* Culture Section */
.culture-section {
    background: #f4f1ff;
    position: relative;
    overflow: hidden;
}

.culture-header {
    padding: 80px 0 40px;
}

.culture-title-text {
    font-size: 4rem;
    font-weight: 800;
    color: #333;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.culture-subtitle-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.culture-wave {
    position: relative;
    height: 70px;
    overflow: hidden;
    margin-top: 0;
    z-index: 2;
}

.culture-wave svg {
    width: 200%;
    height: 100%;
    fill: #f4f1ff;
    animation: shape 10s ease-in-out infinite;
}

.culture-carousel-wrapper {
    background: #fff;
    position: relative;
    z-index: 1;
    margin-top: -35px;
}

@keyframes shape {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

.culture-image-card {
    position: relative;
    overflow: hidden;
}

.culture-image-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.culture-carousel-wrapper .owl-carousel .owl-item {
    padding: 0;
}

.culture-carousel-wrapper .owl-nav {
    margin-top: 0;
}

.culture-carousel-wrapper .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9) !important;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b2a6f !important;
    font-size: 1.2rem;
}

.culture-carousel-wrapper .owl-nav .owl-prev {
    left: 20px;
}

.culture-carousel-wrapper .owl-nav .owl-next {
    right: 20px;
}

.culture-carousel-wrapper .owl-dots {
    display: none;
}

@media (max-width: 768px) {
    .culture-header {
        padding: 60px 0 30px;
        text-align: center;
    }

    .culture-title-text {
        font-size: 2.5rem;
    }

    .culture-subtitle-text {
        font-size: 1.2rem;
    }

    .culture-image-card img {
        height: 260px;
    }
}

@media (max-width: 576px) {
    .culture-title-text {
        font-size: 2rem;
    }

    .culture-subtitle-text {
        font-size: 1rem;
    }

    .culture-image-card img {
        height: 220px;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #c11c22 0%, #a0161c 100%);
    color: #fff;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #c11c22;
    transform: translateY(-2px);
}

/* Knowledge Section */
.knowledge-section {
    background: #fafafa;
}

.knowledge-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.knowledge-tabs {
    display: inline-flex;
    border-radius: 8px;
    padding: 4px;
    background: #ece9ff;
    margin: 0 auto 2rem;
}

.knowledge-tab {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    color: #c11c22;
    cursor: pointer;
    transition: all 0.3s ease;
}

.knowledge-tab.active {
    background: #c11c22;
    color: #fff;
    box-shadow: 0 8px 20px rgba(123, 63, 242, 0.4);
}

.knowledge-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.knowledge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.knowledge-image img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.knowledge-body {
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.knowledge-post-title {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.knowledge-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.85rem;
    color: #777;
}

.knowledge-meta i {
    margin-right: 6px;
    color: #c11c22;
}

.knowledge-view-all-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 40px;
    background: #fff;
    color: #c11c22;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
}

.knowledge-view-all-btn:hover {
    background: #c11c22;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(123, 63, 242, 0.5);
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-top {
    padding: 80px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-icon:hover {
    background: linear-gradient(135deg, #c11c22 0%, #a0161c 100%);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(193, 28, 34, 0.4);
    color: #fff;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c11c22, #a0161c);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

/* .footer-links a::before {
    content: 'â†’';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #c11c22;
} */

.footer-links a:hover {
    color: #fff;
    padding-left: 15px;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: #c11c22;
    font-size: 1.1rem;
    margin-top: 4px;
    min-width: 20px;
}

.footer-contact li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact li a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    padding: 25px 0;
    background: rgba(0,0,0,0.2);
}

.footer-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-legal .separator {
    color: rgba(255,255,255,0.3);
}

#currentYear {
    color: #c11c22;
    font-weight: 600;
}

/* Owl Carousel Customization */
.owl-carousel .owl-item {
    padding: 10px;
}

.owl-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.owl-carousel .owl-nav button {
    background: #c11c22 !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
    background: #a0161c !important;
    transform: scale(1.1);
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dots button.owl-dot.active {
    background: #c11c22 !important;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-logo {
        max-width: 150px;
    }
    
    .hero-title-main {
        font-size: 3.5rem;
        letter-spacing: 0;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
        letter-spacing: 4px;
    }
    
    .hero-description-text p {
        font-size: 1.1rem;
    }
    
    .hero-cta-buttons {
        gap: 1rem;
    }
    
    .hero-cta-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
    
    .innovate-text {
        font-size: 150px;
        letter-spacing: 20px;
    }
    
    .nav-overlay-link {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .hero-section::after {
        background: rgba(0, 0, 0, 0.6);
    }
    
    .hero-logo {
        max-width: 120px;
        margin-bottom: 1.5rem;
    }
    
    .hero-title-main {
        font-size: 2.4rem;
        letter-spacing: 0;
        margin-bottom: 0.8rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 3px;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }
    
    .hero-tagline::after {
        width: 60px;
    }
    
    .hero-description-text {
        margin-bottom: 2rem;
    }
    
    .hero-description-text p {
        font-size: 1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    
    .innovate-text {
        font-size: 100px;
        letter-spacing: 10px;
    }
    
    .logo-img-overlay {
        height: 40px;
    }
    
    .navbar-overlay {
        padding: 1rem 1.5rem;
    }
    
    .custom-toggler {
        width: 45px;
        height: 45px;
    }
    
    .nav-overlay-link {
        font-size: 1.3rem;
    }
    
    .nav-dropdown-menu-overlay .nav-overlay-link {
        font-size: 1.1rem;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .whatsapp-text {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-tagline {
        font-size: 1rem;
    }

    .about-service-callout-copy h3 {
        font-size: 1.35rem;
    }

    .about-service-callout {
        padding: 1.25rem;
    }
    
    .about-features {
        gap: 1rem;
    }

    .about-content-compact {
        max-width: 700px;
    }

    .about-copy-panel {
        padding: 2rem;
    }

    .about-service-callout {
        padding: 1.1rem 1.15rem;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .about-image-wrapper {
        padding-left: 0;
    }

    .about-section-compact {
        padding: 56px 0;
    }
    
    .about-content-compact {
        margin-bottom: 0;
    }
    
    .about-content-compact .about-features {
        flex-direction: column;
        gap: 0.8rem;
    }

    .about-copy-panel {
        padding: 1.6rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-service-callout {
        flex-direction: column;
    }

    .about-service-callout-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .about-service-callout-copy h3 {
        font-size: 1.2rem;
    }

    .about-service-tags {
        gap: 0.55rem;
    }

    .about-tag-pill {
        width: 100%;
        justify-content: center;
    }

    .about-copy-panel,
    .about-info-card,
    .about-service-callout {
        border-radius: 20px;
    }

    .about-image-wrapper-full {
        padding-left: 0;
    }

    .about-section-subtitle {
        font-size: 1.3rem;
    }
    
    .about-image-decoration {
        width: 150px;
        height: 150px;
        top: -20px;
        right: -20px;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .services-title-new {
        font-size: 2rem;
    }
    
    .service-card-new {
        min-height: 300px;
    }
    
    .service-card-inner {
        min-height: 300px;
    }
    
    .service-card-front,
    .service-card-back {
        padding: 2rem 1rem;
    }
    
    .laptop-screen {
        width: 180px;
        height: 120px;
    }
    
    .laptop-screen::after {
        width: 200px;
    }
    
    .service-name-new {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    
    .clients-title {
        font-size: 2rem;
    }
    
    .client-logo {
        max-height: 80px;
    }
    
    .case-studies-title {
        font-size: 2rem;
    }
    
    .case-study-campaign {
        font-size: 2.5rem;
    }
    
    .case-study-text {
        font-size: 1.3rem;
    }
    
    .case-study-logo-wrapper {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }

    .about-section-compact {
        padding: 44px 0;
    }
    
    .about-title {
        font-size: 1.9rem;
    }
    
    .about-tagline {
        font-size: 0.95rem;
    }

    .about-copy-panel {
        padding: 1.4rem;
    }

    .about-copy-panel,
    .about-info-card,
    .about-service-callout {
        border-radius: 18px;
    }

    .about-stats-grid {
        gap: 0.8rem;
    }

    .about-stat-card {
        padding: 1rem;
        min-height: auto;
        grid-template-columns: 64px 1fr;
    }

    .about-stat-icon {
        width: 64px;
        height: 64px;
        font-size: 1.35rem;
    }

    .about-stat-card p {
        font-size: 0.88rem;
    }

    .about-service-tags {
        gap: 0.55rem;
    }

    .about-tag-pill {
        width: 100%;
        justify-content: center;
    }

    .about-service-callout-copy h3 {
        font-size: 1.15rem;
    }

    .about-service-callout {
        padding: 1rem;
    }

    .about-subheading {
        font-size: 0.85rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .about-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .about-image-decoration {
        width: 120px;
        height: 120px;
        top: -15px;
        right: -15px;
    }
    
    .hero-logo {
        max-width: 100px;
        margin-bottom: 1rem;
    }

    .hero-title-main {
        font-size: 2rem;
    }

    .about-content-compact .about-feature-item {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   PAGE HEADER SECTION (Common for all pages)
   ============================================ */
.page-header-section {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, #c11c22 0%, #a0161c 100%);
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-breadcrumb {
    margin-top: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: rgba(255, 255, 255, 0.6);
    padding: 0 0.5rem;
}

.page-content-section {
    background: #fff;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c11c22, #ffeb3b);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.mission-vision-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border-top: 4px solid #c11c22;
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(193, 28, 34, 0.15);
}

.mission-vision-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c11c22, #ffeb3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-vision-icon i {
    font-size: 2rem;
    color: #fff;
}

.mission-vision-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.mission-vision-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: #c11c22;
    box-shadow: 0 10px 30px rgba(193, 28, 34, 0.2);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c11c22, #ffeb3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 2rem;
    color: #fff;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.value-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */
.service-detail-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.service-detail-section:last-child {
    border-bottom: none;
}

.service-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-content {
    padding: 2rem 0;
}

.service-detail-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c11c22;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
}

.service-detail-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-detail-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c11c22, #ffeb3b);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.service-detail-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.service-features-list li {
    padding: 0.8rem 0;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features-list li i {
    color: #c11c22;
    font-size: 1.1rem;
}

.service-detail-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #c11c22;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    border: 2px solid #c11c22;
}

.service-detail-btn:hover {
    background: #a0161c;
    border-color: #a0161c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 28, 34, 0.3);
    color: #fff;
}

/* ============================================
   CLIENTS PAGE STYLES
   ============================================ */
.clients-grid-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.client-testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border-top: 4px solid #c11c22;
}

.client-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(193, 28, 34, 0.15);
}

.testimonial-quote {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c11c22, #ffeb3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-quote i {
    font-size: 1.5rem;
    color: #fff;
}

.testimonial-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author-info {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
}

.author-title {
    font-size: 0.9rem;
    color: #c11c22;
    margin: 0;
}

/* ============================================
   BLOGS PAGE STYLES
   ============================================ */
.blog-card-page {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-page:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(193, 28, 34, 0.15);
}

.blog-image-page {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-page:hover .blog-image-page img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #c11c22;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content-page {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta-page {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #999;
}

.blog-meta-page span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-title-page {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    color: #c11c22;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more:hover {
    color: #a0161c;
    gap: 0.8rem;
}

.blog-pagination .pagination {
    margin: 0;
}

.blog-pagination .page-link {
    color: #c11c22;
    border-color: #ddd;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
    background: #c11c22;
    color: #fff;
    border-color: #c11c22;
}

.blog-pagination .page-item.active .page-link {
    background: #c11c22;
    border-color: #c11c22;
    color: #fff;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c11c22, #ffeb3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.contact-info-content {
    flex-grow: 1;
}

.contact-info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.contact-info-text a {
    color: #c11c22;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #a0161c;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-label .required {
    color: #c11c22;
}

.contact-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #c11c22;
    box-shadow: 0 0 0 0.2rem rgba(193, 28, 34, 0.1);
}

.contact-submit-btn {
    background: #c11c22;
    color: #fff;
    border: 2px solid #c11c22;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.contact-submit-btn:hover {
    background: #a0161c;
    border-color: #a0161c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 28, 34, 0.3);
    color: #fff;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW PAGES
   ============================================ */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .service-detail-title {
        font-size: 2.2rem;
    }
    
    .clients-grid-page {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-header-section {
        min-height: 300px;
        padding-top: 80px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .mission-vision-card,
    .value-card {
        margin-bottom: 2rem;
    }
    
    .service-detail-section {
        padding: 40px 0;
    }
    
    .service-detail-title {
        font-size: 1.8rem;
    }
    
    .clients-grid-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .page-header-section {
        min-height: 250px;
        padding-top: 70px;
    }
    
    .page-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .clients-grid-page {
        grid-template-columns: 1fr;
    }
    
    .blog-image-page {
        height: 200px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin-bottom: 0.6rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        letter-spacing: 2px;
        margin-bottom: 1.2rem;
        padding-bottom: 0.6rem;
    }
    
    .hero-tagline::after {
        width: 50px;
    }
    
    .hero-description-text {
        margin-bottom: 1.8rem;
    }
    
    .hero-description-text p {
        font-size: 0.95rem;
    }
    
    .hero-cta-btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .innovate-text {
        font-size: 60px;
        letter-spacing: 5px;
        -webkit-text-stroke: 2px rgba(255, 255, 255, 0.15);
        text-stroke: 2px rgba(255, 255, 255, 0.15);
    }
    
    .logo-img-overlay {
        height: 35px;
    }
    
    .nav-overlay-content {
        padding: 1rem;
    }
    
    .nav-overlay-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .nav-overlay-link {
        font-size: 1.2rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
    }
    
    .client-logo-item {
        padding: 1.5rem;
    }
    
    .client-logo {
        max-height: 60px;
    }
    
    .case-studies-title {
        font-size: 1.8rem;
    }
    
    .case-study-card-new {
        min-height: 400px;
    }
    
    .case-study-logo-wrapper {
        width: 120px;
        height: 120px;
        padding: 1.5rem;
    }
    
    .case-study-campaign {
        font-size: 2rem;
    }
    
    .case-study-text {
        font-size: 1.1rem;
    }
    
    .case-study-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .services-title-new {
        font-size: 1.8rem;
    }
    
    .service-card-new {
        min-height: 280px;
    }
    
    .service-card-inner {
        min-height: 280px;
    }
    
    .service-card-front,
    .service-card-back {
        padding: 1.5rem 1rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .laptop-screen {
        width: 150px;
        height: 100px;
    }
    
    .laptop-screen::after {
        width: 170px;
    }
    
    .service-screen-icon {
        font-size: 1.2rem;
    }
    
    .service-name-new {
        font-size: 1rem;
    }
    
    /* Footer Responsive */
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .footer-legal {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* WOW Animation Fix */
.wow {
    visibility: hidden;
}

