*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.8s ease-out forwards;
}

/* Staggered Animation Delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Page Load Animations */
body {
    animation: fadeIn 1s ease-out;
}

.navbar {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: #001E3D !important;
    background-color: #001E3D !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 9997; /* Enhanced z-index for hamburger menu compatibility */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: #001E3D !important;
    background-color: #001E3D !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Force navbar to always be blue */
.navbar, 
.navbar.scrolled,
.navbar:not(.scrolled) {
    background: #001E3D !important;
    background-color: #001E3D !important;
}

/* Override any potential white backgrounds */
.navbar * {
    background: inherit !important;
}

.navbar:hover,
.navbar:focus,
.navbar:active {
    background: #001E3D !important;
    background-color: #001E3D !important;
}

.navbar ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: 100%;
}

.logo {
    display: flex;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu li {
    list-style: none;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.arrow-down {
    color: black;
}

body {
    padding-top: 80px;
    background-color: #001E3D;
    background: linear-gradient(-45deg, #001E3D, #0066CC, #003D7A, #004B9F);
    background-size: 400% 400%;
    animation: blueWave 8s ease-in-out infinite;
    min-height: 100vh;
}

@keyframes blueWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.menu a:hover {
    color: #007bff;
}

.menu a:active,
.menu a:focus {
    color: #007bff;
    outline: none;
}

.navbar:focus-within {
    background-color: #001E3D !important;
}

.menu li:last-child a {
    background-color: transparent;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.menu li:last-child a:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.menu li:last-child a:active,
.menu li:last-child a:focus {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    outline: none;
}

/* Dropdown styles removed - no longer needed */

/* Hamburger menu styles - Enhanced for services page compatibility */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 9999; /* Ensure hamburger is above all other elements */
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #001E3D;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 9998;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li {
        margin: 15px 0;
    }
    
    .menu a {
        font-size: 18px;
        padding: 10px 20px;
        display: block;
        text-align: center;
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .menu a:hover,
    .menu a.active {
        background: rgba(255, 255, 255, 0.1);
        color: #007bff;
    }
    
    .menu li:last-child a {
        background: transparent;
        border: 2px solid #fff;
        margin-top: 20px;
    }
    
    .menu li:last-child a:hover {
        background: #fff;
        color: #001E3D;
    }
}
.body {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 100px 50px 50px;
    margin-top: 50px;
}

.body .left {
    width: 50%;
    padding: 50px;
    color: #fff;
}

.body .left h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.body .left p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.body .left a {
    display: inline-block;
    margin: 10px 15px 10px 0;
    padding: 15px 30px;
    background-color: #fff;
    color: #001E3D;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #fff;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.body .left a:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.body .right {
    width: 50%;
    padding: 50px;
    text-align: center;
}

.body .right img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.body .right img.body-logo {
    max-width: 90%;
    height: auto;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    padding: 30px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: bodyLogoFloat 4s ease-in-out infinite;
}

.body .right img.body-logo:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 
        0 30px 80px rgba(255, 107, 107, 0.2),
        0 15px 40px rgba(255, 142, 83, 0.15),
        0 0 40px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 50%, rgba(255,107,107,0.05) 100%);
}

@keyframes bodyLogoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

.body .right:hover img.body-logo {
    animation-play-state: paused;
}

.body .right img.body-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 23px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.body .right:hover img.body-logo::before {
    opacity: 1;
}

/* More Section - Horizontal Layout for Laptop and Larger Screens */
.more {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 25%, #1e40af 50%, #3b82f6 75%, #60a5fa 100%);
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 4vw, 3rem);
}

