/* 
   24x7servicehelpline - Premium Stylesheet
   Design System, Utilities, Layout, Components, and Animations
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #0f4c81;        /* Deep Cobalt Blue */
    --primary-light: #185c99;  /* Lighter Cobalt Blue */
    --secondary: #00a8cc;      /* Active Cyan */
    --secondary-hover: #008ba8;
    --dark: #1e293b;           /* Slate Dark */
    --light: #f8fafc;          /* Soft White Background */
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --text: #334155;
    
    --font-main: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-full: 9999px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
}

.section-padding {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Typography & Visual Helpers */
.text-center { text-align: center; }
.color-primary { color: var(--primary); }
.color-secondary { color: var(--secondary); }

.section-title-wrapper {
    margin-bottom: 3.5rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--border-radius-full);
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Sticky Header & Navigation */
.top-bar {
    background-color: var(--dark);
    color: var(--white);
    font-size: 0.9rem;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-info {
    display: flex;
    gap: 1.5rem;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-socials {
    display: flex;
    gap: 1rem;
}

.top-socials a:hover {
    color: var(--secondary);
}

.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link:hover, .nav-item:hover > .nav-link {
    color: var(--primary);
}

/* Mega Dropdowns & Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 1001;
    border: 1px solid var(--gray-200);
}

.mega-menu {
    width: 650px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 0.4rem;
}

.dropdown-list li {
    margin-bottom: 0.5rem;
}

.dropdown-list a {
    color: var(--text);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-list a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.cta-btn-nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.cta-btn-nav:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Full Width Hero Slider */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    background-color: var(--dark);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-slow);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    transform: scale(1.1);
    transition: transform 6s ease;
}

.slide.active .slide-img {
    transform: scale(1);
}

.slide-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

.slide-content {
    max-width: 800px;
    padding: 0 4rem;
    color: var(--white);
}

.slide-tag {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 0.4rem 1.2rem;
    border-radius: var(--border-radius-full);
    margin-bottom: 1.5rem;
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition-slow) 0.2s;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    transform: translateY(40px);
    opacity: 0;
    transition: var(--transition-slow) 0.4s;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.slide-desc {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    transform: translateY(50px);
    opacity: 0;
    transition: var(--transition-slow) 0.6s;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    transform: translateY(60px);
    opacity: 0;
    transition: var(--transition-slow) 0.8s;
}

.slide.active .slide-tag,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-actions {
    transform: translateY(0);
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-hover) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 168, 204, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 168, 204, 0.6);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    z-index: 4;
    transition: var(--transition-normal);
}

.slider-control:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 2rem; }
.slider-next { right: 2rem; }

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 4;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--border-radius-full);
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
}

.slider-dot.active {
    background-color: var(--secondary);
    width: 32px;
}

/* Inner Page Hero section */
.inner-hero {
    position: relative;
    padding: 6rem 2rem;
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.inner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.inner-hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.inner-breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--gray-400);
}

.inner-breadcrumbs a:hover {
    color: var(--secondary);
}

.inner-breadcrumbs span {
    color: var(--white);
}

/* Feature grid - 4 column services info cards */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-normal);
}

.service-card:hover .service-card-icon {
    transform: scale(1.1);
    color: var(--secondary);
}

