/* ============================================
   BRIGHT TECHNOLOGIES - PREMIUM COMMON STYLES
   Version: 1.0
   Theme: Corporate Premium | Gold & Electric Blue
   ============================================ */

/* ==================== ROOT VARIABLES ==================== */
:root {
    /* Primary Colors */
    --primary-dark: #0a1c2f;
    --primary-accent: #1e4a76;
    --primary-electric: #0077b6;
    --secondary-gold: #0ea2bd;
    --secondary-gold-light: #f5e7a3;
    --secondary-gold-dark: #b8960c;
    
    /* Neutrals */
    --light-bg: #f8fafc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Status Colors */
    --success-green: #10b981;
    --error-red: #ef4444;
    --warning-orange: #f59e0b;
    --info-blue: #3b82f6;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #071a2b 0%, #0a2a3f 100%);
    --gradient-gold: linear-gradient(120deg, #0ea2bd, #f5e7a3);
    --gradient-gold-hover: linear-gradient(120deg, #c6a30f, #e8d48b);
    --gradient-primary: linear-gradient(135deg, #0a1c2f, #1e4a76);
    --gradient-light: linear-gradient(112deg, #eef2ff 0%, #ffffff 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --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);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-premium: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    --shadow-glow-blue: 0 0 20px rgba(0, 119, 182, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 2.5rem;
    --radius-3xl: 3rem;
    --radius-full: 9999px;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', monospace;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background-color: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.brand-logo {
    height: 70px;
    width: 160px;
    border-radius: 4px;
}

/* ==================== CUSTOM SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-electric);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-accent);
}

/* ==================== TYPOGRAPHY ==================== */
.display-1, .display-2, .display-3, .display-4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(120deg, var(--primary-electric), var(--primary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ========== NAVIGATION BAR ========== */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    transition: all 0.3s ease;
   
}

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


.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    background: linear-gradient(120deg, #fff, #7ab7e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    transition: transform var(--transition-fast);
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.nav-link {
    font-weight: 500;
    color: var(--gray-200) !important;
    margin: 0 0.5rem;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ==================== BUTTONS ==================== */
.btn {
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Gold Premium Button */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 0.7rem 1.8rem;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-gold:hover {
    background: var(--gradient-gold-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-gold);
    color: var(--primary-dark);
}

/* Outline Gold Button */
.btn-outline-gold {
    border: 2px solid var(--secondary-gold);
    background: transparent;
    color: var(--secondary-gold);
    padding: 0.7rem 1.8rem;
}

.btn-outline-gold:hover {
    background: var(--secondary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-gold);
}

/* Primary Blue Button */
.btn-primary {
    background: var(--primary-electric);
    border: none;
    padding: 0.7rem 1.8rem;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-blue);
}

/* Outline Primary */
.btn-outline-primary {
    border: 2px solid var(--primary-electric);
    color: var(--primary-electric);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-electric);
    color: white;
    transform: translateY(-3px);
}

/* Button Sizes */
.btn-sm {
    padding: 0.4rem 1.2rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
}

/* ==================== SECTION TITLES ==================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--secondary-gold);
    border-radius: var(--radius-full);
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* ==================== CARDS ==================== */
.card-premium {
    background: white;
    border: none;
    border-radius: var(--radius-2xl);
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-bottom: 2px solid var(--primary-electric);
}

.card-premium .card-img-top {
    background: linear-gradient(145deg, var(--gray-100), white);
    padding: 2rem;
    text-align: center;
}

.card-premium .card-img-top i {
    font-size: 3.5rem;
    color: var(--primary-electric);
    transition: transform var(--transition-normal);
}

.card-premium:hover .card-img-top i {
    transform: scale(1.08);
}

/* ==================== STATS CARDS ==================== */
.stat-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

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

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-electric);
    line-height: 1.2;
}

/* ==================== FORMS ==================== */
.form-control, .form-select {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-electric);
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
    outline: none;
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: var(--error-red);
}

.form-control.is-valid, .form-select.is-valid {
    border-color: var(--success-green);
}

.invalid-feedback {
    font-size: 0.75rem;
    color: var(--error-red);
    margin-top: 0.25rem;
}

/* ==================== BADGES ==================== */
.badge-premium {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
}

.badge-gold-outline {
    border: 1.5px solid var(--secondary-gold);
    color: var(--secondary-gold);
    background: transparent;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

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

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

.animate-zoom-in {
    animation: zoomIn 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Staggered Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Hover Animations */
.hover-lift {
    transition: transform var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-scale {
    transition: transform var(--transition-normal);
}

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

.hover-glow {
    transition: box-shadow var(--transition-normal);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow-gold);
}

/* ==================== HERO SECTIONS ==================== */
.hero-section {
    background: var(--gradient-hero);
    padding: 140px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.04"><path fill="none" stroke="%23ffffff" stroke-width="1.5" d="M0 400 L1200 400 M400 0 L400 800 M800 0 L800 800 M200 200 L1000 200 M200 600 L1000 600"/><circle cx="300" cy="200" r="40" stroke="white"/><circle cx="900" cy="600" r="60" stroke="white"/></svg>') repeat;
    pointer-events: none;
}

.hero-badge {
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    width: fit-content;
    border-left: 3px solid var(--secondary-gold);
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: #071a28;
    color: var(--gray-300);
    padding-top: var(--spacing-16);
    padding-bottom: var(--spacing-8);
    margin-top: var(--spacing-8);
}

.footer a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer h3, .footer h5 {
    color: white;
}

/* ==================== UTILITY CLASSES ==================== */
/* Text Colors */
.text-gold { color: var(--secondary-gold); }
.text-electric { color: var(--primary-electric); }
.text-success { color: var(--success-green); }

/* Backgrounds */
.bg-gradient-hero { background: var(--gradient-hero); }
.bg-gradient-gold { background: var(--gradient-gold); }
.bg-gradient-light { background: var(--gradient-light); }
.bg-soft-tech { background: var(--gradient-light); }

/* Shadows */
.shadow-premium { box-shadow: var(--shadow-premium); }
.shadow-glow-gold { box-shadow: var(--shadow-glow-gold); }
.shadow-glow-blue { box-shadow: var(--shadow-glow-blue); }

/* Borders */
.border-gold { border-color: var(--secondary-gold); }
.border-electric { border-color: var(--primary-electric); }

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 1200px) {
    .section-title { font-size: 2.2rem; }
    .stat-number { font-size: 2.8rem; }
}

@media (max-width: 992px) {
    .navbar-brand { font-size: 1.5rem; }
    .section-title { font-size: 2rem; }
    .hero-section { padding: 120px 0 60px; }
    .hero-section h1 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
    .stat-number { font-size: 2.2rem; }
    .hero-section { padding: 100px 0 50px; }
    .hero-section h1 { font-size: 1.8rem; }
    .lead { font-size: 1rem; }
    .btn-lg { padding: 0.7rem 1.5rem; font-size: 1rem; }
    .card-premium .card-img-top i { font-size: 2.5rem; }
}

@media (max-width: 576px) {
    .section-title { font-size: 1.5rem; }
    .stat-card { padding: 1.5rem; }
    .navbar-brand { font-size: 1.3rem; }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar, .footer, .btn, .filter-btn, .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .card-premium, .stat-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================
       PREMIUM ANIMATED FOOTER STYLES
    ============================================ */
    .footer {
      background: linear-gradient(135deg, #071a28 0%, #0a2a3f 100%);
      position: relative;
      overflow: hidden;
      padding-top: 4rem;
      padding-bottom: 1.5rem;
      margin-top: auto;
    }

    /* Animated Background Particles */
    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 119, 182, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 8px);
      pointer-events: none;
      animation: floatParticles 20s ease-in-out infinite;
    }

    @keyframes floatParticles {
      0%, 100% { transform: translateY(0px) scale(1); opacity: 0.5; }
      50% { transform: translateY(-20px) scale(1.05); opacity: 0.7; }
    }

    /* Animated Border Top */
    .footer-border {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, 
        transparent, 
        var(--secondary-gold, #0ea2bd), 
        var(--primary-electric, #0077b6),
        var(--secondary-gold, #0ea2bd),
        transparent
      );
      animation: borderShine 3s linear infinite;
      background-size: 200% 100%;
    }

    @keyframes borderShine {
      0% { background-position: 100% 0; }
      100% { background-position: -100% 0; }
    }

    /* Footer Logo Animation */
    .footer-logo {
      font-family: 'Space Grotesk', monospace;
      font-weight: 800;
      font-size: 2rem;
      background: linear-gradient(120deg, #fff, #7ab7e0);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .footer-logo:hover {
      transform: scale(1.05);
      background: linear-gradient(120deg, var(--secondary-gold, #0ea2bd), #fff);
      -webkit-background-clip: text;
      background-clip: text;
    }

    /* Footer Headings */
    .footer-heading {
      color: white;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
      font-family: 'Space Grotesk', monospace;
    }

    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--secondary-gold, #0ea2bd);
      transition: width 0.3s ease;
    }

    .footer-heading:hover::after {
      width: 60px;
    }

    /* Footer Links */
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

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

    .footer-links a {
      color: #cbd5e1;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
    }

    .footer-links a i {
      font-size: 0.8rem;
      opacity: 0;
      transform: translateX(-5px);
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--secondary-gold, #0ea2bd);
      transform: translateX(5px);
    }

    .footer-links a:hover i {
      opacity: 1;
      transform: translateX(0);
    }

    /* Contact Info Items */  
    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1rem;
        color: #cbd5e1;
        font-size: 0.9rem;
        gap: 12px;
        transition: 0.3s;
    }

    /* Fix: Target the <i> icon directly */
    .contact-item i {
        flex-shrink: 0;  /* Prevents icon from shrinking */
        width: 35px;
        height: 35px;
        background: rgba(212, 175, 55, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary-gold, #0ea2bd);
        transition: all 0.3s ease;
        /* Add these to fix alignment */
        margin-top: 2px;  /* Fine-tune vertical alignment */
    }

    /* Better text wrapping */
    .contact-item .text {
        word-break: break-word;
        line-height: 1.5;
        flex: 1;
    }

    .contact-item:hover {
      transform: translateX(5px);
      color: white;
    }

    .contact-item:hover i {
      background: var(--secondary-gold, #0ea2bd);
      color: #0a1c2f;
      transform: scale(1.1);
    }

    /* Social Media Icons - Animated */
    .social-icons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .social-icon {
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }

    .social-icon::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: var(--secondary-gold, #0ea2bd);
      border-radius: 50%;
      transition: all 0.4s ease;
      transform: translate(-50%, -50%);
      z-index: -1;
    }

    .social-icon:hover::before {
      width: 100%;
      height: 100%;
    }

    .social-icon:hover {
      color: #0a1c2f;
      transform: translateY(-5px);
    }

    /* Social Icon Specific Colors on Hover */
    .social-icon:hover .bi-linkedin { color: #0a1c2f; }
    .social-icon:hover .bi-twitter-x { color: #0a1c2f; }
    .social-icon:hover .bi-facebook { color: #0a1c2f; }
    .social-icon:hover .bi-youtube { color: #0a1c2f; }
    .social-icon:hover .bi-instagram { color: #0a1c2f; }

    /* Newsletter Form */
    .newsletter-form {
      position: relative;
      margin-top: 1rem;
    }

    .newsletter-input {
      width: 100%;
      padding: 0.9rem 1.2rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      color: white;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .newsletter-input:focus {
      outline: none;
      border-color: var(--secondary-gold, #0ea2bd);
      background: rgba(255, 255, 255, 0.15);
      box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    }

    .newsletter-input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-btn {
      position: absolute;
      right: 5px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--secondary-gold, #0ea2bd);
      border: none;
      border-radius: 50px;
      padding: 0.6rem 1.2rem;
      color: #0a1c2f;
      font-weight: 600;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .newsletter-btn:hover {
      background: #c6a30f;
      transform: translateY(-50%) scale(1.02);
    }

    /* Trust Badges */
    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.05);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .trust-badge:hover {
      background: rgba(212, 175, 55, 0.15);
      transform: translateY(-2px);
    }

    .trust-badge i {
      font-size: 1.2rem;
      color: var(--secondary-gold, #0ea2bd);
    }

    /* Footer Bottom */
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 1.5rem;
      margin-top: 2.5rem;
    }

    .payment-icons i {
      font-size: 1.5rem;
      color: rgba(255, 255, 255, 0.5);
      margin: 0 5px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .payment-icons i:hover {
      color: var(--secondary-gold, #0ea2bd);
      transform: translateY(-3px);
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background: var(--secondary-gold, #0ea2bd);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0a1c2f;
      font-size: 1.5rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
      box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

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

    .back-to-top:hover {
      transform: translateY(-5px);
      background: #c6a30f;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer {
        padding-top: 3rem;
      }
      .footer-heading {
        margin-top: 1rem;
      }
      .social-icons {
        justify-content: center;
      }
      .contact-item {
        justify-content: left;
      }
      .footer-links {
        text-align: left;
      }
      .footer-links a {
        justify-content: center;
      }
      .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
      }
      .align-items-center {
            align-items: left !important;
      }
    }

    .developed-by {
        color:#0077b6 !important;
    }

    /* Floating Container - Right Side */
        .floating-contact-container {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
            margin-bottom: 60px;
        }

        /* Round Circle Button Styles */
        .circle-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            border: none;
            position: relative;
        }

        /* Icons inside buttons */
        .circle-btn i, 
        .circle-btn .bi {
            font-size: 26px;
            color: white;
            transition: transform 0.3s ease;
        }

        .circle-btn:hover i,
        .circle-btn:hover .bi {
            transform: scale(1.1);
        }

        /* Tooltip Text (appears on hover) */
        .circle-btn::before {
            content: attr(data-tooltip);
            position: absolute;
            right: 60px;
            background: rgba(0, 0, 0, 0.85);
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 14px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
            font-weight: 500;
            letter-spacing: 0.5px;
            z-index: 10000;
        }

        .circle-btn::after {
            content: '';
            position: absolute;
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent transparent rgba(0, 0, 0, 0.85);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .circle-btn:hover::before,
        .circle-btn:hover::after {
            opacity: 1;
            visibility: visible;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            background-color: #25D366;
            animation: pulse 1.5s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.15) rotate(5deg);
            background-color: #20b859;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
            animation: none;
        }

        /* Call Button */
        .call-btn {
            background-color: #ff5722;
            animation: bounce 2s infinite;
        }

        .call-btn:hover {
            transform: scale(1.15) rotate(-5deg);
            background-color: #e64a19;
            box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
            animation: none;
        }

        /* Quote Button */
        .quote-btn {
            background-color: #007bff;
            animation: ripple 1.5s infinite;
        }

        .quote-btn:hover {
            transform: scale(1.15) rotate(5deg);
            background-color: #0056b3;
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
            animation: none;
        }

        /* Animations */
        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            }
        }

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

        @keyframes ripple {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .floating-contact-container {
                right: 15px;
                bottom: 15px;
                gap: 12px;
            }

            .circle-btn {
                width: 50px;
                height: 50px;
            }

            .circle-btn i,
            .circle-btn .bi {
                font-size: 24px;
            }

            .circle-btn::before {
                right: 60px;
                font-size: 12px;
                padding: 6px 12px;
            }
        }

        /* Extra small devices */
        @media (max-width: 480px) {
            .floating-contact-container {
                right: 12px;
                bottom: 12px;
                gap: 10px;
            }

            .circle-btn {
                width: 45px;
                height: 45px;
            }

            .circle-btn i,
            .circle-btn .bi {
                font-size: 22px;
            }

            /* Hide tooltips on very small screens */
            .circle-btn::before,
            .circle-btn::after {
                display: none;
            }
        }

        /* For tablets */
        @media (min-width: 769px) and (max-width: 1024px) {
            .circle-btn {
                width: 55px;
                height: 55px;
            }
            
            .circle-btn i,
            .circle-btn .bi {
                font-size: 26px;
            }
        }

        