/* Design System for SR Royal Glass Art & Aluminium Works */
:root {
    /* Color Palette - Premium Light Sky Blue Theme */
    --bg-primary: #f0f9ff;
    /* Very Light Blue */
    --bg-secondary: #e0f2fe;
    /* Light Blue */
    --bg-card: rgba(255, 255, 255, 0.8);
    --accent: #0ea5e9;
    /* Sky Blue Accent */
    --accent-glow: rgba(14, 165, 233, 0.2);
    --text-primary: #0f172a;
    /* Dark Slate for readability */
    --text-secondary: #475569;
    --glass-border: rgba(14, 165, 233, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.4);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.brand-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding {
    padding: 100px 0;
}

.mt-50 {
    margin-top: 50px;
}

.center {
    text-align: center;
}

.highlight {
    color: var(--accent);
}

.subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 12px;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #000;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
    color: #fff;
}

.header-cta .btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.header-cta .btn:hover {
    background: #fff;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    height: 130px;
    width: auto;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    animation: pulseLogo 2s ease-in-out infinite;
    filter: invert(53%) sepia(93%) saturate(1313%) hue-rotate(170deg) brightness(97%) contrast(92%);
}

@keyframes pulseLogo {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.progress-bar {
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: loading 2s linear infinite;
}

@keyframes loading {
    to {
        left: 100%;
    }
}

/* Header & Navbar - Unified across all pages */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 10px 0;
    /* Keeps it the same even when scrolled */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

header.scrolled .logo-img {
    height: 80px;
}

.footer .logo {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.15);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.footer .logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.25);
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: invert(53%) sepia(93%) saturate(1313%) hue-rotate(170deg) brightness(97%) contrast(92%);
}

.logo-prefix {
    color: var(--accent);
}

.logo-suffix {
    font-weight: 300;
    opacity: 1;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    /* White for contrast on dark/hero backgrounds */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    /* For parallax effect starting point */
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 11, 0.5), rgba(0, 0, 0, 0.4));
}

.hero-content h1 {
    font-size: clamp(40px, 8vw, 84px);
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-size: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-down span {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.7;
}

.scroll-down .line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* Service cards */
.service-card {
    padding: 0;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-img {
    width: 100%;
    height: 400px;
    background: #f1f5f9;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.service-card-content {
    padding: 30px;
    flex-grow: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.card-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.link-more {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Floating Buttons */
.floating-contact {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.float-btn.whatsapp {
    background: #25d366;
}

.float-btn.call {
    background: var(--accent);
}

.float-btn:hover {
    transform: scale(1.15) rotate(15deg);
}

.back-to-top {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle span {
        display: block;
        width: 30px;
        height: 2px;
        background: #fff;
        margin-bottom: 6px;
        transition: var(--transition-smooth);
    }
}

/* ---------------------------------
   8. About Us - Ultra Premium Redesign
   --------------------------------- */
.why-choose {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    z-index: 1;
}



.about-company-header { margin-bottom: 25px; }
.about-subtitle-royal { 
    color: #0ea5e9; 
    text-transform: uppercase; 
    letter-spacing: 6px; 
    font-size: 13px; 
    font-weight: 700; 
    margin-bottom: 15px;
    display: block;
}

.about-h2-royal { 
    color: var(--text-primary); 
    font-size: clamp(36px, 5vw, 54px); 
    line-height: 1.15; 
    font-weight: 800; 
    margin-bottom: 30px; 
}

.about-p-royal { 
    color: var(--text-secondary); 
    font-size: 19px; 
    line-height: 1.8; 
    margin-bottom: 30px; 
    max-width: 620px;
    font-weight: 400;
}

/* Feature Grid - Glass Icons */
.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.about-feat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-feat-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: #0ea5e9;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.about-feat-card i { 
    font-size: 22px; 
    color: #0ea5e9; 
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 12px;
    transition: 0.5s;
}

.about-feat-card:hover i { background: #0ea5e9; color: #fff; transform: rotate(10deg); }
.about-feat-card h4 { color: #fff; font-size: 15px; font-weight: 600; }

/* Image Side - Overlapping Aesthetics */
.about-image-stack {
    position: relative;
    padding: 10px;
}

.about-main-img {
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.about-main-img img {
    width: 100%; height: auto; display: block;
    transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-image-stack:hover .about-main-img img {
    transform: scale(1.08);
}

/* Floating Badge */
.about-float-badge {
    position: absolute;
    top: -20px; right: -20px;
    background: var(--accent);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #000;
    text-align: center;
    z-index: 5;
    animation: floatingBadge 4s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@keyframes floatingBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.about-float-badge .num { font-size: 40px; font-weight: 900; color: #fff; line-height: 1; display: block; margin-bottom: 5px; }
.about-float-badge .txt { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }

@media (max-width: 1024px) {
    .about-feature-grid { grid-template-columns: 1fr; }
    .about-image-stack { margin-top: 70px; }
}

/* Portfolio */
.portfolio-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 15px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
    color: #fff;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* CTA Banner */
.cta-inner {
    padding: 80px;
    text-align: center;
    background: url('../assets/images/1 (8).jpeg') center/cover;
    position: relative;
    border: none;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 11, 0.82);
    border-radius: 16px;
}

.cta-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.cta-content h2 {
    font-size: clamp(30px, 5vw, 42px);
    margin-bottom: 20px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    padding-top: 100px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 80px;
}

.footer-col h4 {
    margin-bottom: 30px;
    font-size: 18px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.15);
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
    flex-wrap: wrap;
    gap: 15px;
}

.why-choose {
    overflow: hidden;
}

/* ---------------------------------
   Page Specific Styles
   --------------------------------- */

/* Page Title - Premium Image Banner */
.page-title {
    text-align: center;
    padding: 80px 0 !important;
    margin-top: 0 !important;
    position: relative;
    background: url('../assets/images/ab.jpg') center/cover no-repeat;
    overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark shade for text readability */
    backdrop-filter: blur(5px); /* Moderate blur */
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

.page-title .container {
    position: relative;
    z-index: 2;
}

.page-title h1, 
.page-title h2 {
    color: #ffffff !important;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-title .subtitle,
.page-title span {
    color: #0ea5e9 !important; /* Maintain the sky blue accent */
    font-weight: 700;
}

.page-title p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.mv-card {
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    transition: var(--transition-smooth);
}

.mv-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.mv-card i {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Stats Pill System */
/* Stats Section - Premium Redesign */
.stats-pill-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr; /* Mobile default */
    align-items: stretch;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet */
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr); /* Desktop */
    }
}

.stat-pill {
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 20px;
    text-align: center;
    transition: background 0.4s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.05);
}

.stat-pill:hover {
    transform: scale(1.03); /* Remove translateY to keep perfect linear alignment */
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.stat-graph-mini {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.stat-pill:hover .stat-graph-mini {
    transform: scale(1.1);
}

.stat-graph-mini svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-graph-mini circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.stat-graph-mini circle.bg {
    stroke: rgba(14, 165, 233, 0.1);
}

.stat-graph-mini circle.prog {
    stroke: var(--accent);
    stroke-dasharray: 283;
    stroke-dashoffset: 283; /* Start at 0 progress */
    transition: stroke-dashoffset 2s cubic-bezier(0.2, 0, 0.2, 1);
    filter: drop-shadow(0 0 5px rgba(14, 165, 233, 0.3));
}

.stat-num-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    z-index: 1;
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-left: 2px;
}

.stat-title {
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 220px;
}

/* FAQ Page - Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid rgba(14, 165, 233, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.1);
}

.accordion-item.active {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
}

.accordion-header {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #ffffff;
}

.accordion-header h3 {
    font-size: 20px;
    margin: 0;
    color: #1e293b;
    font-weight: 600;
}

.accordion-header i {
    color: var(--accent);
    transition: transform 0.4s ease;
    font-size: 18px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 35px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafcfe;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
    padding: 10px 35px 30px;
    border-top: 1px solid rgba(14, 165, 233, 0.05);
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}

/* Contact Page */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    padding-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.form-container {
    padding: 50px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    margin-top: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: var(--accent);
}

.w-100 {
    width: 100%;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Map */
.map-container {
    border-radius: 0;
    overflow: hidden;
    height: 600px;
    border: none;
    width: 100%;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why We Are Better - Premium Light/Bright Section */
.why-better {
    background: url('https://images.unsplash.com/photo-1541888941259-79040375626a?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    color: #1e293b;
    z-index: 1;
}

.why-better::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(224, 242, 254, 0.8) 100%);
    backdrop-filter: blur(25px);
    z-index: -1;
}

.bg-glow-light {
    position: absolute;
    top: -20%; left: -20%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    animation: moveGlow 20s infinite alternate ease-in-out;
}

.subtitle.neon-light {
    display: inline-block;
    color: #0369a1;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.light-h2 { color: #0f172a; font-size: clamp(36px, 6vw, 54px); font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.light-h2 .highlight-gradient {
    background: linear-gradient(90deg, #0ea5e9, #0284c7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.light-p { color: #475569; font-size: 19px; line-height: 1.7; margin-bottom: 40px; max-width: 550px; font-weight: 500; }

.experience-float-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    padding: 35px 45px;
    border-radius: 30px;
    border: 1px solid rgba(14, 165, 233, 0.3);
    width: fit-content;
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.1);
    animation: floatVertical 6s ease-in-out infinite;
}

@keyframes floatVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.experience-float-card .num { font-size: 60px; font-weight: 900; color: #0ea5e9; line-height: 1; }
.experience-float-card .content h4 { font-size: 20px; color: #0f172a; margin-bottom: 5px; font-weight: 700; }
.experience-float-card .content p { font-size: 14px; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Feature Cards - Light Glass */
.feature-grid-light {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.85); /* Increased opacity for visibility */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); /* Proper shadow to define shape */
}

.glass-card-light:hover {
    transform: translateY(-12px) scale(1.02);
    background: #ffffff;
    border-color: #0ea5e9;
    box-shadow: 0 25px 60px rgba(14, 165, 233, 0.2);
}

.card-icon-wrap {
    width: 65px; height: 65px;
    background: rgba(14, 165, 233, 0.15); /* Slightly darker bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.5s;
}

.glass-card-light:hover .card-icon-wrap {
    background: #0ea5e9;
    transform: rotateY(180deg);
}

.card-icon-wrap i { font-size: 28px; color: #0ea5e9; transition: 0.5s; }
.glass-card-light:hover .card-icon-wrap i { color: #fff; }

.glass-card-light h3 { font-size: 20px; color: #0f172a; margin-bottom: 12px; font-weight: 700; }
.glass-card-light p { font-size: 15px; color: #334155; line-height: 1.6; font-weight: 600; } /* Darker text */

@media (max-width: 1024px) {
    .feature-grid-light { grid-template-columns: 1fr; }
    .why-header-col { margin-bottom: 60px; text-align: center; }
    .light-p { margin: 0 auto 40px; }
    .experience-float-card { margin: 0 auto; }
}

/* ---------------------------------

/* Testimonials Slider - Strict Alignment & Ultra-Glass */
.testimonials-slider-container {
    overflow: hidden;
    padding: 50px 0;
    width: 100%;
    position: relative;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollTestimonials 60s linear infinite;
}

.testimonials-slider:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.testimonial-card {
    min-width: 400px;
    max-width: 400px;
    flex: 0 0 400px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-20px);
    background: rgba(255, 255, 255, 0.8);
    border-color: #0ea5e9;
    box-shadow:
        0 40px 80px -20px rgba(14, 165, 233, 0.25),
        inset 0 0 25px rgba(14, 165, 233, 0.1);
}

.quote-icon {
    font-size: 50px;
    color: #0ea5e9;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 4px 8px rgba(14, 165, 233, 0.3));
}

.testimonial-card:hover .quote-icon {
    transform: rotate(-15deg) scale(1.15);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 40px;
    font-size: 17px;
    line-height: 1.9;
    color: #1e293b;
    flex-grow: 1;
}

.client-info {
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 25px;
}

.client-info strong {
    display: block;
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 6px;
}

.client-info span {
    font-size: 13px;
    color: #0ea5e9;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.process-step {
    padding: 50px 30px;
    position: relative;
}

.step-num {
    font-size: 60px;
    font-weight: 900;
    position: absolute;
    top: -20px;
    right: 20px;
    opacity: 0.1;
    color: var(--accent);
}

.process-step h4 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 20px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Section BG Alternative for Detail */
.glass-bg-alt {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

/* Light Sky Blue Theme Refinements */
.highlight {
    color: var(--accent) !important;
}

.subtitle {
    color: #0369a1 !important;
}

.btn-primary {
    background: var(--accent) !important;
    color: #fff !important;
}

.btn-outline {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}

.btn-outline:hover {
    background: var(--accent) !important;
    color: #fff !important;
}

.card-icon i,
.mv-card i,
.info-item i,
.features-list i {
    color: var(--accent) !important;
}

.footer-col h4::after {
    background: var(--accent) !important;
}

.loader-content .logo-text {
    background: linear-gradient(90deg, #0ea5e9, #60a5fa, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
}

.progress-bar::after {
    background: var(--accent) !important;
}

/* Final Blue Theme Refinements */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        padding: 40px 20px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }
}

/* Custom Selection Color */
::selection {
    background: var(--accent);
    color: #fff;
}

/* Subtle Animation for Glass Cards */
.glass {
    transition: background 0.3s ease, transform 0.3s ease;
}

.glass:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Tools Section Styles (Ultra Full-Width) */
.tools-section {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.tools-section .container {
    max-width: 100%;
    width: 98%;
    padding: 0 40px;
}

.tools-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #0ea5e9;
    padding-bottom: 25px;
    margin-bottom: 60px;
}

.tools-header h2 {
    font-size: 42px;
    text-transform: uppercase;
    font-weight: 300;
    color: #333;
    letter-spacing: 4px;
}

.tools-nav {
    display: flex;
    gap: 20px;
}

.nav-arrow {
    width: 60px;
    height: 60px;
    border: 2px solid #0ea5e9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0ea5e9;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-arrow:hover {
    background: #0ea5e9;
    color: #fff;
    transform: scale(1.1);
}

.tools-grid {
    display: flex;
    gap: 60px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 50px;
}

.tools-grid::-webkit-scrollbar {
    height: 6px;
    background: #f0f9ff;
}

.tools-grid::-webkit-scrollbar-thumb {
    background: #0ea5e9;
    border-radius: 10px;
}

.tool-card {
    min-width: 550px;
    scroll-snap-align: start;
    flex: 0 0 550px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tool-info {
    display: flex;
    flex-direction: column;
}

.tool-info h3 {
    font-size: 32px;
    font-weight: 500;
    color: #222;
    margin-bottom: 20px;
}

.tool-info p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 480px;
}

.tool-link {
    color: #0ea5e9;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border: 2px solid #0ea5e9;
    border-radius: 50px;
    transition: var(--transition-smooth);
    width: fit-content;
}

.tool-link i {
    font-size: 12px;
}

.tool-link:hover {
    background: #0ea5e9;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.tool-img {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f9ff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tool-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tool-card:hover .tool-img img {
    transform: scale(1.08);
}

/* Reverse layout for specific cards to match the reference look */
.tool-card.reverse {
    flex-direction: column-reverse;
}

@media (max-width: 768px) {
    .tool-card {
        min-width: 300px;
        flex: 0 0 300px;
    }

    .tool-img {
        height: 240px;
    }

    .tools-header h2 {
        font-size: 24px;
    }
}