:root {
    /* Million Dollar Palette - High-End Light Theme */
    --primary: #0066FF;
    --primary-gradient: linear-gradient(135deg, #0066FF 0%, #00C2FF 100%);
    --bg-main: #FFFFFF;
    --bg-soft: #F9FBFF;
    --text-dark: #0F172A;
    --text-gray: #475569;
    --accent: #0066FF;
    --underline-color: #0066FF;
    --border: #E2E8F0;
    --radius: 16px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    background: var(--bg-main); 
    color: var(--text-dark); 
    font-family: 'Poppins', sans-serif; 
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, .logo-text { font-family: 'Poppins', sans-serif; font-weight: 800; }
h1 { font-size: 3.5rem; line-height: 1.15; margin-bottom: 2rem; color: var(--text-dark); }
h1 span { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nowrap { white-space: nowrap; }

h2 { 
    font-size: 3.5rem; 
    margin-bottom: 2rem; 
    text-align: center; 
    position: relative;
    padding-bottom: 20px;
    color: var(--text-dark);
    font-weight: 900;
}
h2::after {
    content: ''; position: absolute; width: 80px; height: 5px;
    background-color: var(--underline-color); bottom: 0; left: 50%;
    transform: translateX(-50%); border-radius: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
}

.subtitle {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

p { color: var(--text-gray); font-size: 1.2rem; margin-bottom: 2rem; }

/* --- Site Header with Premium Glass Effect --- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(241, 246, 255, 0.95); /* Matches Why Unora section background #F1F6FF */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    padding: 15px 0; /* Adjusted padding for leaner header */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
    padding: 10px 0;
    background: rgba(241, 246, 255, 0.98);
    box-shadow: var(--shadow-sm);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

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

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.container.centered { display: flex; flex-direction: column; align-items: center; text-align: center; }
.container.centered p { max-width: 800px; }

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-text { font-size: 1.8rem; letter-spacing: -1px; color: #002D72; }
.logo-text span { color: var(--primary); }

.nav-links a { 
    text-decoration: none; color: var(--text-dark); 
    margin: 0 1.5rem; font-weight: 600; font-size: 1rem;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after, .nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:active {
    color: #00C2FF !important;
}

.nav-links a:last-child {
    margin-right: 0;
}

.mobile-nav-header, .mobile-nav-footer { display: none; }
.nav-items-wrapper { display: flex; align-items: center; }

/* --- Hero --- */
.hero {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.banner-hero {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(0, 45, 114, 0.6)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
    background-attachment: fixed;
}

.hero-container-centered { 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.banner-hero h1 {
    color: #FFFFFF;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.banner-hero h1 span {
    background: linear-gradient(135deg, #00C2FF 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 750px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.badge {
    display: inline-block; padding: 0.6rem 1.2rem; background: #EFF6FF;
    color: var(--primary); border-radius: 50px; font-weight: 700;
    font-size: 0.85rem; margin-bottom: 2rem; border: 1px solid #DBEAFE;
}

/* --- Lively Buttons (Hover & Active States) --- */
.btn {
    display: inline-flex; justify-content: center; align-items: center; padding: 0.75rem 1.8rem; border-radius: 50px;
    font-weight: 700; text-decoration: none; transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s, background-color 0.25s, border-color 0.25s;
    cursor: pointer; border: none; font-size: 0.95rem;
    position: relative;
}

.btn-primary { 
    background: var(--primary-gradient); 
    color: white; 
    box-shadow: 0 8px 16px rgba(0, 102, 255, 0.15); 
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.25);
    background: linear-gradient(135deg, #0052cc 0%, #0099ff 100%);
}

.btn-secondary-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.25);
}

/* Active scale click effect on hoverable elements for immediate lively feedback */
.btn:active, .btn-primary:active, .btn-secondary-outline:active, .btn-learn-more:active, .social-icon:active, .menu-toggle:active {
    transform: translateY(-1px) scale(0.96) !important;
    transition: transform 0.1s ease !important;
}

.story-card, .contact-card {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 102, 255, 0.05);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    transition: var(--transition);
}

.story-card:hover, .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 120px rgba(0, 102, 255, 0.05);
}

/* --- Services Grid: Premium Image-Box Overlays --- */
.services { padding: 100px 0; background: var(--bg-soft); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}
.service-card {
    position: relative;
    height: 380px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
    cursor: pointer;
}
.service-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.65) 50%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}
.service-card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.2rem;
    color: #FFFFFF;
}
.service-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}
.service-card .icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0;
}
.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}
.service-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 1.8rem;
    font-weight: 300;
}
.btn-learn-more {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #FFFFFF;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s, background 0.2s, border-color 0.2s;
}
.btn-learn-more svg {
    transition: transform 0.25s ease;
}

/* Hover effects */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: var(--primary);
}
.service-card:hover .service-card-img {
    transform: scale(1.1);
}
.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(0, 102, 255, 0.95) 0%, rgba(15, 23, 42, 0.8) 60%, rgba(15, 23, 42, 0.3) 100%);
}
.service-card:hover .btn-learn-more {
    transform: translateY(0);
    opacity: 1;
}
.btn-learn-more:hover {
    background: #FFFFFF;
    color: var(--primary);
    border-color: #FFFFFF;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.15);
}
.btn-learn-more:hover svg {
    transform: translateX(3px);
}

/* --- Why Choose Us --- */
.why-choose-us-new { padding: 100px 0; background: #F1F6FF; }
.why-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem; 
    justify-content: center; /* Center Grid Items */
}
.why-item { 
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid rgba(0, 102, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}
.why-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.why-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
    display: inline-block;
}
.why-item h3 { 
    font-size: 1.4rem; 
    margin-bottom: 1.2rem; 
    font-weight: 700;
    color: var(--text-dark);
}
.why-bullets {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0 0; /* Added spacing between heading and first bullet */
    width: 100%;
}
.why-bullet {
    font-size: 0.95rem;
    color: var(--text-gray);
    padding: 6px 0; /* Adjusted padding since border lines are removed */
    display: flex;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.5;
    transition: var(--transition);
}
.why-bullet:last-child {
    padding-bottom: 0;
}
.why-bullet:first-child {
    padding-top: 0;
}
.why-bullet .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 8px;
    flex-shrink: 0;
    transition: var(--transition);
}
.why-item:hover .why-bullet .dot {
    transform: scale(1.2);
    background: #00C2FF;
}

/* --- About Us (Centered Story) --- */
.about { padding: 100px 0; }
.about-text-wrapper { max-width: 900px; margin: 0 auto; }
.check-list-centered {
    list-style: none; display: inline-flex; flex-direction: column;
    text-align: left; gap: 1rem; margin-top: 2.5rem; padding: 0;
}
.check-list-centered li { position: relative; padding-left: 2rem; font-weight: 600; font-size: 1.1rem; }
.check-list-centered li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 900; }

/* --- Contact Us (Details Box) --- */
.contact { padding: 100px 0; }
.contact-details-box { display: flex; gap: 3rem; margin-top: 3rem; flex-wrap: wrap; justify-content: center; }
.contact-item {
    display: flex; align-items: center; gap: 1rem; background: white;
    padding: 1.2rem 2.5rem; border-radius: 50px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border); transition: var(--transition);
}
.contact-item:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: var(--shadow-lg); }
.contact-item a { text-decoration: none; color: var(--text-dark); font-weight: 700; font-size: 1.2rem; }
.contact-icon { font-size: 1.5rem; }

/* --- Footer aligned with new.html --- */
.footer { 
    padding: 12px 8%; 
    background: #F1F6FF; /* Matches the soft ice-blue background from Why Unora section */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}
.footer-logo-small { margin-bottom: 0; }
.logo-text-footer { 
    font-weight: 800; 
    font-size: 1.15rem; /* Reduced logo size */
    color: #002D72; /* Keep original brand color */
    letter-spacing: -0.5px; 
    display: inline-block;
}
.logo-text-footer span { color: var(--primary); /* Keep original primary blue */ }
.copyright-white { 
    font-size: 11.5px; /* Leaner, smaller text size */
    color: var(--text-gray); /* High-contrast readable dark gray for light background */
    font-weight: 400; 
    letter-spacing: 0.5px; 
    margin-top: 0;
    margin-bottom: 0;
}

/* --- Animations --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

.menu-toggle { display: none; }

@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-visual { order: -1; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 320px; /* Sleek side panel */
        background: white; /* Light professional background */
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 3rem;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
        border-left: 1px solid var(--border);
        overflow: hidden; /* Prevent massive icon overflow */
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-nav-header {
        display: block;
        margin-bottom: 4rem;
        width: 100%;
        text-align: left;
    }

    .mobile-nav-header .logo-text {
        color: #002D72; /* Dark blue as requested */
        font-size: 1.4rem;
    }

    .nav-items-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-links a {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: #0F172A; /* Dark for visibility on white */
        text-decoration: none;
        letter-spacing: 0.5px;
        transition: var(--transition);
        position: relative;
        padding-left: 0;
        opacity: 0;
        transform: translateX(20px);
    }
    .nav-links a::after {
        display: none !important; /* Disable desktop sliding underlines on mobile */
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 50%;
        width: 0;
        height: 1px;
        background: var(--primary);
        transition: var(--transition);
    }

    .nav-links a:hover {
        color: white;
        padding-left: 10px;
    }

    .nav-links a:hover::before {
        width: 15px;
    }

    /* Staggered Animation */
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.30s; }
    .nav-links.active a:nth-child(6) { transition-delay: 0.35s; }

    .mobile-nav-footer {
        display: block;
        width: 100%;
        margin-top: auto; /* Push to bottom */
        padding-top: 2rem;
    }

    .social-links-mobile {
        display: flex;
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .social-links-mobile .social-icon {
        width: 24px;
        height: 24px;
        opacity: 1;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1000;
        padding: 5px;
    }

    .menu-toggle .bar {
        display: block;
        width: 24px;
        height: 2px;
        margin: 5px auto;
        transition: all 0.3s ease;
        background: var(--text-dark);
    }

    /* Animate Hamburger to X */
    .menu-toggle.is-active .bar { background: var(--text-dark) !important; }
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* --- Clients Slider (Automated Loop) --- */
.clients-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.clients-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.clients-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
}

