/* ============================================
   TAILWIND INTEGRATION & ENHANCEMENTS
   Modern CSS with Animations
   ============================================ */

/* Custom Tailwind Config Override */
:root {
    --primary-color: #0b2f6a;
    --secondary-color: #3ba4ff;
    --accent-color: #6ed0ff;
    --dark-bg: #06224b;
    --light-bg: #eef6ff;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================
   BASE LAYOUT
   ============================================ */

body {
    margin: 0;
    font-family: "Lato", sans-serif;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 40%, #f1f8ff 100%);
    line-height: 1.6;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sticky {
    position: sticky;
    top: 0;
    z-index: 50;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: var(--primary-color);
    color: var(--text-light);
    border-bottom: 2px solid var(--secondary-color);
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 6px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: var(--text-light);
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color), #000);
    color: var(--text-light);
    text-align: center;
    padding: 70px 0;
}

.page-header h1 {
    font-size: 2.6rem;
    margin: 0 0 10px;
    font-weight: 700;
}

.page-header p {
    margin: 0 auto;
    max-width: 780px;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   NAVIGATION ENHANCEMENTS
   ============================================ */

.navbar {
    background: #eef2f5;
    padding: 0;
    box-shadow: var(--shadow-lg);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.logo-img {
    width: auto;
    height: 80px;
    object-fit: contain;
}

.logo:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--primary-color);
    display: block;
    transition: all 0.3s ease;
}

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    position: static;
    background: transparent;
    flex-direction: row;
    padding: 0;
    border: none;
    width: auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color);
    background-color: transparent;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    display: none;
    flex-direction: column;
    border-top: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    overflow: hidden;
}

.nav-item:hover .dropdown-menu {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    color: var(--primary-color);
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(59, 164, 255, 0.18), transparent);
    border-left-color: var(--secondary-color);
    color: var(--secondary-color);
    padding-left: 24px;
}

/* ============================================
   HERO SECTION ENHANCEMENTS
   ============================================ */

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), #000);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 107, 53, 0.1));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

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

/* ============================================
   BUTTONS & LINKS
   ============================================ */

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #000);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 164, 255, 0.35);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* ============================================
   STATS BAR ENHANCEMENTS
   ============================================ */

.stats-bar {
    background: linear-gradient(135deg, var(--primary-color), #000);
    padding: 40px 0;
    border-top: 4px solid var(--secondary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.05);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    min-width: 60px;
    text-align: center;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0 0;
}

/* ============================================
   CARD ENHANCEMENTS
   ============================================ */

.feature-card,
.service-card,
.testimonial-card,
.about-highlights .highlight-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover,
.about-highlights .highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary-color);
}

.feature-icon,
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon,
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

/* ============================================
   SECTION STYLING
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 60px 20px;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.about-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-cta {
    margin-top: 30px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.highlight-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-overview {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* ============================================
   INDEX SERVICES STRIP
   ============================================ */

.services-strip {
    padding: 70px 0;
    background: #ffffff;
}

.services-strip-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.services-strip-header h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin: 0 0 8px;
    font-weight: 700;
}

.services-strip-header p {
    margin: 0;
    color: #5b6472;
}

.services-strip-controls {
    display: flex;
    gap: 10px;
}

.services-scroll-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(11, 47, 106, 0.15);
    background: #ffffff;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.services-scroll-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.services-strip-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(360px, 1fr);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-strip-track::-webkit-scrollbar {
    display: none;
}

.services-strip-track::-webkit-scrollbar-thumb {
    background: rgba(11, 47, 106, 0.2);
    border-radius: 999px;
}

.service-slide {
    position: relative;
    border-radius: 18px;
    min-height: 520px;
    overflow: hidden;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: #ffffff;
    scroll-snap-align: start;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 18, 40, 0.2), rgba(7, 18, 40, 0.75));
    z-index: 0;
}

.service-slide-content {
    position: relative;
    z-index: 1;
    padding: 22px;
    display: grid;
    gap: 10px;
}

.service-slide-content i {
    font-size: 1.6rem;
}

.service-slide-content h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.service-slide-content span {
    font-weight: 600;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.service-slide:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(11, 47, 106, 0.35);
}

.service-overview {
    padding: 40px 0 0;
}

.service-overview .container {
    max-width: 900px;
    text-align: center;
}

.service-overview h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-overview p {
    color: #4b5563;
    line-height: 1.8;
}

/* ============================================
   SERVICE VIDEO
   ============================================ */

.service-video {
    padding: 30px 0 10px;
    background: #ffffff;
}

.service-video-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #0b2f6a;
    aspect-ratio: 16 / 9;
}

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

.services-intro h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.service-showcase-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow);
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary-color);
}

.service-showcase-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 18px;
}

.service-showcase-media {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    margin-bottom: 18px;
    position: relative;
}

.service-showcase-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 18, 40, 0.05), rgba(7, 18, 40, 0.45));
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
    color: #555;
}