.service-card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-card-desc {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-card-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-card-link:hover {
    color: var(--secondary);
}

/* Brand Grid & Logos */
.brand-showcase-section {
    background-color: var(--white);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.brand-card {
    background-color: var(--light);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.brand-card:hover {
    border-color: var(--secondary);
    background-color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.brand-card-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.brand-card-logo span {
    color: var(--secondary);
}

.brand-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.brand-card-count {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 0.2rem;
}

/* Why choose us */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-img-wrapper {
    position: relative;
}

.why-us-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.why-us-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.why-us-badge .count {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.why-us-badge .text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.why-us-list {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.why-us-item {
    display: flex;
    gap: 1.5rem;
}

.why-us-icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-md);
    background-color: rgba(15, 76, 129, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-us-item-title {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.why-us-item-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Book Service Strip */
.book-now-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #082d4f 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.book-now-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.book-now-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.book-now-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Pricing Page & Tables */
.pricing-section {
    background-color: var(--light);
}

.pricing-table-wrapper {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: 2rem;
    border: 1px solid var(--gray-200);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table th, .pricing-table td {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-table th {
    background-color: var(--gray-100);
    color: var(--dark);
    font-weight: 700;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background-color: var(--light);
}

.price-tag {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
}

/* FAQs accordion */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    user-select: none;
}

.faq-question i {
    transition: transform var(--transition-normal);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    color: var(--gray-600);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: var(--secondary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 300px;
}

/* Modern Contact Form (Glassmorphism) */
.contact-section-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 3rem;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-panel h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-info-panel p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.contact-details-list {
    display: grid;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius-full);
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-detail-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-content p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.contact-form-panel {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    background-color: var(--light);
    color: var(--dark);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.form-control:focus {
    border-color: var(--secondary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.15);
    outline: none;
}

textarea.form-control {
    resize: vertical;
}

/* Service brand links panel on individual service pages */
.sidebar-box {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 0.5rem;
    color: var(--primary);
}

.sidebar-list li {
    margin-bottom: 0.75rem;
}

.sidebar-list li:last-child {
    margin-bottom: 0;
}

.sidebar-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: var(--light);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    color: var(--dark);
}

.sidebar-list a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.sidebar-list a i {
    font-size: 0.85rem;
}

/* Page Layout templates (Two Columns) */
.page-layout-sidebar {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 3rem;
}

.main-content-panel h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.main-content-panel p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--gray-600);
}

/* Footer styling */
.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 5rem 2rem 2rem;
    border-top: 5px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: var(--border-radius-full);
}

.footer-col p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-contact-item i {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-top: 0.2rem;
}

.footer-contact-item p {
    margin: 0;
}

.footer-contact-item span {
    display: block;
    color: var(--white);
    font-weight: 600;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter-form input {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-md);
    color: var(--white);
    flex-grow: 1;
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary);
}

.footer-newsletter-form button {
    background-color: var(--secondary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition-fast);
}

.footer-newsletter-form button:hover {
    background-color: var(--secondary-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
}

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

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1),
                transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive Adaptations */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition-slow);
        overflow-y: auto;
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1.5rem;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
    }
    
    .mega-menu {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-item.active .dropdown-menu {
        display: block;
    }
    
    .nav-link {
        justify-content: space-between;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--gray-100);
        padding: 0.75rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-slider-container {
        height: 60vh;
        min-height: 450px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-us-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-section-layout {
        grid-template-columns: 1fr;
    }
    
    .page-layout-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }
    
    .slide-content {
        padding: 0 1.5rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-desc {
        font-size: 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-group-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Custom Slide Overlay - First child has color, others are white overlay */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slide:first-child::after {
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.75) 0%, rgba(0, 168, 204, 0.45) 100%);
}

.slide:not(:first-child)::after {
    background: rgba(255, 255, 255, 0.88);
}

/* For white overlay slides, adjust text colors to dark slate for legibility */
.slide:not(:first-child) .slide-content {
    color: var(--dark);
}

.slide:not(:first-child) .slide-tag {
    background-color: var(--primary);
    color: var(--white);
}

.slide:not(:first-child) .slide-title {
    color: var(--dark) !important;
    text-shadow: none;
}

.slide:not(:first-child) .slide-desc {
    color: var(--gray-600);
}

.slide:not(:first-child) .btn-secondary {
    color: var(--dark);
    border-color: var(--dark);
}

.slide:not(:first-child) .btn-secondary:hover {
    background-color: var(--dark);
    color: var(--white);
}

/* Sticky Call Button / Bar */
.sticky-call-bar {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1002;
    transition: var(--transition-normal);
}

.sticky-call-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 1rem 1.75rem;
    border-radius: var(--border-radius-full);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 168, 204, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-call-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 168, 204, 0.6);
    color: var(--white);
}

@keyframes ring {
    0% { transform: rotate(0) scale(1); }
    10% { transform: rotate(-15deg) scale(1.1); }
    20% { transform: rotate(15deg) scale(1.1); }
    30% { transform: rotate(-15deg) scale(1.1); }
    40% { transform: rotate(15deg) scale(1.1); }
    50% { transform: rotate(0) scale(1); }
    100% { transform: rotate(0) scale(1); }
}

.animate-ring {
    animation: ring 2s infinite ease-in-out;
    display: inline-block;
}

@media (max-width: 768px) {
    .sticky-call-bar {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
        box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
    }
    
    .sticky-call-btn {
        width: 100%;
        border-radius: 0;
        border: none;
        justify-content: center;
        padding: 1.2rem;
        font-size: 1.15rem;
    }
    
    body {
        padding-bottom: 60px; /* Prevent footer content blocking */
    }
}

/* Homepage Service Card Image Styles */
.service-card-image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: var(--gray-100);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

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

/* Responsive Grid Utility Classes */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-2-col-asymmetric {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.links-grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 968px) {
    .grid-2-col, .grid-2-col-asymmetric {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .grid-2-col, .grid-2-col-asymmetric {
        gap: 2rem;
    }
    .links-grid-2-col {
        grid-template-columns: 1fr;
    }
}

