/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: #001f3f;
    position: relative;
}

.title-border {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #3b7fc4, #0056b3);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #001f3f, #0056b3);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 31, 63, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 31, 63, 0.3);
    background: linear-gradient(135deg, #0056b3, #001f3f);
}

/* Header & Navigation */
/* =============================================
   HEADER & NAVBAR
============================================= */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-link {
    display: block;
    line-height: 0; /* removes extra space under image */
}

.logo-img {
    height: 100px;           /* ← change this to fit your logo */
    width: 70px;
    display: block;
    object-fit: contain;
}

.logo-text h1 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
}

/* Optional tagline styling */
/*
.logo-text .tagline {
    margin: 2px 0 0;
    font-size: 0.85rem;
    color: #666;
}
*/

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 28px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #133275;           /* ← your brand color */
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;           /* hide menu on mobile */
        /* you'll need JS to show it when clicking hamburger */
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-img {
        height: 42px;            /* smaller logo on mobile */
    }

    .logo-text h1 {
        font-size: 1.4rem;
    }
}

/* Navbar Layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    color: #12286c;
    font-weight: 500;
}

/* Mobile Menu Button Hidden in Desktop */
.mobile-menu-btn {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        width: 220px;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}


/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  height: 100%;
}

.slides-track {
  display: flex;
  height: 100%;
  animation: slideAnimation 24s linear infinite;   /* 24s = 8s per slide × 3 */
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;           /* each slide takes full width */
  position: relative;
  height: 100%;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Your existing title, subtitle, buttons styles remain the same */
.hero-title {
  font-size: 3.8rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-shadow: 0 3px 12px rgba(0,0,0,0.7);
}

.hero-subtitle {
  font-size: 1.9rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-subtitle span {
  color: #ffd700;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.9rem 2.2rem;
  font-size: 1.15rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn.primary {
  background: #0066cc;
  color: white;
  border: 2px solid #0066cc;
}

.btn.primary:hover {
  background: #0055aa;
  transform: translateY(-3px);
}

.btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* Auto sliding animation */
@keyframes slideAnimation {
  0% {
    transform: translateX(0);
  }
  33.333% {
    transform: translateX(0);
  }
  36.666% {
    transform: translateX(-100%);
  }
  66.666% {
    transform: translateX(-100%);
  }
  69.999% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-200%);
  }
}

/* Optional dots (visual feedback) */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 12px;
}

.dot {
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  transition: all 0.4s;
}

.slider-dots .dot:nth-child(1) { animation: dot1 24s infinite; }
.slider-dots .dot:nth-child(2) { animation: dot2 24s infinite; }
.slider-dots .dot:nth-child(3) { animation: dot3 24s infinite; }

@keyframes dot1 {
  0%, 33.333% { background: white; transform: scale(1.3); }
  33.334%, 100% { background: rgba(255,255,255,0.5); transform: scale(1); }
}
@keyframes dot2 {
  0%, 33.333% { background: rgba(255,255,255,0.5); transform: scale(1); }
  33.334%, 66.666% { background: white; transform: scale(1.3); }
  66.667%, 100% { background: rgba(255,255,255,0.5); transform: scale(1); }
}
@keyframes dot3 {
  0%, 66.666% { background: rgba(255,255,255,0.5); transform: scale(1); }
  66.667%, 100% { background: white; transform: scale(1.3); }
}

/* Pause on hover (optional) */
.hero-slider:hover .slides-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title   { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.5rem; }
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    color: #003366;           /* Dark blue - electrical theme */
    font-weight: 700;
}

.title-border {
    width: 80px;
    height: 4px;
    background: #0066cc;      /* Electric blue */
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.2rem;
    color: #003366;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.director-info h4 {
    font-size: 1.4rem;
    color: #0066cc;
    margin-bottom: 10px;
}

.director-info span {
    font-weight: 600;
    color: #003366;
}

.about-image {
    flex: 1;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

/* 4 Horizontal Boxes */
.about-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.info-box {
    background: linear-gradient(rgb(61, 105, 155),skyblue);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.1);
    border: 1px solid #e0f0ff;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
}

.info-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #0066cc;
}