.service-features li {
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.service-features li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-process {
    background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 100%);
    padding: 60px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.process-step {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 3px solid var(--secondary-color);
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 700;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #000);
    color: white;
    padding: 70px 0;
    text-align: center;
}

.cta-content {
    max-width: 820px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.company-story {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.story-content h2 {
    font-size: 2.1rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.story-highlight .highlight-box {
    background: var(--light-bg);
    border-left: 4px solid var(--secondary-color);
    padding: 24px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.core-values {
    padding: 60px 0;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.value-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 12px;
}

.commitment-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.commitment-card {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.commitment-icon {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.why-choose-us {
    padding: 60px 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-content {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-form-section,
.contact-info-section {
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.15);
}

.form-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #666;
}

.contact-info-card {
    background: var(--light-bg);
    padding: 16px;
    border-radius: 10px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-content a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.05);
}

.office-hours {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 100%);
    text-align: center;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.hours-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

.service-details {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.details-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 32px;
    align-items: start;
}

.details-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.details-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 28px 0 12px;
}

.details-content p {
    color: #4b5563;
    line-height: 1.8;
}

.service-list {
    display: grid;
    gap: 12px;
    margin: 20px 0;
    list-style: none;
    padding: 0;
}

.list-item {
    background: #f4f8ff;
    padding: 16px 18px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 26px 1fr;
    column-gap: 14px;
    align-items: start;
    border: 1px solid rgba(11, 47, 106, 0.08);
    display: grid !important;
    list-style: none !important;
}

.list-item i {
    color: var(--secondary-color);
    margin-top: 2px;
}

.list-item .logo-img {
    width: 26px;
    height: 26px;
}

.list-item h3,
.list-item h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    color: var(--primary-color);
    grid-column: 2;
}

.list-item p {
    margin: 0;
    color: #5b6472;
    grid-column: 2;
}

.list-item::marker {
    content: "";
}

.tech-list {
    margin: 12px 0 0;
    padding-left: 0;
    color: #555;
    list-style: none;
}

.details-sidebar .sidebar-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
    border: 1px solid rgba(11, 47, 106, 0.08);
}

.details-sidebar .sidebar-card h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.sidebar {
    display: grid;
    gap: 18px;
}

.sidebar .sidebar-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(11, 47, 106, 0.08);
}

.sidebar .sidebar-card h2,
.sidebar .sidebar-card h3,
.sidebar .sidebar-card h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.cta-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), #000);
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 164, 255, 0.35);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

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

.related-services li {
    margin-bottom: 8px;
}

.related-services a {
    color: var(--primary-color);
    text-decoration: none;
}

.details-sidebar ul {
    padding-left: 0;
    margin: 10px 0 0;
    color: #4b5563;
    list-style: none;
}

.related-services a:hover {
    color: var(--secondary-color);
}

.benefits-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.benefit-card {
    background: #ffffff;
    padding: 26px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(11, 47, 106, 0.08);
}

.benefit-card i {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--primary-color), #000);
    color: white;
    padding: 50px 20px 20px;
}

.footer-glass {
    position: relative;
    overflow: hidden;
}

.footer-glass .container,
.footer-glass .max-w-7xl,
.footer-glass .footer-content,
.footer-glass .footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.glass-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    animation-duration: 14s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.glass-blob.blob-1 {
    width: 220px;
    height: 220px;
    left: -60px;
    bottom: -80px;
    animation-name: blobFloat1;
}

.glass-blob.blob-2 {
    width: 300px;
    height: 300px;
    right: -90px;
    top: -120px;
    animation-name: blobFloat2;
}

.glass-blob.blob-3 {
    width: 180px;
    height: 180px;
    right: 25%;
    bottom: -60px;
    animation-name: blobFloat3;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, 20px) scale(0.97); }
}

@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -20px) scale(1.08); }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-lg);
}

.office-info {
    margin-bottom: 20px;
}

.office-info strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.office-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 99;
}

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

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

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    #hero {
        background: linear-gradient(135deg, var(--primary-color), #000);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .services-strip-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-strip-controls {
        align-self: flex-end;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        display: flex !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #eef2f5;
        flex-direction: column;
        padding: 0 0;
        border-top: 3px solid var(--secondary-color);
        z-index: 100;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.55s ease-in-out, opacity 0.35s ease-in-out;
    }

    .nav-menu.active {
        max-height: 70vh;
        opacity: 1;
        padding: 12px 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(59, 164, 255, 0.2);
    }

    .nav-link {
        padding: 12px 20px;
    }

    #navbar .logo-img {
        height: 64px;
    }

    #navbar .flex {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    #hero {
        min-height: calc(100svh - 72px);
        height: auto;
    }

    .page-header {
        padding: 50px 0;
    }

    .story-grid,
    .contact-grid,
    .details-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .services-showcase {
        grid-template-columns: 1fr;
    }

    .dropdown-menu {
        position: static;
        display: flex;
        border: none;
        border-top: 1px solid rgba(59, 164, 255, 0.2);
        box-shadow: none;
        background: rgba(59, 164, 255, 0.08);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(-4px);
        transition: max-height 0.45s ease-in-out, opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }

    .nav-item.dropdown.active .dropdown-menu {
        max-height: 420px;
        opacity: 1;
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
        z-index: 101;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   AOS ANIMATION CUSTOMIZATION
   ============================================ */

[data-aos] {
    opacity: 0;
}

[data-aos].aos-animate {
    opacity: 1;
    animation-duration: 0.8s;
}

/* ============================================
   CUSTOM ANIMATIONS
   ============================================ */

@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);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-slide-left {
    animation: slideInLeft 0.6s ease;
}

.animate-slide-right {
    animation: slideInRight 0.6s ease;
}

.animate-zoom-in {
    animation: zoomIn 0.6s ease;
}

.animate-rotate {
    animation: rotate360 2s linear infinite;
}