.client-logo {
    flex: 0 0 25%; /* Show 4 logos at once */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo img {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

/* Balance sizes - scaling down 'big' logos and scaling up 'small' ones */
.logo-ge img, 
.logo-emaar img { 
    transform: scale(0.8); 
}

.logo-dh img, 
.logo-ibs img { 
    transform: scale(1.3); 
}

.logo-deloitte img, 
.logo-clover img { 
    transform: scale(1.6); 
}

/* --- Contact Section (New Design) --- */
.section-title-alt {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.contact-card-new {
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.contact-card-new h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item-new {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item-new p {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--text-gray);
}

.whatsapp-phone-link {
    font-weight: 400 !important;
    color: var(--text-gray) !important;
    text-decoration: none !important;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 24px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* --- Sleeker Small Social Icons --- */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #F1F5F9;
    padding: 6px;
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.2s;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.12);
    background-color: var(--primary);
    box-shadow: 0 8px 16px rgba(0, 102, 255, 0.15);
}

.social-icon:hover img {
    filter: brightness(0) invert(1);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #F8FAFC;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.btn-block {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero { padding-top: 120px; }
    .section-header { margin-bottom: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-card-new { padding: 2.5rem 1.5rem; }
    .client-logo { flex: 0 0 100%; }
    .container { padding: 0 1.5rem; }
    .logo-text { font-size: 1.5rem; }
    .social-icon {
        width: 40px;
        height: 40px;
    }
    .social-links {
        gap: 1.2rem;
        justify-content: flex-start; /* Align left as requested */
        margin-top: 1.5rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .client-logo {
        flex: 0 0 50%;
    }
}

/* --- Clickable WhatsApp Phone Link --- */
.whatsapp-phone-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    position: relative;
}

.whatsapp-phone-link:hover {
    color: #25D366; /* Vibrant WhatsApp Green */
    transform: translateY(-2px) scale(1.1); /* Elegant lift and pop */
    text-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); /* Premium glow */
}

/* --- Blog Page Styles --- */
.blog-hero {
    padding: 110px 0 20px;
    background: radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.04), transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 194, 255, 0.04), transparent 40%);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.blog-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    line-height: 1.15;
}

.blog-hero p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.blog-section {
    padding: 80px 0;
    background: var(--bg-soft);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    justify-content: center;
}

.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.06);
    border-color: rgba(0, 102, 255, 0.15);
}
.blog-card:hover img {
    transform: scale(1.08);
}

.blog-img-gradient {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Abstract Premium Geometric Gradients */
.grad-1 { background: linear-gradient(135deg, #0066FF 0%, #00C2FF 100%); }
.grad-2 { background: linear-gradient(135deg, #7C3AED 0%, #F43F5E 100%); }
.grad-3 { background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%); }
.grad-4 { background: linear-gradient(135deg, #F59E0B 0%, #E11D48 100%); }

.blog-img-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
    background-size: 20px 20px;
}

.blog-img-icon {
    font-size: 3.5rem;
    color: white;
    z-index: 1;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
    transition: var(--transition);
}

.blog-card:hover .blog-img-icon {
    transform: scale(1.1) rotate(5deg);
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-category {
    background: #EFF6FF;
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: #94A3B8;
}

.blog-card-content h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: var(--transition);
}

.blog-card-content h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card-content h3 a:hover {
    color: var(--primary);
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-readmore {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.blog-readmore:hover {
    color: #004ecc;
    gap: 0.75rem;
}