.more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 85% 15%, rgba(147, 197, 253, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(30, 58, 138, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.more::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(59, 130, 246, 0.03) 90deg, 
            transparent 180deg, 
            rgba(147, 197, 253, 0.02) 270deg, 
            transparent 360deg);
    animation: rotate 60s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* More Header */
.more-header {
    text-align: left;
    max-width: 1200px;
    width: 100%;
    z-index: 3;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.more-header .header-left {
    flex: 1;
    max-width: 45%;
}

.more-header .header-right {
    flex: 1;
    max-width: 50%;
}

.more-header h1 {
    color: #ffffff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
    letter-spacing: -0.02em;
}

.more-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* More Cards Container - Always Horizontal */
.more-cards {
    display: flex;
    flex-direction: row !important;
    gap: clamp(1rem, 2vw, 2rem);
    animation: fadeInUp 1s ease-out 0.6s both;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    width: 100%;
    margin-top: clamp(2rem, 4vw, 3rem);
}

/* Base Layout - Cards Under Header */
.more {
    flex-direction: column !important;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.more-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    width: 100%;
    max-width: 1200px;
}

/* Responsive adjustments for different screen sizes */
@media screen and (min-width: 1024px) {
    .more-cards {
        justify-content: space-between;
        gap: clamp(1.5rem, 2.5vw, 2.5rem);
        flex-wrap: nowrap;
    }
    
    .more-card {
        flex: 1;
        min-width: 300px;
        max-width: 380px;
    }
}

@media screen and (max-width: 1023px) {
    .more-header {
        flex-direction: column;
        text-align: center;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    
    .more-header .header-left,
    .more-header .header-right {
        max-width: 100%;
        flex: none;
    }
    
    .more-cards {
        justify-content: center;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    
    .more-card {
        flex: 1;
        min-width: 280px;
        max-width: 320px;
    }
}

@media screen and (max-width: 768px) {
    .more-cards {
        gap: clamp(0.75rem, 1.5vw, 1rem);
    }
    
    .more-card {
        min-width: 250px;
        max-width: 300px;
    }
}
.more-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 2.5rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.more-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 197, 253, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.more-card:hover::before {
    opacity: 1;
}

.more-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 40px rgba(59, 130, 246, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* More Card Icon */
.more-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.more-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 197, 253, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.more-card:hover .more-icon::before {
    opacity: 1;
}

.more-icon i {
    font-size: 2rem;
    color: #60a5fa;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.more-card:hover .more-icon i {
    color: #ffffff;
    transform: scale(1.1);
}

/* More Card Content */
.more-card h3 {
    color: #ffffff;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.more-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

/* More Card Link */
.more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.875rem, 2vw, 1rem);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 50px;
    background: rgba(96, 165, 250, 0.05);
    backdrop-filter: blur(10px);
}

.more-link:hover {
    color: #ffffff;
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.more-link i {
    transition: transform 0.3s ease;
}

.more-link:hover i {
    transform: translateX(4px);
}

/* Service Cards Container - Optimized for Horizontal Layout */
.text {
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(2rem, 4vw, 3rem);
    animation: fadeInUp 1s ease-out 0.9s both;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

/* Icon styling for service cards */
.text .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.text .icon i {
    font-size: 1.8rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.text .one:hover .icon,
.text .two:hover .icon,
.text .three:hover .icon {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.text .one:hover .icon i,
.text .two:hover .icon i,
.text .three:hover .icon i {
    color: #60a5fa;
    transform: scale(1.1);
}

.text .one, .text .two, .text .three {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.text .one::before, .text .two::before, .text .three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(147, 197, 253, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.text .one:hover, .text .two:hover, .text .three:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.text .one:hover::before, .text .two:hover::before, .text .three:hover::before {
    opacity: 1;
}

.text .one h2, .text .two h2, .text .three h2 {
    color: #ffffff;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 clamp(0.75rem, 2vw, 1rem) 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.text .one:hover h2, .text .two:hover h2, .text .three:hover h2 {
    color: #e0f2fe;
    text-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.text .one p, .text .two p, .text .three p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.95rem, 2.2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.7;
    margin: 0 0 clamp(1.25rem, 3vw, 1.75rem) 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.text .one:hover p, .text .two:hover p, .text .three:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.text .one span, .text .two span, .text .three span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.95rem, 2.2vw, 1.125rem);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 2;
    overflow: hidden;
}

.text .one span::after, .text .two span::after, .text .three span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 197, 253, 0.1));
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.text .one:hover span, .text .two:hover span, .text .three:hover span {
    color: #ffffff;
    transform: translateX(8px);
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.text .one:hover span::after, .text .two:hover span::after, .text .three:hover span::after {
    opacity: 1;
}

.text .one span i, .text .two span i, .text .three span i {
    font-size: 1.125rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.text .one:hover span i, .text .two:hover span i, .text .three:hover span i {
    transform: translateX(4px) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.4));
}

.text .one a, .text .two a, .text .three a {
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 2;
}
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.text .one a:hover span i, .text .two a:hover span i, .text .three a:hover span i {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    color: #007bff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Visual Effects for More Section */
.more {
    position: relative;
    overflow: hidden;
}

.more::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 123, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.more .lef,
.more .rit {
    position: relative;
    z-index: 3;
}

/* Enhanced Service Cards with Staggered Animations */
.text .one {
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.text .two {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.text .three {
    animation: slideInRight 0.8s ease-out 1s both;
}

/* Improved Hover Effects */
.text .one:hover,
.text .two:hover,
.text .three:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 123, 255, 0.4);
    box-shadow: 
        0 15px 35px rgba(0, 123, 255, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Enhanced Button Animations */
.text .one span,
.text .two span,
.text .three span {
    position: relative;
    overflow: hidden;
}

.text .one span::after,
.text .two span::after,
.text .three span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.3) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.text .one span:hover::after,
.text .two span:hover::after,
.text .three span:hover::after {
    width: 300px;
    height: 300px;
}

/* Scroll-triggered Animations */
@media (prefers-reduced-motion: no-preference) {
    .more {
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 1s ease-out 0.2s both;
    }
    
    .search-container {
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .more {
        background: linear-gradient(135deg, #001122 0%, #002244 50%, #000f1a 100%);
    }
    
    .text .one,
    .text .two,
    .text .three {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.08);
    }
    
    .text .one:hover,
    .text .two:hover,
    .text .three:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(0, 123, 255, 0.5);
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .more {
        background: #000033;
    }
    
    .more h1,
    .more h2 {
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .text .one,
    .text .two,
    .text .three {
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .search-container input {
        border: 3px solid rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.15);
    }
}

/* Performance Optimizations */
.more *,
.more *::before,
.more *::after {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .more,
    .more *,
    .more *::before,
    .more *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .text .one:hover,
    .text .two:hover,
    .text .three:hover {
        transform: none;
    }
}

/* More Section - Desktop Responsive */
@media screen and (min-width: 1025px) {
    .more {
        flex-direction: row;
        padding: clamp(4rem, 6vw, 5rem) clamp(2.5rem, 4vw, 3.125rem);
        gap: clamp(2.5rem, 4vw, 3rem);
        align-items: flex-start;
        min-height: clamp(500px, 60vh, 600px);
    }
    
    .more .lef {
        flex: 1;
        padding-right: clamp(1.5rem, 3vw, 2rem);
        max-width: 50%;
    }
    
    .more .rit {
        flex: 1;
        padding-left: clamp(1.5rem, 3vw, 2rem);
        flex-direction: row;
        gap: clamp(1.5rem, 2vw, 2rem);
        align-items: flex-start;
        max-width: 50%;
    }
    
    .more h1 {
        font-size: clamp(2rem, 4vw, 2.25rem);
        text-align: left;
        margin-top: clamp(2rem, 4vw, 3rem);
    }
    
    .more h2 {
        font-size: clamp(1rem, 2vw, 1.125rem);
        text-align: left;
        margin-top: clamp(2rem, 4vw, 3rem);
    }
    
    .search-container {
        align-items: flex-start;
        margin-top: clamp(2rem, 4vw, 3rem);
    }
    
    .search-container input {
        width: 100%;
        max-width: 350px;
        padding: clamp(0.875rem, 2vw, 1rem) clamp(1.125rem, 2.5vw, 1.25rem);
        font-size: clamp(0.9375rem, 2vw, 1rem);
    }
    
    .text {
        flex-direction: column;
        gap: clamp(1.5rem, 2vw, 2rem);
        margin-top: clamp(1.5rem, 3vw, 2rem);
    }
    
    .text .one, .text .two, .text .three {
        padding: clamp(1.25rem, 2.5vw, 1.5rem);
        border-radius: 20px;
    }
    
    .text .one h2, .text .two h2, .text .three h2 {
        font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    }
    
    .text .one p, .text .two p, .text .three p {
        font-size: clamp(0.9375rem, 2vw, 1rem);
    }
    
    .text .one span, .text .two span, .text .three span {
        font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
        padding: clamp(0.625rem, 1.5vw, 0.75rem) clamp(0.875rem, 2vw, 1rem);
        gap: clamp(0.5rem, 1vw, 0.625rem);
    }
    
    .text .one span i, .text .two span i, .text .three span i {
        width: clamp(1.75rem, 3vw, 2rem);
        height: clamp(1.75rem, 3vw, 2rem);
        font-size: clamp(0.6875rem, 1.5vw, 0.75rem);
    }
}
.plug-play-section {
    background: linear-gradient(135deg, #003D7A 0%, #001E3D 50%, #002851 100%);
    padding: 100px 50px;
    margin: 80px 50px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 30, 61, 0.3), 0 10px 30px rgba(0, 123, 255, 0.2);
}

.plug-play-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.plug-play-section h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.plug-play-section .highlight {
    color: #7dd87d;
    font-weight: 700;
}

.plug-play-section .subtitle {
    font-size: 1.3rem;
    color: #b8d4b8;
    margin-bottom: 20px;
    font-weight: 400;
}

.plug-play-section .description {
    font-size: 1.1rem;
    color: #a0c4a0;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.plug-play-section .underline {
    text-decoration: underline;
    text-decoration-color: #7dd87d;
    text-underline-offset: 3px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(125, 216, 125, 0.3);
    border-radius: 15px;
    padding: 30px 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(125, 216, 125, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: 0.9rem;
    color: #7dd87d;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.step-card h3 {
    font-size: 1.8rem;
    color: white;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.step-mockup {
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.wireframe-mockup {
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.branding-mockup {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.branding-mockup::after {
    content: "🎨";
    font-size: 2rem;
}

.feedback-mockup {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.mockup-browser {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.browser-header {
    height: 20px;
    background: #e0e0e0;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.browser-header::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff5f57;
    box-shadow: 12px 0 #ffbd2e, 24px 0 #28ca42;
}

.website-preview {
    padding: 15px;
    height: calc(100% - 20px);
    position: relative;
    background: linear-gradient(135deg, #2c5530, #1a3d1f);
}

.site-content {
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.comment-bubble {
    position: absolute;
    background: #ffd700;
    border-radius: 8px;
    padding: 4px 6px;
    font-size: 0.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.comment-1 {
    top: 35px;
    right: 10px;
    max-width: 60px;
}

.comment-2 {
    bottom: 15px;
    left: 10px;
    max-width: 65px;
}

.comment-avatar {
    font-size: 0.6rem;
    flex-shrink: 0;
}

.comment-text {
    line-height: 1.2;
    font-size: 0.45rem;
}

.launch-mockup {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.checkmark {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #11998e;
    font-weight: bold;
    margin-bottom: 8px;
}

.launch-text {
    color: white;
    font-size: 0.8rem;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.domain-link {
    color: #7dd87d;
    font-weight: 600;
}

.step-description {
    color: #b8d4b8;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 15px 0;
}

.timeline {
        background: rgba(125, 216, 125, 0.2);
        color: #7dd87d;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        display: inline-block;
        margin-top: 10px;
    }
    
    .blog {
        padding: 60px 20px;
        margin: 40px 20px;
        border-radius: 30px;
    }
    
    .blog h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .blog > p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .blog-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px auto 40px;
    }
    
    .blog-card {
        border-radius: 20px;
    }
    
    .blog-card img {
        height: 200px;
    }
    
    .blog-card h2 {
        font-size: 1.3rem;
        margin: 20px 20px 12px;
    }
    
    .blog-card p {
        margin: 0 20px 20px;
        font-size: 0.9rem;
    }
    
    .blog-card a {
        margin: 0 20px 20px;
    }
    
    .blog-card span {
        padding: 10px 20px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .blog-card span i {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .blog .viewourservices span {
        padding: 15px 25px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .blog .viewourservices span i {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

/* Blog Section - Enhanced Modern Design */
.blog {
    background: linear-gradient(135deg, 
        rgba(0, 30, 61, 0.95) 0%, 
        rgba(0, 60, 120, 0.9) 25%, 
        rgba(0, 123, 255, 0.85) 50%, 
        rgba(40, 167, 69, 0.9) 75%, 
        rgba(0, 30, 61, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 120px 50px;
    margin: 80px 50px;
    border-radius: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 30px 100px rgba(0, 30, 61, 0.3), 
        0 20px 60px rgba(0, 123, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(40, 167, 69, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 60% 20%, rgba(220, 53, 69, 0.08) 0%, transparent 50%);
    animation: blogFloatingBubbles 15s ease-in-out infinite;
    z-index: 0;
}

.blog::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: blogStars 20s linear infinite;
    z-index: 0;
}

@keyframes blogFloatingBubbles {
    0%, 100% {
        transform: rotate(0deg) scale(1) translateY(0);
    }
    25% {
        transform: rotate(90deg) scale(1.1) translateY(-10px);
    }
    50% {
        transform: rotate(180deg) scale(0.9) translateY(5px);
    }
    75% {
        transform: rotate(270deg) scale(1.05) translateY(-5px);
    }
}

@keyframes blogStars {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-150px) translateY(-100px);
    }
}

.blog > * {
    position: relative;
    z-index: 1;
}

.blog h1 {
    font-size: 4rem;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #e3f2fd 25%, 
        #bbdefb 50%, 
        #90caf9 75%, 
        #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 35px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    animation: titleShimmer 3s ease-in-out infinite;
}

@keyframes titleShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.blog > p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 70px;
    font-weight: 300;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 60px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.2), 
        0 10px 25px rgba(0, 123, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        #00d4ff 0%, 
        #0099cc 25%, 
        #28a745 50%, 
        #ffc107 75%, 
        #dc3545 100%);
    border-radius: 30px 30px 0 0;
    z-index: 1;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(90deg, #00d4ff 0%, #0099cc 25%, #28a745 50%, #ffc107 75%, #dc3545 100%);
    }
    50% {
        background: linear-gradient(90deg, #dc3545 0%, #ffc107 25%, #28a745 50%, #0099cc 75%, #00d4ff 100%);
    }
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.3), 
        0 15px 35px rgba(0, 123, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
    transition: all 0.5s ease;
    position: relative;
}

.blog-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.1);
}

.blog-card h2 {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    margin: 30px 30px 18px;
    line-height: 1.3;
    transition: all 0.4s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.blog-card:hover h2 {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.blog-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 30px 30px;
    opacity: 0.9;
    transition: all 0.3s ease;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.blog-card:hover p {
    color: rgba(255, 255, 255, 0.95);
    opacity: 1;
}

.blog-card a {
    text-decoration: none;
    margin: 0 30px 30px;
    display: inline-block;
}

.blog-card span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.blog-card span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.blog-card:hover span {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border-color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 30px rgba(0, 212, 255, 0.4),
        0 0 20px rgba(0, 212, 255, 0.3);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.blog-card:hover span::before {
    left: 100%;
}

.blog-card span i {
    background-color: rgba(255, 255, 255, 0.2);
    color: #007bff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.blog-card:hover span i {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: rotate(45deg);
}

.blog .viewourservices {
    margin-top: 40px;
}

.blog .viewourservices span {
    color: #001E3D;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, rgba(0, 30, 61, 0.1), rgba(0, 30, 61, 0.05));
    border: 3px solid rgba(0, 30, 61, 0.2);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.blog .viewourservices span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.blog .viewourservices a:hover span {
    background: #001E3D;
    color: white;
    border-color: #001E3D;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 30, 61, 0.3);
}

.blog .viewourservices a:hover span::before {
    left: 100%;
}

.blog .viewourservices span i {
    background-color: rgba(0, 30, 61, 0.1);
    color: #001E3D;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.4s ease;
}

.blog .viewourservices a:hover span i {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotate(45deg) scale(1.1);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #e94560 100%);
    padding: 120px 50px;
    margin: 80px 50px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3), 0 15px 50px rgba(233, 69, 96, 0.2);
}

/* Team Section */
.ourteam {
    background: linear-gradient(135deg, #003D7A 0%, #001E3D 50%, #002851 100%);
    padding: 120px 50px;
    margin: 80px 50px;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 30, 61, 0.3), 0 15px 50px rgba(0, 123, 255, 0.2);
}

.ourteam::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    animation: teamGlow 12s ease-in-out infinite;
    z-index: 0;
}

@keyframes teamGlow {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    33% {
        transform: rotate(120deg) scale(1.1);
    }
    66% {
        transform: rotate(240deg) scale(0.9);
    }
}

.ourteam > * {
    position: relative;
    z-index: 1;
}

.ourteam h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ourteam > p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 60px;
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0066CC, #28a745, #ffc107);
    border-radius: 25px 25px 0 0;
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 10px 25px rgba(0, 123, 255, 0.2);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-card:hover img {
    transform: scale(1.1);
    border-color: rgba(0, 123, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
}

.team-card h2 {
    font-size: 1.8rem;
    color: white;
    font-weight: 600;
    margin: 20px 0 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.team-card:hover h2 {
    color: #007bff;
}

.team-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.4;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.social-links a:hover {
    background: #007bff;
    border-color: #007bff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.ourteam .viewourservices {
    margin-top: 50px;
}

.ourteam .viewourservices a {
    text-decoration: none;
}

.ourteam .viewourservices span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.ourteam .viewourservices span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.ourteam .viewourservices span:hover::before {
    left: 100%;
}

.ourteam .viewourservices span:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.1));
    border-color: rgba(0, 123, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

.ourteam .viewourservices span i {
    background-color: white;
    color: #003D7A;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ourteam .viewourservices span:hover i {
    background-color: #007bff;
    color: white;
    transform: rotate(45deg);
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    animation: newsletterGlow 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes newsletterGlow {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-header {
    margin-bottom: 60px;
}

.newsletter-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 600;
}

.brand-text {
    color: white;
    padding: 8px 12px;
    border-radius: 8px 0 0 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.brand-highlight {
    color: #1a1a2e;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    padding: 8px 12px;
    border-radius: 0 8px 8px 0;
    font-weight: 700;
}

.newsletter h1 {
    font-size: 4rem;
    color: white;
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 20px 30px;
    font-size: 1.1rem;
    color: white;
    font-weight: 400;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.newsletter-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #007bff 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4), 0 5px 20px rgba(0, 153, 204, 0.3);
    background: linear-gradient(135deg, #00e6ff 0%, #00b3e6 50%, #0088ff 100%);
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:active {
    transform: translateY(0) scale(1.02);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }
    
    .navbar ul {
        justify-content: space-between;
        align-items: center;
    }
    
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #001E3D;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        z-index: 9998; /* Ensure menu is properly layered */
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .menu li:last-child {
        border-bottom: none;
    }
    
    /* Enhanced dropdown styles for mobile */
    .dropdown-content {
        position: static !important;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 0.5rem 0;
        margin: 0.5rem 1rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .dropdown-content a {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        line-height: 1.4;
        min-height: 48px; /* Minimum touch target size for accessibility */
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
    }
    
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    
    .dropdown-content a:hover,
    .dropdown-content a:focus {
        background-color: rgba(255, 255, 255, 0.1);
        color: #00d4ff;
        transform: none; /* Remove transform on mobile for better performance */
        padding-left: 1.5rem;
    }
    
    .dropdown-content a:active {
        background-color: rgba(0, 212, 255, 0.2);
        transform: scale(0.98);
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .body {
        flex-direction: column;
        padding: 50px 20px;
        margin-top: 20px;
        min-height: auto;
    }
    
    .body .left,
    .body .right {
        width: 100%;
        padding: 20px;
    }
    
    .body .left h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .body .left p {
        font-size: 16px;
        text-align: center;
    }
    
    .body .left a {
        display: block;
        margin: 10px auto;
        text-align: center;
        width: fit-content;
    }
    
    /* More Section - Mobile Responsive */
    .more {
        flex-direction: column;
        padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 1.5rem);
        gap: clamp(1.5rem, 4vw, 2rem);
        min-height: auto;
    }
    
    .more .lef,
    .more .rit {
        padding: 0;
        text-align: left;
    }
    
    .more .rit {
        flex-direction: column;
        gap: clamp(1rem, 3vw, 1.5rem);
    }
    
    .more h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-top: clamp(1rem, 3vw, 1.5rem);
        text-align: center;
    }
    
    .more h2 {
        font-size: clamp(0.875rem, 3vw, 1rem);
        margin-top: clamp(1rem, 3vw, 1.5rem);
        text-align: center;
    }
    
    .search-container {
        margin-top: clamp(1rem, 3vw, 1.5rem);
        align-items: center;
        width: 100%;
    }
    
    .search-container input {
        width: 100%;
        max-width: 280px;
        padding: clamp(0.625rem, 2vw, 0.75rem) clamp(0.875rem, 2.5vw, 1rem);
        font-size: clamp(0.75rem, 2vw, 0.875rem);
    }
    
    .search-container .search-icon {
        width: clamp(20px, 4vw, 25px);
        height: clamp(20px, 4vw, 25px);
    }
    
    .text {
        gap: clamp(0.75rem, 2vw, 1rem);
        margin-top: clamp(0.75rem, 2vw, 1rem);
    }
    
    .text .one, .text .two, .text .three {
        padding: clamp(0.75rem, 3vw, 1rem);
        border-radius: 15px;
    }
    
    .text .one h2, .text .two h2, .text .three h2 {
        font-size: clamp(1rem, 3vw, 1.25rem);
        margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
    }
    
    .text .one p, .text .two p, .text .three p {
        font-size: clamp(0.75rem, 2vw, 0.875rem);
        margin-bottom: clamp(0.75rem, 2vw, 1rem);
    }

    .text .one span, .text .two span, .text .three span {
        font-size: clamp(0.625rem, 2vw, 0.75rem);
        padding: clamp(0.375rem, 1.5vw, 0.5rem) clamp(0.625rem, 2vw, 0.75rem);
        gap: clamp(0.25rem, 1vw, 0.375rem);
    }
    
    .text .one span i, .text .two span i, .text .three span i {
        width: clamp(1.25rem, 3vw, 1.5rem);
        height: clamp(1.25rem, 3vw, 1.5rem);
        font-size: clamp(0.5rem, 1.5vw, 0.625rem);
    }

    .dropdowncontent {
        position: relative;
        box-shadow: none;
        background-color: rgba(255,255,255,0.95);
        margin-top: 5px;
    }
    
    .services {
        padding: 60px 20px;
    }
    
    .services h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .services > p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .card {
        border-radius: 20px;
        padding: 25px;
    }
    
    .card img {
        height: 180px;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    
    .card h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .card p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .card span {
        padding: 10px 20px;
        font-size: 12px;
        gap: 10px;
    }
    
    .card span i {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .viewourservices span {
        padding: 15px 25px;
        font-size: 16px;
        gap: 12px;
    }
    
    .viewourservices span i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .blog {
        padding: 40px 15px;
        margin: 30px 15px;
        border-radius: 25px;
    }
    
    .blog h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .blog > p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .blog-cards {
        gap: 20px;
        margin: 25px auto 30px;
    }
    
    .blog-card {
        border-radius: 18px;
    }
    
    .blog-card img {
        height: 180px;
    }
    
    .blog-card h2 {
        font-size: 1.2rem;
        margin: 18px 18px 10px;
    }
    
    .blog-card p {
        margin: 0 18px 18px;
        font-size: 0.85rem;
    }
    
    .blog-card a {
        margin: 0 18px 18px;
    }
    
    .blog-card span {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .blog-card span i {
        width: 22px;
        height: 22px;
        font-size: 9px;
    }
    
    .blog .viewourservices span {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .blog .viewourservices span i {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .newsletter {
        padding: 80px 20px;
        margin: 40px 20px;
        border-radius: 30px;
    }
    
    .newsletter h1 {
        font-size: 2.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 25px;
    }
    
    .newsletter-input {
        width: 100%;
        padding: 18px 25px;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.15);
        text-align: center;
    }
    
    .newsletter-btn {
        width: 100%;
        padding: 18px 30px;
        border-radius: 25px;
    }
    
    .aboutus {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
        min-height: auto;
    }
    
    .leftside {
        width: 100%;
    }
    
    .leftside img {
        height: 300px;
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.8);
    }
    
    .rightside {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
    
    .rightside h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .rightside h1::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .rightside p {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .rightside span {
        padding: 15px 25px;
        font-size: 14px;
        gap: 12px;
    }
    
    .rightside span i {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    /* Plug and Play Section Mobile */
    .plug-play-section {
        padding: 60px 20px;
        margin: 40px 20px;
        border-radius: 20px;
    }

    .plug-play-section h1 {
        font-size: 2.5rem;
    }

    .plug-play-section .subtitle {
        font-size: 1.1rem;
    }

    .plug-play-section .description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        max-width: 100%;
    }

    .step-card {
        padding: 25px 20px;
    }

    .step-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .step-mockup {
        height: 100px;
        margin: 15px 0;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .timeline {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .launch-text {
        font-size: 0.75rem;
    }

    .checkmark {
         width: 35px;
         height: 35px;
         font-size: 1.3rem;
     }

     .comment-bubble {
         font-size: 0.4rem;
         padding: 3px 5px;
     }

     .comment-1 {
         max-width: 50px;
     }

     .comment-2 {
         max-width: 55px;
     }

     .comment-text {
         font-size: 0.4rem;
     }

     .site-content {
         font-size: 0.6rem;
     }
     
     .why-choose-us {
         padding: 60px 20px;
         margin: 40px 20px;
         border-radius: 20px;
     }
     
     .why-choose-us h1 {
         font-size: 2.5rem;
         margin-bottom: 15px;
     }
     
     .why-choose-us .subtitle {
         font-size: 1rem;
         margin-bottom: 40px;
     }
     
     .comparison-table {
         border-radius: 15px;
     }
     
     .comparison-header {
         grid-template-columns: 1.5fr 1fr 1fr;
     }
     
     .comparison-row {
         grid-template-columns: 1.5fr 1fr 1fr;
         min-height: 60px;
     }
     
     .company-column {
         padding: 20px 15px;
     }
     
     .bestpest-column h2,
     .others-column h2 {
         font-size: 1.4rem;
     }
     
     .metric-label {
         padding: 15px 20px;
         gap: 10px;
         font-size: 0.9rem;
     }
     
     .metric-label i {
         font-size: 1rem;
         width: 16px;
     }
     
     .metric-value {
         padding: 15px 10px;
         font-size: 0.85rem;
     }
     
     /* Enhanced Blog Mobile Styles */
     .blog {
         padding: 60px 20px;
         margin: 30px 15px;
         border-radius: 30px;
         background: linear-gradient(135deg, 
             rgba(0, 30, 61, 0.98) 0%, 
             rgba(0, 60, 120, 0.95) 25%, 
             rgba(0, 123, 255, 0.9) 50%, 
             rgba(40, 167, 69, 0.95) 75%, 
             rgba(0, 30, 61, 0.98) 100%);
     }
     
     .blog h1 {
         font-size: 2.5rem;
         margin-bottom: 20px;
         background-size: 200% 200%;
     }
     
     .blog > p {
         font-size: 1.1rem;
         margin-bottom: 40px;
         max-width: 100%;
         padding: 0 10px;
     }
     
     .blog-cards {
         grid-template-columns: 1fr;
         gap: 25px;
         margin: 30px auto 35px;
         max-width: 100%;
     }
     
     .blog-card {
         border-radius: 25px;
         margin: 0 10px;
     }
     
     .blog-card img {
         height: 200px;
     }
     
     .blog-card h2 {
         font-size: 1.3rem;
         margin: 25px 25px 15px;
     }
     
     .blog-card p {
         margin: 0 25px 25px;
         font-size: 0.95rem;
     }
     
     .blog-card a {
         margin: 0 25px 25px;
     }
     
     .blog-card span {
         padding: 12px 20px;
         font-size: 0.9rem;
         gap: 8px;
     }
     
     .blog-card span i {
         width: 24px;
         height: 24px;
         font-size: 10px;
     }
     
     .blog .viewourservices span {
         padding: 15px 25px;
         font-size: 1rem;
         gap: 10px;
     }
     
     .blog .viewourservices span i {
         width: 28px;
         height: 28px;
         font-size: 12px;
     }
     
     .newsletter {
         padding: 60px 15px;
         margin: 30px 15px;
         border-radius: 25px;
     }
     
     .newsletter h1 {
         font-size: 2.2rem;
     }
     
     .newsletter-brand {
         font-size: 1rem;
         margin-bottom: 20px;
     }
     
     .newsletter-header {
         margin-bottom: 40px;
     }
     
     .newsletter-form {
         padding: 15px;
         gap: 12px;
     }
     
     .newsletter-input {
         padding: 15px 20px;
         font-size: 1rem;
     }
     
     .newsletter-btn {
         padding: 15px 25px;
         font-size: 1rem;
     }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 8px 10px;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    .body {
        padding: 30px 15px;
    }
    
    .body .left h1 {
        font-size: 24px;
    }
    
    .body .left p {
        font-size: 14px;
    }
    
    .body .left a {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* More Section - Small Mobile Responsive */
    .more {
        padding: clamp(1.5rem, 4vw, 2rem) clamp(0.75rem, 3vw, 1rem);
        gap: clamp(1rem, 3vw, 1.5rem);
    }
    
    .search-container .search-icon {
        width: clamp(18px, 4vw, 22px);
        height: clamp(18px, 4vw, 22px);
    }
    
    .search-container input {
        width: 100%;
        max-width: 240px;
        padding: clamp(0.5rem, 2vw, 0.625rem) clamp(0.75rem, 2vw, 0.875rem);
        font-size: clamp(0.625rem, 2vw, 0.75rem);
    }
    
    .more h1 {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
    }
    
    .more h2 {
        font-size: clamp(0.75rem, 2.5vw, 0.875rem);
        margin-top: clamp(0.75rem, 2vw, 1rem);
    }
    
    .text .one h2, .text .two h2, .text .three h2 {
        font-size: clamp(0.875rem, 3vw, 1rem);
        margin-bottom: clamp(0.375rem, 1.5vw, 0.5rem);
    }
    
    .text .one p, .text .two p, .text .three p {
        font-size: clamp(0.625rem, 2vw, 0.75rem);
        margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
    }

    .text .one span, .text .two span, .text .three span {
        font-size: clamp(0.5rem, 1.5vw, 0.625rem);
        padding: clamp(0.25rem, 1vw, 0.375rem) clamp(0.5rem, 1.5vw, 0.625rem);
        gap: clamp(0.125rem, 0.5vw, 0.25rem);
    }
    
    .text .one span i, .text .two span i, .text .three span i {
        width: clamp(1rem, 2.5vw, 1.25rem);
        height: clamp(1rem, 2.5vw, 1.25rem);
        font-size: clamp(0.375rem, 1vw, 0.5rem);
    }
    
    .services {
        padding: 40px 15px;
    }
    
    .services h1 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .services > p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .cards {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .card {
        border-radius: 18px;
        padding: 20px;
    }
    
    .card img {
        height: 160px;
        border-radius: 12px;
        margin-bottom: 18px;
    }
    
    .card h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .card p {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .card span {
        padding: 8px 16px;
        font-size: 11px;
        gap: 8px;
    }
    
    .card span i {
        width: 20px;
        height: 20px;
        font-size: 8px;
    }
    
    .viewourservices span {
        padding: 12px 20px;
        font-size: 14px;
        gap: 10px;
    }
    
    .viewourservices span i {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
    
    .aboutus {
        padding: 40px 15px;
        margin: 40px 20px;
        border-radius: 20px;
        gap: 30px;
    }
    
    .leftside img {
        height: 250px;
        border-radius: 18px;
    }
    
    .rightside h1 {
        font-size: 26px;
        margin-bottom: 18px;
    }
    
    .rightside h1::after {
        width: 50px;
    }
    
    .rightside p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .rightside span {
        padding: 12px 20px;
        font-size: 13px;
        gap: 10px;
    }
    
    .rightside span i {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #001E3D 0%, #002851 50%, #003D7A 100%);
    padding: 100px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: servicesGlow 8s ease-in-out infinite;
}

@keyframes servicesGlow {
    0%, 100% {
        background: linear-gradient(135deg, #001E3D 0%, #002851 50%, #003D7A 100%);
    }
    25% {
        background: linear-gradient(135deg, #003D7A 0%, #001E3D 50%, #0066CC 100%);
    }
    50% {
        background: linear-gradient(135deg, #0066CC 0%, #003D7A 50%, #004B9F 100%);
    }
    75% {
        background: linear-gradient(135deg, #004B9F 0%, #0066CC 50%, #001E3D 100%);
    }
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 123, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(75, 0, 130, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(255, 20, 147, 0.2) 0%, transparent 50%);
    animation: floatingBubbles 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatingBubbles {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-15px, -20px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(25px, 15px) scale(1.05);
        opacity: 0.9;
    }
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 123, 255, 0.05) 50%, transparent 70%);
    animation: shimmerWave 6s linear infinite;
    pointer-events: none;
}

@keyframes shimmerWave {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }
    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.services h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.services > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0066CC, #004B9F);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 10px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.card h2 {
    color: #001E3D;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.card a {
    text-decoration: none;
    display: inline-block;
}

.card span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #007bff, #0066CC);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.card span i {
    background-color: #fff;
    color: #007bff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.card a:hover span {
    background: #fff;
    color: #007bff;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.card a:hover span i {
    background-color: #007bff;
    color: #fff;
    transform: translateX(3px);
}

.viewourservices {
    margin-top: 40px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.viewourservices a {
    text-decoration: none;
    display: inline-block;
}

.viewourservices span {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.viewourservices span i {
    background-color: #fff;
    color: #001E3D;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.viewourservices a:hover span {
    background: #fff;
    color: #001E3D;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.viewourservices a:hover span i {
    background-color: #007bff;
    color: #fff;
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #003D7A 0%, #001E3D 50%, #002851 100%);
    padding: 100px 50px;
    margin: 80px 50px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 30, 61, 0.3), 0 10px 30px rgba(0, 123, 255, 0.2);
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 30, 61, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 123, 255, 0.03) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-us h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-choose-us .highlight {
    color: #7dd87d;
}

.why-choose-us .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(0, 0, 0, 0.3);
}

.comparison-header::before {
    content: '';
    grid-column: 1;
}

.company-column {
    padding: 25px 20px;
    text-align: center;
    font-weight: 700;
}

.bestpest-column {
    background: rgba(125, 216, 125, 0.2);
    border-right: 2px solid rgba(125, 216, 125, 0.3);
}

.bestpest-column h2 {
    color: #7dd87d;
    font-size: 1.8rem;
    margin: 0;
}

.others-column h2 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.8rem;
    margin: 0;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    min-height: 70px;
}

.comparison-row:last-child {
    border-bottom: none;
}

.metric-label {
    padding: 20px 25px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 500;
}

.metric-label i {
    color: #7dd87d;
    font-size: 1.2rem;
    width: 20px;
}

.metric-value {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.bestpest-value {
    background: rgba(125, 216, 125, 0.1);
    color: #7dd87d;
    border-right: 2px solid rgba(125, 216, 125, 0.3);
}

.others-value {
    color: rgba(255, 255, 255, 0.7);
}

.bestpest-value i.fa-check {
    color: #7dd87d;
    margin-right: 8px;
}

.others-value i.fa-times {
    color: #ff6b6b;
    margin-right: 8px;
}

/* About Us Section */
.aboutus {
    background: linear-gradient(135deg, #003D7A 0%, #001E3D 50%, #002851 100%);
    padding: 100px 50px;
    margin: 80px 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 30, 61, 0.3), 0 10px 30px rgba(0, 123, 255, 0.2);
    scroll-margin-top: 80px;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.aboutus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 30, 61, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.leftside {
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.leftside img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 255, 255, 0.8);
    position: relative;
    touch-action: manipulation;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.leftside img.logo-image {
    object-fit: contain;
    background: transparent;
    padding: 40px;
    cursor: pointer;
    animation: logoFloat 3s ease-in-out infinite;
}

.leftside img.logo-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 35px 70px rgba(0, 123, 255, 0.25),
        0 15px 35px rgba(0, 123, 255, 0.15),
        0 0 30px rgba(255, 255, 255, 0.3);
    border-color: rgba(0, 123, 255, 0.6);
    background: transparent;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

.leftside:hover img.logo-image {
    animation-play-state: paused;
}

.leftside img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 27px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leftside:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 15px 35px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.leftside:hover img::before {
    opacity: 1;
}

.rightside {
    flex: 1;
    padding: 20px 0 20px 40px;
    position: relative;
    z-index: 1;
    touch-action: manipulation;
}

.rightside h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.rightside h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0066CC);
    border-radius: 2px;
}

.rightside p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: justify;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.rightside a {
    text-decoration: none;
    display: inline-block;
}

.rightside span {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #007bff 0%, #0066CC 50%, #004B9F 100%);
    color: #fff;
    border-radius: 50px;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 
        0 8px 25px rgba(0, 123, 255, 0.3),
        0 4px 15px rgba(0, 123, 255, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    min-height: 56px;
    text-decoration: none;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.rightside span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.rightside span i {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rightside a:hover span {
    background: #fff;
    color: #001E3D;
    border-color: #007bff;
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0, 123, 255, 0.4),
        0 8px 25px rgba(0, 123, 255, 0.3);
}

.rightside a:hover span::before {
    left: 100%;
}

.rightside a:hover span i {
    background-color: #007bff;
    color: #fff;
    transform: translateX(5px) rotate(360deg);
}

/* More Section - Tablet Responsive */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .more {
        flex-direction: row;
        padding: clamp(3rem, 6vw, 4rem) clamp(2rem, 4vw, 2.5rem);
        gap: clamp(2rem, 4vw, 3rem);
        align-items: flex-start;
    }
    
    .more .lef {
        flex: 1;
        padding-right: clamp(1rem, 3vw, 1.5rem);
    }
    
    .more .rit {
        flex: 1;
        padding-left: clamp(1rem, 3vw, 1.5rem);
        flex-direction: column;
        gap: clamp(1.5rem, 3vw, 2rem);
    }
    
    .more h1 {
        font-size: clamp(1.75rem, 4vw, 2rem);
        text-align: left;
        margin-top: clamp(1.5rem, 3vw, 2rem);
    }
    
    .more h2 {
        font-size: clamp(1rem, 2.5vw, 1.125rem);
        text-align: left;
        margin-top: clamp(1.5rem, 3vw, 2rem);
    }
    
    .search-container {
        align-items: flex-start;
        margin-top: clamp(1.5rem, 3vw, 2rem);
    }
    
    .search-container input {
        width: 100%;
        max-width: 320px;
        padding: clamp(0.75rem, 2vw, 0.875rem) clamp(1rem, 2.5vw, 1.125rem);
        font-size: clamp(0.875rem, 2vw, 0.9375rem);
    }
    
    .text {
        flex-direction: row;
        gap: clamp(1rem, 2vw, 1.5rem);
        margin-top: clamp(1.5rem, 3vw, 2rem);
    }
    
    .text .one, .text .two, .text .three {
        flex: 1;
        padding: clamp(1rem, 2.5vw, 1.25rem);
    }
    
    .text .one span, .text .two span, .text .three span {
        font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
        padding: clamp(0.5rem, 1.5vw, 0.625rem) clamp(0.75rem, 2vw, 0.875rem);
        gap: clamp(0.375rem, 1vw, 0.5rem);
    }
    
    .text .one span i, .text .two span i, .text .three span i {
        width: clamp(1.5rem, 3vw, 1.75rem);
        height: clamp(1.5rem, 3vw, 1.75rem);
        font-size: clamp(0.625rem, 1.5vw, 0.6875rem);
    }
}
    
    .services {
        padding: 80px 40px;
    }
    
    .services h1 {
        font-size: 42px;
        margin-bottom: 18px;
    }
    
    .services > p {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .cards {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .card {
        border-radius: 22px;
        padding: 28px;
    }
    
    .card img {
        height: 200px;
        border-radius: 18px;
        margin-bottom: 22px;
    }
    
    .card h2 {
        font-size: 22px;
        margin-bottom: 14px;
    }
    
    .card p {
        font-size: 15px;
        margin-bottom: 22px;
    }
    
    .card span {
        padding: 11px 22px;
        font-size: 13px;
        gap: 11px;
    }
    
    .card span i {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .viewourservices span {
        padding: 16px 30px;
        font-size: 17px;
        gap: 14px;
    }
    
    .viewourservices span i {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    /* About Us Section - 768px Tablet Optimization */
    .aboutus {
        padding: 60px 30px;
        gap: 40px;
        flex-direction: column;
        text-align: center;
        margin: 40px 20px;
        border-radius: 25px;
        min-height: auto;
    }
    
    .leftside {
        order: 1;
        align-self: center;
        padding: 15px;
    }
    
    .leftside img {
        height: 350px;
        width: 100%;
        max-width: 400px;
        border-radius: 20px;
        object-fit: cover;
    }
    
    .rightside {
        padding: 15px 0;
        order: 2;
        max-width: 100%;
    }
    
    .rightside h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: center;
    }
    
    .rightside h1::after {
        width: 60px;
        margin: 15px auto 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .rightside p {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.6;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    
    .rightside span {
        padding: 14px 25px;
        font-size: 0.95rem;
        gap: 10px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .rightside span i {
        width: 28px;
        height: 28px;
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .newsletter {
        padding: 40px 10px;
        margin: 20px 10px;
        border-radius: 20px;
    }
    
    .newsletter h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .newsletter-brand {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .brand-text,
    .brand-highlight {
        padding: 6px 10px;
    }
    
    .newsletter-header {
        margin-bottom: 30px;
    }
    
    .newsletter-form {
        padding: 12px;
        gap: 10px;
    }
    
    .newsletter-input {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .newsletter-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Team Section Responsive */
    .ourteam {
        padding: 80px 40px;
        margin: 40px 20px;
        border-radius: 30px;
    }

    .ourteam h1 {
        font-size: 2.8rem;
        margin-bottom: 25px;
    }

    .ourteam > p {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .team-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin: 40px auto 50px;
    }

    .team-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .team-card img {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .team-card h2 {
        font-size: 1.6rem;
        margin: 15px 0 8px;
    }

    .team-card p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .ourteam .viewourservices span {
        font-size: 1rem;
        padding: 16px 30px;
        gap: 10px;
    }

    .ourteam .viewourservices span i {
         width: 28px;
         height: 28px;
         font-size: 12px;
     }
 }

/* Responsive Design for 480px */
@media (max-width: 480px) {
    .ourteam {
        padding: 60px 20px;
        margin: 30px 15px;
        border-radius: 25px;
    }

    .ourteam h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .ourteam > p {
        font-size: 1rem;
        margin-bottom: 35px;
        padding: 0 5px;
    }

    .team-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 35px auto 45px;
    }

    .team-card {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .team-card img {
        width: 90px;
        height: 90px;
        margin-bottom: 18px;
    }

    .team-card h2 {
        font-size: 1.4rem;
        margin: 12px 0 6px;
    }

    .team-card p {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .ourteam .viewourservices span {
        font-size: 0.95rem;
        padding: 14px 25px;
        gap: 8px;
    }

    .ourteam .viewourservices span i {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    /* About Us Section - 480px Mobile Optimization */
    .aboutus {
        padding: 40px 20px;
        gap: 30px;
        margin: 20px 10px;
        border-radius: 20px;
    }
    
    .leftside img {
        height: 280px;
        max-width: 320px;
        border-radius: 15px;
    }
    
    .rightside h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .rightside h1::after {
        width: 50px;
        margin: 12px auto 0;
    }
    
    .rightside p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
        max-width: 95%;
    }
    
    .rightside span {
        padding: 12px 20px;
        font-size: 0.85rem;
        gap: 8px;
        min-height: 44px;
    }
    
    .rightside span i {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}

/* Responsive Design for 320px */
@media (max-width: 320px) {
    .ourteam {
        padding: 50px 15px;
        margin: 20px 10px;
        border-radius: 20px;
    }

    .ourteam h1 {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }

    .ourteam > p {
        font-size: 0.9rem;
        margin-bottom: 30px;
        padding: 0;
    }

    .team-cards {
        gap: 20px;
        margin: 30px auto 40px;
    }

    .team-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    /* About Us Section - 320px Ultra Mobile Optimization */
    .aboutus {
        padding: 30px 15px;
        gap: 25px;
        margin: 15px 8px;
        border-radius: 15px;
    }
    
    .leftside img {
        height: 240px;
        max-width: 280px;
        border-radius: 12px;
    }
    
    .rightside h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .rightside h1::after {
        width: 40px;
        margin: 10px auto 0;
    }
    
    .rightside p {
        font-size: 0.8rem;
        margin-bottom: 18px;
        line-height: 1.4;
        max-width: 100%;
    }
    
    .rightside span {
        padding: 10px 16px;
        font-size: 0.75rem;
        gap: 6px;
        min-height: 40px;
    }
    
    .rightside span i {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }

    .team-card img {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .team-card h2 {
        font-size: 1.2rem;
        margin: 10px 0 5px;
    }

    .team-card p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .ourteam .viewourservices span {
        font-size: 0.9rem;
        padding: 12px 20px;
        gap: 6px;
    }

    .ourteam .viewourservices span i {
         width: 24px;
         height: 24px;
         font-size: 10px;
     }
 }

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 60px 50px 40px;
    margin-top: 80px;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-logo h2 {
    color: #007bff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #007bff, #0066CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-section ul li a:hover {
    color: #007bff;
    padding-left: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-item i {
    width: 20px;
    color: #007bff;
    font-size: 1rem;
}

.contact-label {
    color: #007bff;
    font-weight: 600;
    min-width: 80px;
}


.contact-value {
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
}
.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 30px 30px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo h2 {
        font-size: 1.8rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .contact-item {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-label {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 20px 25px;
        margin-top: 40px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo h2 {
        font-size: 1.6rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .contact-item i {
        width: 18px;
        font-size: 0.9rem;
    }
}

/* Modern Navbar Styles for Portfolio Page */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: transparent;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    color: #007bff;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #007bff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.nav-link.active {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.nav-link.active:hover {
    color: #fff;
    background: linear-gradient(45deg, #0056b3, #004085);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    min-width: 35px;
    min-height: 35px;
    justify-content: center;
    align-items: center;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff !important;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Enhanced Navbar Background */
.navbar {
    background: rgba(0, 30, 61, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 30, 61, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        margin: 0.5rem 1rem;
        border-radius: 10px;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo a {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo a {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        top: 65px;
    }
}

/* Portfolio Coming Soon Styles */
.portfolio-coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #001E3D 0%, #0066CC 50%, #003D7A 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.portfolio-coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.3) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.coming-soon-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.coming-soon-icon i {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
    letter-spacing: -2px;
    background: linear-gradient(45deg, #fff, #e3f2fd, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% center; }
    50% { background-position: 200% center; }
}

.coming-soon-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.coming-soon-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.85;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-item i {
    font-size: 2.5rem;
    opacity: 0.95;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.5));
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.8), rgba(0, 102, 204, 0.8));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(45deg, rgba(0, 86, 179, 0.9), rgba(0, 64, 133, 0.9));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4), 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Portfolio Coming Soon */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.5rem;
    }
    
    .coming-soon-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .coming-soon-features {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .portfolio-coming-soon {
        padding: 80px 0;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.2rem;
    }
    
    .coming-soon-description {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, #001E3D 0%, #003366 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactgrid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contactgrid)"/></svg>');
    opacity: 0.4;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero .hero-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Information Cards */
.contact-info-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #001E3D, #003366);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,30,61,0.15);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #001E3D, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #003366, #004080);
}

.contact-info-card h5 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-link {
    color: #001E3D;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #001E3D;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    background: #001E3D;
    color: white;
    transform: translateY(-2px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #001E3D, #003366);
}

.section-header h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #001E3D;
    box-shadow: 0 0 0 0.2rem rgba(0,30,61,0.25);
    background-color: white;
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #001E3D, #003366);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #003366, #004080);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,30,61,0.3);
}

.contact-form .btn-primary:active {
    transform: translateY(-1px);
}

/* Social Media Section */
.social-media-section {
    background: linear-gradient(135deg, #001E3D 0%, #003366 50%, #007bff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-radius: 40px 40px 0 0;
    margin: 0 20px;
    animation: blueBackgroundShift 10s ease-in-out infinite;
}

@keyframes blueBackgroundShift {
    0%, 100% {
        background: linear-gradient(135deg, #001E3D 0%, #003366 50%, #007bff 100%);
    }
    25% {
        background: linear-gradient(135deg, #003D7A 0%, #0066CC 50%, #00d4ff 100%);
    }
    50% {
        background: linear-gradient(135deg, #004B9F 0%, #007bff 50%, #0099cc 100%);
    }
    75% {
        background: linear-gradient(135deg, #002851 0%, #004080 50%, #0056b3 100%);
    }
}

.social-media-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="socialgrid" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23socialgrid)"/></svg>');
    opacity: 0.4;
    animation: bluePatternFloat 15s linear infinite;
}

@keyframes bluePatternFloat {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(-15px) translateY(-10px) rotate(90deg);
    }
    50% {
        transform: translateX(15px) translateY(-15px) rotate(180deg);
    }
    75% {
        transform: translateX(-10px) translateY(10px) rotate(270deg);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(360deg);
    }
}

.social-media-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,123,255,0.15) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: blueFloatingParticles 25s linear infinite;
    pointer-events: none;
}

@keyframes blueFloatingParticles {
    0% {
        transform: rotate(0deg) translateX(0) scale(1);
    }
    50% {
        transform: rotate(180deg) translateX(30px) scale(1.2);
    }
    100% {
        transform: rotate(360deg) translateX(0) scale(1);
    }
}

.social-media-section .container {
    position: relative;
    z-index: 2;
}

.social-media-section h3 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffffff, #00d4ff, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s ease-in-out infinite;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes textShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.social-media-section h3::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: linear-gradient(90deg, #00d4ff, #007bff, #00d4ff);
    border-radius: 3px;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0,212,255,0.5);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(0,212,255,0.8), 0 0 30px rgba(0,123,255,0.6);
        transform: translateX(-50%) scale(1.1);
    }
}

.social-media-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #007bff, #00d4ff, #007bff, transparent);
    border-radius: 2px;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.2);
        box-shadow: 0 0 15px rgba(0,123,255,0.6);
    }
}

.social-media-section p {
    color: #e8f4fd;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.social-media-section p::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,0.5), transparent);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1.2);
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,30,61,0.2);
}

.social-link i {
    font-size: 1.8rem;
    width: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.social-link span {
    transition: all 0.3s ease;
}

/* Platform-specific styling */
.instagram-link {
    border-color: #E4405F;
}

.instagram-link:hover {
    background: linear-gradient(135deg, #E4405F, #C13584);
    color: white;
    border-color: #E4405F;
}

.instagram-link:hover i {
    color: white;
    transform: rotate(15deg) scale(1.2);
}

.tiktok-link {
    border-color: #000000;
}

.tiktok-link:hover {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    border-color: #000000;
}

.tiktok-link:hover i {
    color: white;
    transform: rotate(-15deg) scale(1.2);
}

.linkedin-link {
    border-color: #0077B5;
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #0077B5, #005885);
    color: white;
    border-color: #0077B5;
}

.linkedin-link:hover i {
    color: white;
    transform: rotate(10deg) scale(1.2);
}

.twitter-link {
    border-color: #1DA1F2;
}

.twitter-link:hover {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    color: white;
    border-color: #1DA1F2;
}

.twitter-link:hover i {
    color: white;
    transform: rotate(-10deg) scale(1.2);
}

/* Pulse animation for social links */
@keyframes socialPulse {
    0% { box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
    50% { box-shadow: 0 8px 25px rgba(0,30,61,0.2), 0 0 0 10px rgba(0,30,61,0.1); }
    100% { box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
}

.social-link:nth-child(1) {
    animation: socialPulse 3s ease-in-out infinite;
    animation-delay: 0s;
}

.social-link:nth-child(2) {
    animation: socialPulse 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.social-link:nth-child(3) {
    animation: socialPulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

.social-link:nth-child(4) {
    animation: socialPulse 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section .section-header h3 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h5 {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question i {
    color: #001E3D;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-icon {
        font-size: 3.5rem;
    }
    
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-info-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .contact-form .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* About Us Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #001E3D 0%, #003366 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-card, .vision-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-card .icon, .vision-card .icon {
    font-size: 3rem;
    color: #001E3D;
    margin-bottom: 20px;
}

.mission-card h2, .vision-card h2 {
    font-size: 2rem;
    color: #001E3D;
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #001E3D;
    margin-bottom: 60px;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: #001E3D;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #001E3D;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* What We Do Section */
.what-we-do-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-category {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-category h3 {
    font-size: 1.4rem;
    color: #001E3D;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-category h3 i {
    margin-right: 10px;
    color: #007bff;
}

.service-category p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
    background: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.reason-number {
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    min-width: 60px;
}

.reason-item h3 {
    font-size: 1.3rem;
    color: #001E3D;
    margin-bottom: 10px;
    font-weight: 600;
}

.reason-item p {
    color: #666;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #001E3D 0%, #003366 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.btn-primary:hover {
    background: transparent;
    color: #007bff;
    border-color: #007bff;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #001E3D;
}

/* Footer Styles */
footer {
    background: #001E3D;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p, .footer-section ul {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Active navigation link */
.menu a.active {
    color: #007bff !important;
    font-weight: 600;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #001E3D 0%, #003366 50%, #004080 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-icon {
    margin-bottom: 2rem;
}

.hero-icon i {
    font-size: 4rem;
    color: #ffffff;
    opacity: 0.9;
}

.blog-hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Post Section */
.featured-post-section {
    background: #f8f9fa;
}

.featured-post {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.featured-post .post-image {
    position: relative;
    overflow: hidden;
}

.featured-post .post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #001E3D, #003366);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-post .post-content {
    padding: 2.5rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-meta span {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta i {
    color: #001E3D;
}

.featured-post h3 {
    color: #001E3D;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-post p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #001E3D, #003366);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #003366, #004080);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 30, 61, 0.3);
    color: #ffffff;
}

/* Blog Filter Section */
.blog-filter-section {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #001E3D, #003366);
    border-color: #001E3D;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Blog Posts Grid */
.blog-posts-section {
    background: #f8f9fa;
}

.blog-post {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.blog-post .post-image {
    position: relative;
    overflow: hidden;
}

.blog-post .post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.blog-post .post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #001E3D, #003366);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post .post-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post .post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.blog-post h4 {
    color: #001E3D;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-post p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more-link {
    color: #001E3D;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more-link:hover {
    color: #003366;
    transform: translateX(5px);
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(3px);
}

/* Load More Button */
.load-more-btn {
    background: linear-gradient(135deg, #001E3D, #003366);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #003366, #004080);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 30, 61, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #001E3D 0%, #003366 50%, #004080 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.newsletter-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.newsletter-form .form-control:focus {
    outline: none;
    box-shadow: none;
    background: #ffffff;
}

.newsletter-form .btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: scale(1.05);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* Blog Page Mobile Styles */
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero p {
        font-size: 1.1rem;
    }
    
    .hero-icon i {
        font-size: 3rem;
    }
    
    .featured-post .post-content {
        padding: 2rem;
    }
    
    .featured-post h3 {
        font-size: 1.7rem;
    }
    
    .blog-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-section h3 {
        font-size: 2rem;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form .form-control {
        border-radius: 15px 15px 0 0;
    }
    
    .newsletter-form .btn {
        border-radius: 0 0 15px 15px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social-media-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.social-media-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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23007bff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
    opacity: 0.5;
}

.social-media-section .container {
    position: relative;
    z-index: 2;
}

.social-media-section h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.social-media-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6f42c1);
    border-radius: 2px;
}

.social-media-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 25px;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: #495057;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    min-height: 60px;
    width: 100%;
    max-width: 350px;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link span {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Instagram Styling */
.instagram-link i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 148, 51, 0.3);
    border-color: #f09433;
}

.instagram-link:hover span {
    color: #f09433;
}

/* TikTok Styling */
.tiktok-link i {
    background: linear-gradient(45deg, #000000 0%, #ff0050 100%);
}

.tiktok-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.3);
    border-color: #ff0050;
}

.tiktok-link:hover span {
    color: #ff0050;
}

/* LinkedIn Styling */
.linkedin-link i {
    background: linear-gradient(45deg, #0077b5 0%, #00a0dc 100%);
}

.linkedin-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.3);
    border-color: #0077b5;
}

.linkedin-link:hover span {
    color: #0077b5;
}

/* Twitter Styling */
.twitter-link i {
    background: linear-gradient(45deg, #1da1f2 0%, #0d8bd9 100%);
}

.twitter-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(29, 161, 242, 0.3);
    border-color: #1da1f2;
}

.twitter-link:hover span {
    color: #1da1f2;
}

/* Tablet Responsive - 768px */
@media (min-width: 768px) {
    .social-media-section {
        padding: 100px 0;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .social-link {
        width: auto;
        min-width: 280px;
        max-width: 300px;
        flex: 0 0 calc(50% - 0.75rem);
    }
    
    .social-media-section h3 {
        font-size: 2.5rem;
    }
    
    .social-media-section p {
        font-size: 1.125rem;
        margin-bottom: 3.5rem;
    }
}

/* Desktop Responsive - 992px */
@media (min-width: 992px) {
    .social-media-section {
        padding: 120px 0;
    }
    
    .social-links {
        flex-direction: row;
        gap: 2rem;
    }
    
    .social-link {
        flex: 0 0 auto;
        width: auto;
        min-width: 250px;
        max-width: 280px;
    }
    
    .social-media-section h3 {
        font-size: 3rem;
    }
    
    .social-media-section p {
        font-size: 1.2rem;
        margin-bottom: 4rem;
    }
}

/* Large Desktop - 1200px */
@media (min-width: 1200px) {
    .social-links {
        gap: 2.5rem;
    }
    
    .social-link {
        min-width: 280px;
        max-width: 320px;
        padding: 18px 30px;
    }
    
    .social-link i {
        font-size: 1.75rem;
        width: 35px;
        height: 35px;
    }
    
    .social-link span {
        font-size: 1.1rem;
    }
}

/* Mobile Responsive - 480px */
@media (max-width: 480px) {
    .social-media-section {
        padding: 60px 0;
        display: block !important;
        visibility: visible !important;
    }
    
    .social-media-section h3 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .social-media-section p {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
        padding: 0 10px;
    }
    
    .social-links {
        gap: 1rem;
        padding: 0 10px;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        visibility: visible !important;
    }
    
    .social-link {
        padding: 12px 20px;
        min-height: 50px;
        max-width: 90%;
        width: 90%;
        gap: 12px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .social-link i {
        font-size: 1.25rem;
        width: 25px;
        height: 25px;
        display: inline-block !important;
        visibility: visible !important;
    }
    
    .social-link span {
        font-size: 0.9rem;
        display: inline-block !important;
        visibility: visible !important;
    }
}

/* Ultra Mobile - 320px */
@media (max-width: 320px) {
    .social-media-section {
        padding: 50px 0;
        display: block !important;
        visibility: visible !important;
    }
    
    .social-media-section h3 {
        font-size: 1.6rem;
    }
    
    .social-media-section p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0 15px;
    }
    
    .social-links {
        gap: 0.8rem;
        padding: 0 15px;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        visibility: visible !important;
    }
    
    .social-link {
        padding: 10px 15px;
        min-height: 45px;
        max-width: 95%;
        width: 95%;
        gap: 10px;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .social-link i {
        font-size: 1.1rem;
        width: 22px;
        height: 22px;
        display: inline-block !important;
        visibility: visible !important;
    }
    
    .social-link span {
        font-size: 0.85rem;
        display: inline-block !important;
        visibility: visible !important;
    }
}
    
    .social-links {
        gap: 0.8rem;
        padding: 0 5px;
    }
    
    .social-link {
        padding: 10px 15px;
        min-height: 45px;
        gap: 10px;
    }
    
    .social-link i {
        font-size: 1.1rem;
        width: 22px;
        height: 22px;
    }
    
    .social-link span {
        font-size: 0.8rem;
    }
}

/* Responsive Design for .more Section */
/* Mobile and Small Tablets - Stack Vertically */
@media (max-width: 768px) {
    .more {
        flex-direction: column;
        padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 5vw, 2rem);
        min-height: auto;
        gap: clamp(2.5rem, 6vw, 3.5rem);
    }
    
    .more .lef,
    .more .rit {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    
    .more .rit {
        order: -1; /* Move text content above search container on mobile */
    }
    
    .more h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        text-align: center;
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
    }
    
    .more h2 {
        font-size: clamp(1rem, 4vw, 1.25rem);
        text-align: center;
        margin-bottom: clamp(1.5rem, 4vw, 2rem);
    }
    
    .search-container {
        margin-top: clamp(1.5rem, 4vw, 2rem);
        align-items: center;
    }
    
    .search-container input {
        max-width: 100%;
        padding: clamp(1rem, 3vw, 1.25rem) clamp(1.25rem, 4vw, 1.5rem);
        font-size: clamp(1rem, 3vw, 1.125rem);
    }
    
    /* Stack service cards vertically on mobile */
    .text {
        flex-direction: column;
        gap: clamp(1rem, 4vw, 1.5rem);
    }
    
    .text .one, .text .two, .text .three {
        min-width: unset;
        max-width: unset;
        flex: none;
    }
    
    .text {
        gap: clamp(1.25rem, 4vw, 1.75rem);
        margin-top: clamp(1.5rem, 4vw, 2rem);
    }
    
    .text .one, .text .two, .text .three {
        padding: clamp(1.25rem, 5vw, 2rem);
        border-radius: 20px;
        margin-bottom: clamp(0.75rem, 2vw, 1rem);
    }
    
    .text .one h2, .text .two h2, .text .three h2 {
        font-size: clamp(1.125rem, 4vw, 1.375rem);
        margin-bottom: clamp(0.75rem, 2vw, 1rem);
        text-align: center;
    }
    
    .text .one p, .text .two p, .text .three p {
        font-size: clamp(0.9rem, 3vw, 1.125rem);
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
        text-align: center;
    }
    
    .text .one span, .text .two span, .text .three span {
        font-size: clamp(0.9rem, 3vw, 1rem);
        padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 4vw, 1.5rem);
        justify-content: center;
        margin: 0 auto;
        max-width: fit-content;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .more {
        padding: clamp(1.5rem, 8vw, 2.5rem) clamp(0.75rem, 6vw, 1.5rem);
        gap: clamp(2rem, 8vw, 3rem);
    }
    
    .more h1 {
        font-size: clamp(1.5rem, 10vw, 2.25rem);
        line-height: 1.2;
    }
    
    .more h2 {
        font-size: clamp(0.95rem, 5vw, 1.125rem);
        line-height: 1.6;
    }
    
    .search-container input {
        padding: clamp(0.875rem, 4vw, 1.125rem) clamp(1rem, 5vw, 1.25rem);
        font-size: clamp(0.9rem, 4vw, 1rem);
        border-radius: 50px;
    }
    
    .text .one, .text .two, .text .three {
        padding: clamp(1rem, 6vw, 1.75rem);
        border-radius: 18px;
    }
    
    .text .one h2, .text .two h2, .text .three h2 {
        font-size: clamp(1rem, 5vw, 1.25rem);
    }
    
    .text .one p, .text .two p, .text .three p {
        font-size: clamp(0.85rem, 4vw, 1rem);
        line-height: 1.6;
    }
    
    .text .one span, .text .two span, .text .three span {
        font-size: clamp(0.85rem, 4vw, 0.95rem);
        padding: clamp(0.625rem, 3vw, 0.875rem) clamp(1rem, 5vw, 1.25rem);
        gap: 0.5rem;
    }
    
    .text .one span i, .text .two span i, .text .three span i {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }
}

/* Large Tablets and Small Laptops - Maintain Horizontal Layout */
@media (min-width: 769px) and (max-width: 1024px) {
    .more {
        padding: clamp(3rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
        gap: clamp(2rem, 4vw, 3rem);
    }
    
    .more .lef,
    .more .rit {
        padding-left: clamp(1rem, 3vw, 2rem);
        padding-right: clamp(1rem, 3vw, 2rem);
    }
    
    .search-container input {
        max-width: 380px;
    }
    
    .text .one, .text .two, .text .three {
        padding: clamp(1.25rem, 3vw, 2rem);
    }
}

/* Large Laptops and Desktops - Enhanced Spacing */
@media (min-width: 1025px) and (max-width: 1440px) {
    .more {
        padding: clamp(4rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
        gap: clamp(3rem, 5vw, 4rem);
    }
    
    .more .lef,
    .more .rit {
        padding-left: clamp(2rem, 4vw, 3rem);
        padding-right: clamp(2rem, 4vw, 3rem);
    }
}

/* Ultra-wide Screens - Maximum Constraints */
@media (min-width: 1441px) {
    .more {
        padding: 5rem 4rem;
        gap: 4rem;
        max-width: 1600px;
        margin: 0 auto;
    }
    
    .more .lef,
    .more .rit {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .search-container input {
        max-width: 450px;
    }
}
        padding-left: clamp(0.5rem, 2vw, 1rem);
        padding-right: clamp(0.5rem, 2vw, 1rem);
    }
}

/* Large Laptops and Desktops - Optimal Spacing */
@media (min-width: 1025px) {
    .more {
        padding: clamp(4rem, 6vw, 6rem) clamp(3rem, 5vw, 5rem);
        gap: clamp(3rem, 5vw, 5rem);
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .more .lef,
    .more .rit {
        padding-left: clamp(1rem, 3vw, 2rem);
        padding-right: clamp(1rem, 3vw, 2rem);
    }
}

/* Ultra-wide Screens - Prevent Over-stretching */
@media (min-width: 1600px) {
    .more {
        max-width: 1600px;
        padding: 6rem 6rem;
        gap: 6rem;
    }
}
        height: 22px;
    }
    
    .social-link span {
        font-size: 0.85rem;
    }
}

/* Mobile Responsive Styles for Hamburger Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 3px 0;
        transition: 0.3s;
    }
    
    /* Force social media visibility on mobile */
    .social-media-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 10 !important;
        padding: 40px 20px !important;
    }
    
    .social-links {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .social-link {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 90% !important;
        max-width: 300px !important;
        justify-content: center !important;
        padding: 15px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .social-link i {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.2rem !important;
        width: auto !important;
        height: auto !important;
    }
    
    .social-link span {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.9rem !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    .menu.active {
        display: flex !important;
    }
    
    .menu li {
        margin: 20px 0;
        list-style: none;
    }
    
    .menu li a {
        color: #fff;
        font-size: 24px;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .menu li a:hover,
    .menu li a.active {
        color: #007bff;
    }
    
    /* Hide regular menu on mobile */
    nav ul {
        display: none;
    }
}

/* WhatsApp Icon Styles */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon a {
    color: white;
    text-decoration: none;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.whatsapp-icon i {
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover i {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive adjustments for WhatsApp icon */
@media (max-width: 768px) {
    .whatsapp-icon {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-icon a {
        font-size: 24px;
    }
}