.info-box h5 {
    font-size: 1.25rem;
    color: #003366;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0066cc;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-info-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}
/* Products Section */
.products {
    padding: 80px 0;
     background: linear-gradient(rgb(118, 166, 222),skyblue);;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    color: #003366;
    font-weight: 700;
}

.title-border {
    width: 80px;
    height: 4px;
    background: #0066cc;
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 columns */
    gap: 30px;
}

.product-card {
    background: rgb(255, 255, 255);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
}

.product-img {
    height: 220px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-info {
    padding: 25px 20px;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 12px;
}

.product-info p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.5;
}

.product-link {
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.product-link:hover {
    color: #004080;
}

/* Responsive - stacks on smaller screens */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-img {
        height: 200px;
    }
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0ff 100%); /* subtle blue tint for electrical theme */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    color: #003366;
    font-weight: 700;
    margin-bottom: 15px;
}

.title-border {
    width: 100px;
    height: 5px;
    background: #0066cc;
    margin: 0 auto 20px;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #e0f0ff;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.feature-icon {
    font-size: 3.2rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.6rem;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}
/*Feature*/

.features {
    padding: 80px 0;
     background: linear-gradient(rgb(118, 166, 222),skyblue);/* clean white or use #f8f9fa for light variation */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    color: #003366;           /* dark electrical blue */
    font-weight: 700;
}

.title-border {
    width: 90px;
    height: 5px;
    background: #0066cc;      /* electric blue accent */
    margin: 15px auto;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for 4 features */
    gap: 30px;
}

.feature-card {
    background: #f9fcff;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #e6f0ff;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.12);
    border-color: #0066cc;
}

.feature-icon {
    font-size: 3.5rem;
    color: #0066cc;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.55rem;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}
/* Highlights Section */
.highlights {
    padding: 80px 0;
    background:  #f8f9fa; /* electric blue gradient for impact */
    color: rgb(75, 77, 76);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.title-border {
    width: 100px;
    height: 5px;
    background: white;
    margin: 0 auto 20px;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns */
    gap: 25px;
    text-align: center;
}

.highlight-item {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.highlight-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: #207ea9; /* gold accent for premium feel */
}

.highlight-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.highlight-text {
    font-size: 1.rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 1200px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlight-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}
/* Brands Section */
.brands {
    padding: 80px 0;
     background: linear-gradient(rgb(118, 166, 222),skyblue);;                  /* Light neutral gray – clean, professional, logo-focused */
    
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    color: #003366;                       /* Dark electrical blue – trust & professionalism */
    font-weight: 700;
}

.title-border {
    width: 100px;
    height: 5px;
    background: #0066cc;                  /* Electric blue accent */
    margin: 15px auto;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    width: 160px;                         /* Slightly larger for better visibility */
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;                    /* White cards – makes logos stand out */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.08);  /* Subtle blue-tinted shadow */
    transition: all 0.3s ease;
    border: 1px solid #e6f0ff;           /* Very light blue border */
}

.brand-item:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;                /* Electric blue on hover */
}

.brand-logo {
    max-width: 100%;
    max-height: 70px;
    filter: grayscale(70%) brightness(95%);  /* Subtle grayscale for calm look */
    transition: all 0.4s ease;
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%) brightness(100%);  /* Full vibrant color on hover */
}

/* Responsive */
@media (max-width: 768px) {
    .brands-grid {
        gap: 20px;
    }
    
    .brand-item {
        width: 130px;
        height: 100px;
    }
}
/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: white;
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #001f3f;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 5px;
}

.contact-details a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #003366;
    text-decoration: underline;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    color: #001f3f;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-form h3 {
    color: #001f3f;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 60px 0 20px;
  font-family: 'Poppins', sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Headings */
.footer h3,
.footer h4 {
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
}

.footer h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #22c55e;
  position: absolute;
  bottom: -6px;
  left: 0;
}

/* About */
.footer-about p {
  line-height: 1.7;
  font-size: 14px;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #22c55e;
  padding-left: 5px;
}

/* QR Section */
.qr-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-qr {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
}

.qr-section span {
  font-size: 13px;
  margin-top: 8px;
  color: #9ca3af;
}

/* Contact */
.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-details i {
  color: #22c55e;
}

.contact-details a {
  color: #94a3bf;
  text-decoration: none;
}

.contact-details a:hover {
  color: #22c55e;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #9ca3af;
}

.footer-bottom a {
  color: #22c55e;
  text-decoration: none;
}

.footer-bottom i {
  color: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }}