/* SVN Group Website Styles - Based on MVV Original */

/* Global Styles */
:root {
  --white: #fff;
  --gold: #ca9629;
  --gold-light: #e2b659;
  --blue-dark: #00243e;
  --blue-darker: #00223b;
  --gray: #666;
  --gray-light: #f0f0f0;
  --gray-dark: #333;
  --gray-darker: #1c1c1c;
  --gray-darkest: #1b1b1b;
  --gray-medium: #999999;
  --shadow-light: #00000015;
  --shadow-lighter: #00000010;
  --shadow-medium: #00000030;
  --shadow-dark: #000000cc;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* Header Styles - Based on MVV Original */
header {
  padding-top: 14px;
  padding-bottom: 14px;
    position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: .3s ease-in;
    background: transparent;

  /* Shared Styles for Desktop and Mobile */
  .desktop-header,
  .mobile-header {
    .row {
      align-items: center;
    }

    .logo {
      img {
        max-width: 100%;
        transition: .5s ease-in;

        &.img1 {
          display: block !important; /* Default: show img1 */
        }
        &.img2 {
          display: none !important; /* Default: hide img2 */
        }
      }
    }
  }

  /* Desktop-Specific Styles */
  .desktop-header {
    .logo {
      img {
                width: 140px; /* Further reduced from 180px */
      }
    }

    .menu-items {
      text-align: end;

      a.link {
        display: inline-block;
        padding: 8px 10px;
        font-size: 16px;
        color: var(--white);
        font-weight: 400;
        position: relative;
        text-transform: uppercase;
        line-height: 16px;
        font-family: 'Playfair Display', serif;
                text-decoration: none;
                transition: color 0.3s ease;

        &:after {
          content: ' ';
          width: 0;
          height: 2px;
          background: var(--white);
          transition: .5s ease-in;
          display: block;
          position: absolute;
          top: 100%;
          left: 0;
        }

        &:hover::after {
          width: 100%;
        }

                &:hover {
                    color: var(--gold);
                }
            }

            .call-btn {
                background: var(--gold);
                color: var(--white);
                padding: 8px 15px;
                border-radius: 25px;
                font-weight: 600;
                text-decoration: none;
                display: inline-block;
                transition: all 0.3s ease;

                &:hover {
                    background: var(--gold-light);
                    color: var(--white);
                }
      }
    }
  }

  /* Mobile-Specific Styles */
  .mobile-header {
    .logo {
      img {
                width: 110px; /* Further reduced from 140px */
            }
        }

        .call-btn {
            background: var(--gold);
            color: var(--white);
            padding: 8px 12px;
            border-radius: 50%;
            margin-right: 15px;
            text-decoration: none;
            display: inline-block;
        }

        .mob-bar-icon {
            color: var(--white);
            font-size: 20px;
            cursor: pointer;
        }
  }

  /* Sticky State for Logo Swap and Styling */
  &.sticky {
    padding: 8px 0;
    background: var(--white);
    box-shadow: 0 0 10px var(--shadow-lighter);

      .logo {
        img {
          &.img1 {
            display: none !important;
          }
          &.img2 {
            display: block !important;
        }
      }
    }

    .desktop-header {
      .logo {
        img {
                    width: 120px; /* Further reduced from 150px */
        }
      }

      .menu-items {
        a.link {
          color: var(--gray-dark);
          font-weight: 500;

          &:after {
                        background: var(--gold);
                    }

                    &:hover {
                        color: var(--gold);
                    }
                }
            }
        }

  .mobile-header {
    .logo {
      img {
                    width: 100px; /* Further reduced from 120px */
                }
            }

            .call-btn,
            .mob-bar-icon {
                color: var(--gray-dark);
            }
        }
    }
}

/* Mobile Menu Modal */
.mobMenu {
    .modal-dialog {
        max-width: 300px;
        margin: 0;
        height: 100vh;
    }

    .modal-content {
        height: 100vh;
  border-radius: 0;
  border: none;
    }

    .modal-body {
        padding: 30px 20px;
        text-align: center;
    }

    .btn-close {
        position: absolute;
        top: 20px;
        right: 20px;
    background: none;
    border: none;
        font-size: 24px;
        color: var(--gray-dark);
    }

    .nav-links {
        margin-top: 50px;

      img {
        width: 150px;
            margin-bottom: 30px;
      }

        a.link {
        display: block;
            padding: 15px 0;
            color: var(--gray-dark);
            text-decoration: none;
            font-size: 18px;
        font-weight: 500;
            border-bottom: 1px solid var(--gray-light);
            transition: color 0.3s ease;

        &:hover {
          color: var(--gold);
        }
      }
    }
  }

/* Inner Banner Section */
.inner-banner {
    background: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images2/heroimage.jpg');
    padding-top: calc(55px + 9rem);
    padding-bottom: 9rem;
    background-size: cover !important;
    background-position: center center !important;
    text-align: center;
    color: var(--white);
}

/* NGO page specific hero background */
.ngo-hero {
    background: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images2/NGOhero.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.inner-banner .bannerhead1 {
    color: var(--white);
    font-size: 60px;
    font-family: 'Playfair Display', serif;
}

/* Banner Section */
.banner-sec {
    margin-top: 0; /* Removed margin-top to eliminate space */
}

.banner {
    position: relative;
    height: 100vh; /* Increased from 80vh to 100vh for full viewport height */
    min-height: 600px; /* Increased from 500px */
    overflow: hidden;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .banner-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
  text-align: center;
        color: var(--white);
        background: rgba(0, 36, 62, 0.8);
        padding: 40px;
        border-radius: 10px;
        max-width: 600px;
        width: 90%;

        h1 {
            color: var(--gold);
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        h2 {
  color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        p {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 30px;
    }
  }
}

.banner-carousel {
  .owl-dots {
    position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;

    .owl-dot {
            width: 12px;
            height: 12px;
      border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
      border: none;
            transition: all 0.3s ease;

      &.active {
        background: var(--gold);
            }
        }
    }
}

/* Section Titles */
.section-title {
    color: var(--blue-dark);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
        position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

/* About Section */
.about-section {
    background: var(--gray-light);
    padding: 80px 0;
}

.about-content h2 {
    color: var(--blue-dark);
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content .lead {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.stats-row {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    color: var(--gold);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--gray);
    font-size: 1rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 15px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px var(--shadow-light);
    overflow: hidden;
}

.service-content {
    padding: 25px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

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

.service-icon {
    width: 100%;
    height: 200px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

/* Achievements Section Icons */
.achievements-section .service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.achievements-section .service-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.achievements-section .service-card:hover .service-icon {
    background: var(--blue-dark);
    transform: scale(1.1);
}

.achievements-section .service-card:hover .service-icon i {
    color: var(--gold);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card h4 {
    color: var(--blue-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
      color: var(--gray);
    line-height: 1.6;
}

/* Managing Director Section */
.md-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-darker) 100%);
    padding: 100px 0;
    color: var(--white);
    position: relative;
}

/* MD Image Container */
.md-image-container {
    position: relative;
}

.md-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.md-profile-img {
    max-width: 300px;
    border: 5px solid var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.md-image-wrapper:hover .md-profile-img {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.md-image-overlay {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.md-credentials {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.md-credentials i {
    color: var(--white);
    font-size: 16px;
}

/* MD Contact Info */
.md-contact-info {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.contact-item span {
    font-size: 14px;
    font-weight: 500;
}

/* MD Content */
.md-header {
    margin-bottom: 30px;
}

.md-content h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.md-content h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.md-title {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bg-gold {
    background: var(--gold);
    color: var(--white);
}

.badge.bg-blue {
    background: var(--blue-dark);
    color: var(--white);
}

/* MD Message */
.md-message {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid var(--gold);
    position: relative;
    border: 1px solid rgba(255,255,255,0.3);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.quote-icon-end {
    position: absolute;
    bottom: -15px;
    right: 30px;
    background: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.md-message .lead {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.md-message p {
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* MD Signature */
.md-signature {
    margin-top: 30px;
    text-align: right;
}

.signature-line {
    width: 100px;
    height: 2px;
    background: var(--gold);
    margin: 0 0 10px auto;
}

.signature-text {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.signature-title {
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .md-section {
        padding: 60px 0;
    }
    
    .md-content h2 {
        font-size: 2rem;
    }
    
    .md-content h3 {
        font-size: 1.5rem;
    }
    
    .md-message {
        padding: 25px;
    }
    
    .md-title {
        justify-content: center;
    }
    
    .md-signature {
        text-align: center;
    }
    
    .signature-line {
        margin: 0 auto 10px;
    }
    
    .md-contact-info {
        margin-top: 20px;
    }
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.vision-card,
.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--blue-dark) 100%);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.vision-icon,
.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(202, 150, 41, 0.3);
}

.vision-icon i,
.mission-icon i {
    font-size: 2rem;
    color: var(--white);
}

.vision-card h3,
.mission-card h3 {
    color: var(--blue-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.vision-card p,
.mission-card p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.vision-points,
.mission-points {
    margin-top: 20px;
}

.point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.point i {
    color: var(--gold);
    font-size: 18px;
    min-width: 20px;
}

.point span {
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 15px;
}

/* Values Section */
.values-section {
    margin-top: 60px;
}

.values-section h3 {
    color: var(--blue-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--blue-dark);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.value-item h4 {
    color: var(--blue-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Mobile Responsive for Vision & Mission */
@media (max-width: 768px) {
    .vision-mission-section {
        padding: 60px 0;
    }
    
    .vision-card,
    .mission-card {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 1.5rem;
    }
    
    .values-section h3 {
        font-size: 1.5rem;
    }
    
    .value-item {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.trust-card {
    background: var(--white);
      border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-icon i {
    font-size: 2rem;
    color: var(--white);
}

.trust-card h4 {
    color: var(--blue-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.trust-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Blog Section - Completely Redesigned */
.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 30px 35px 35px 35px !important;
    background: var(--white);
    margin: 0;
    box-sizing: border-box;
}

.blog-content .badge {
    margin-bottom: 20px !important;
    font-size: 0.75rem;
    padding: 8px 16px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    display: inline-block;
}

.blog-content h4 {
    color: var(--blue-dark);
    font-size: 1.3rem;
    margin-bottom: 15px !important;
    line-height: 1.4;
    font-weight: 600;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.blog-content .text-muted {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 20px !important;
    font-weight: 500;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

.blog-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 0.95rem;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
}

/* Clickable blog card styles */
.blog-card {
    cursor: pointer;
}

a .blog-card {
    color: inherit;
    text-decoration: none;
}

a .blog-card:hover {
    color: inherit;
    text-decoration: none;
}

a:hover .blog-card {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Force blog content spacing */
.blog-section .blog-card .blog-content {
    padding: 30px 35px 35px 35px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.blog-section .blog-card .blog-content * {
    box-sizing: border-box;
}

/* Blog section responsive design */
@media (max-width: 768px) {
    .blog-content {
        padding: 25px 30px 30px 30px;
    }
    
    .blog-content h4 {
        font-size: 1.2rem;
    }
    
    .blog-content .badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 15px !important;
    }
    
    .blog-card {
        margin-bottom: 25px;
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .blog-content {
        padding: 20px 25px 25px 25px;
    }
    
    .blog-content h4 {
        font-size: 1.1rem;
    }
    
    .blog-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* Clickable blog card styles */
.blog-card {
    cursor: pointer;
}

a .blog-card {
    color: inherit;
    text-decoration: none;
}

a .blog-card:hover {
    color: inherit;
    text-decoration: none;
}

a:hover .blog-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0 60px 0;
    background: #f8f9fa;
    margin-bottom: 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 15px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.testimonial-content {
    margin-bottom: 25px;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-right: 2px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    text-align: center;
}

.author-info h5 {
    color: var(--blue-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 25px;
        margin: 10px 0;
    }
}

/* Construction Materials Section */
.materials-section {
    padding: 80px 0;
    background: white;
}

.materials-section .row {
    margin-top: 30px;
}

.materials-section .col-lg-4,
.materials-section .col-md-6 {
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.material-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    text-align: center;
}

.material-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.material-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid var(--gold);
}

.material-icon i {
    font-size: 2.5rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.material-card:hover .material-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(202, 150, 41, 0.3);
    background: var(--gold);
}

.material-card:hover .material-icon i {
    color: white;
    transform: scale(1.1);
}

.material-card h4 {
    color: var(--blue-dark);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.2rem;
}

.material-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .materials-section {
        padding: 60px 0;
    }
    
    .material-card {
        padding: 25px;
        margin: 10px 0;
    }
    
    .material-icon {
        width: 60px;
        height: 60px;
    }
    
    .material-icon i {
        font-size: 2rem;
    }
    
    .material-card:hover .material-icon {
        transform: scale(1.05);
    }
}

/* NGO Activities Gallery Section */
.ngo-gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.ngo-gallery-container {
    overflow: hidden;
    position: relative;
    margin: 40px 0;
}

.ngo-gallery-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.ngo-gallery-item {
    flex: 0 0 auto;
    width: 300px;
    height: 200px;
    margin: 0 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.ngo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.ngo-gallery-container:hover .ngo-gallery-scroll {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .ngo-gallery-section {
        padding: 60px 0;
    }
    
    .ngo-gallery-item {
        width: 250px;
        height: 150px;
        margin: 0 10px;
    }
}

/* Contact CTA */
.contact-cta {
    background: var(--blue-dark);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.contact-cta h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta .lead {
      color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Footer */
.footer-section {
    background: var(--gray-darkest);
      color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-medium);
    line-height: 1.6;
}

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

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

.footer-links a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info p {
    color: var(--gray-medium);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info i {
    color: var(--gold);
    margin-right: 10px;
    width: 20px;
}

.contact-info a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--gold);
}

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

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

.social-links a:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* Buttons */
.btn-primary {
    background: var(--gold);
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.btn-light {
    background: var(--white);
    border: none;
    color: var(--blue-dark);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--gray-light);
    color: var(--blue-dark);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content h2 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .inner-banner {
        background: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images2/heroimage.jpg');
    }
    
    .inner-banner .bannerhead1 {
        font-size: 40px;
    }
    
    .stats-row {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
    
    .banner {
        height: 60vh;
    }
}

@media (max-width: 576px) {
    .banner-content {
        padding: 20px;
        max-width: 90%;
    }
    
    .banner-content h1 {
        font-size: 1.5rem;
    }
    
    .banner-content h2 {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .inner-banner {
        padding-top: calc(55px + 5rem);
        padding-bottom: 5rem;
    }
    
    .inner-banner .bannerhead1 {
        font-size: 42px;
    }
    
    .service-card,
    .trust-card {
        margin-bottom: 20px;
    }
    
    .md-message {
        padding: 20px;
    }
}

/* AOS Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Mobile optimization - ensure content is visible */
@media (max-width: 768px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Force visibility for mobile */
    .aos-animate {
        opacity: 1 !important;
    }
    
    /* Fallback: ensure content is visible even without JavaScript */
    .no-js [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Reduce animation duration on mobile for better performance */
    [data-aos] {
        transition-duration: 0.3s !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Projects Page Styles */
.jump-lnk {
    text-align: center;
    margin: 30px 0;
}

.jump-lnk a {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    background: var(--white);
    color: var(--gray-dark);
    text-decoration: none;
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.jump-lnk a:hover,
.jump-lnk a.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.icon-head {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: block;
}

.des-head {
    width: 80px;
    height: 3px;
    margin: 20px auto;
    background: var(--gold);
}

.project-div {
    margin-bottom: 40px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.project-div:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

.project-div .img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-div .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-div .img .imghov {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-div:hover .img .imghov {
    opacity: 1;
}

.project-div .img .link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.upcoming-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.project-div:hover .img .link {
    opacity: 1;
}

.project-div .content {
    padding: 20px;
}

.project-div .content h2 {
    color: var(--blue-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.project-div .content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-div .content .btn {
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.project-div .content .btn:hover {
    background: var(--gold-light);
}

.joint-vent {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
    margin-bottom: 30px;
    position: relative;
}

.joint-vent .img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.joint-vent .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.joint-vent .img .link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: var(--white);
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.joint-vent:hover .img .link {
    opacity: 1;
}

.joint-vent .content {
    padding: 20px;
}

.joint-vent .content h2 {
    color: var(--blue-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.joint-vent .content h6 {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.joint-vent .status {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Additional Styles */
html {
    scroll-behavior: smooth;
}

.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(202, 150, 41, 0.25);
    border-color: var(--gold);
}

@media print {
    header,
    .footer-section,
    .btn {
        display: none !important;
    }
    
    body {
        color: var(--gray-dark);
  }
}

/* SVN Individual Houses Section */
.individual-houses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.individual-houses-content h2 {
    color: var(--blue-dark);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.individual-houses-content .lead {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.feature-item i {
    color: var(--gold);
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.feature-item span {
    font-weight: 600;
    color: var(--blue-dark);
}

.project-highlight {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    margin: 30px 0;
    border-left: 5px solid var(--gold);
}

.project-highlight h4 {
    color: var(--blue-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.project-highlight p {
    color: var(--gray);
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
}

.individual-houses-gallery {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 400px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: all 0.3s ease;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-dark);
}

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

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

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, var(--shadow-dark));
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.gallery-item .overlay h5 {
    margin: 0;
    font-weight: 600;
}

/* Latest Ongoing Projects Section */
.ongoing-projects-section {
    padding: 80px 0;
    background: var(--white);
}

.ongoing-projects-content h2 {
    color: var(--blue-dark);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.ongoing-projects-content .lead {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.project-showcase {
    position: relative;
}

.main-project {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-medium);
    margin-bottom: 20px;
}

.main-project img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, var(--shadow-dark));
    color: var(--white);
    padding: 30px;
}

.project-info h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.project-info p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.project-status {
    display: flex;
    gap: 15px;
    align-items: center;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.ongoing {
    background: var(--gold);
    color: var(--white);
}

.completion {
    font-size: 14px;
    opacity: 0.9;
}

.project-thumbnails {
    display: flex;
    gap: 15px;
}

.thumb-item {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumb-item.active {
    opacity: 1;
    transform: scale(1.05);
}

.thumb-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumb-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.project-details {
    margin: 30px 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px var(--shadow-light);
    transform: translateY(-2px);
}

.detail-item i {
    color: var(--gold);
    font-size: 20px;
    margin-top: 5px;
    width: 20px;
    text-align: center;
}

.detail-item h5 {
    color: var(--blue-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.detail-item p {
    color: var(--gray);
    margin: 0;
    font-size: 14px;
}

.auto-update-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--white);
    border-radius: 10px;
    margin: 20px 0;
    font-size: 14px;
}

.auto-update-info i {
    animation: spin 2s linear infinite;
}

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

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .individual-houses-section,
    .ongoing-projects-section {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 10px;
    }
    
    .gallery-item.large {
        grid-row: auto;
    }
    
    .project-thumbnails {
        flex-direction: column;
        gap: 10px;
    }
    
    .thumb-item img {
        height: 60px;
    }
    
    .project-details {
        margin: 20px 0;
    }
    
    .detail-item {
        padding: 15px;
        margin-bottom: 15px;
    }
}

/* Testimonial Stats Section */
.testimonial-stats {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

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

/* Enhanced Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-light);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--gold);
}

.testimonial-content {
    margin-bottom: 25px;
}

.stars {
    margin-bottom: 15px;
}

.stars i {
    color: var(--gold);
    font-size: 18px;
    margin-right: 2px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--gray-light);
    padding-top: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    color: var(--blue-dark);
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 18px;
}

.author-info span {
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .testimonial-stats {
        padding: 30px 20px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-info h5 {
        font-size: 16px;
    }
    
    .author-info span {
        font-size: 13px;
    }
}

/* Blog Banner Section */
.blog-banner {
    background: linear-gradient(90deg, rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images2/heroimage.jpg');
    padding-top: calc(55px + 8rem);
    padding-bottom: 8rem;
    background-size: cover !important;
    background-position: center center !important;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 0;
}

.blog-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    color: var(--white);
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-subtitle {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Blog Articles Section */
.blog-articles-section {
    padding: 80px 0;
    background: var(--white);
}

.featured-article {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.article-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 30px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.article-category {
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.article-date {
    color: var(--gray);
    font-size: 0.9rem;
}

.article-title {
    color: var(--blue-dark);
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Blog Sidebar */
.blog-sidebar {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow-light);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    color: var(--blue-dark);
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.sidebar-article {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-light);
}

.sidebar-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-article-image {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-article:hover .sidebar-article-image img {
    transform: scale(1.05);
}

.sidebar-article-content h4 {
    color: var(--blue-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.sidebar-article-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--gold-light);
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    .blog-banner {
        padding-top: calc(55px + 5rem);
        padding-bottom: 5rem;
    }
    
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .blog-sidebar {
        margin-top: 30px;
        position: static;
    }
    
    .sidebar-article-image {
        height: 120px;
    }
}

@media (max-width: 576px) {
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-subtitle {
        font-size: 0.9rem;
    }
    
    .article-title {
        font-size: 1.3rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-sidebar {
        padding: 20px;
    }
}

/* Individual Blog Post Page Styles */
.blog-header {
    background: linear-gradient(90deg, rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images2/heroimage.jpg');
    padding-top: calc(55px + 6rem);
    padding-bottom: 4rem;
    background-size: cover !important;
    background-position: center center !important;
    color: var(--white);
    position: relative;
    z-index: 0;
}

.blog-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.blog-header .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.blog-header .breadcrumb-item a:hover {
    opacity: 1;
}

.blog-header .breadcrumb-item.active {
    color: var(--gold);
    opacity: 1;
}

.blog-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
    opacity: 0.6;
}

/* Blog Content Section */
.blog-content {
    padding: 60px 0;
    background: var(--white);
}

.blog-post {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.blog-post .blog-header {
    background: none;
    padding: 40px 40px 20px;
    color: var(--blue-dark);
}

.blog-post .blog-title {
    color: var(--blue-dark);
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.blog-meta span {
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--gold);
}

.blog-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body {
    padding: 0 40px 40px;
}

.blog-body .lead {
    font-size: 1.2rem;
    color: var(--blue-dark);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
}

.blog-body h2 {
    color: var(--blue-dark);
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.blog-body h3 {
    color: var(--blue-dark);
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    margin: 30px 0 15px;
}

.blog-body p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-body ul, .blog-body ol {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-body li {
    margin-bottom: 8px;
}

/* Feature Box */
.feature-box {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-darker) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.feature-box h3 {
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-box li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-box li:last-child {
    border-bottom: none;
}

.feature-box li::before {
    content: "✓";
    color: var(--gold);
    font-weight: bold;
    margin-right: 10px;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.location-item {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.location-item h4 {
    color: var(--blue-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.location-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Blog Image Section */
.blog-image-section {
    margin: 30px 0;
    text-align: center;
}

.blog-image-section img {
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.image-caption {
    color: var(--gray);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

/* Opportunity Cards */
.opportunity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.opportunity-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.opportunity-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.opportunity-card h4 {
    color: var(--blue-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.opportunity-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.cta-section h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.cta-section p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-section .btn {
    background: var(--blue-dark);
    border: 2px solid var(--blue-dark);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background: transparent;
    color: var(--blue-dark);
}

/* Blog Sidebar */
.blog-sidebar .sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px var(--shadow-light);
    margin-bottom: 30px;
}

.blog-sidebar .sidebar-widget h3 {
    color: var(--blue-dark);
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.blog-sidebar .recent-posts,
.blog-sidebar .categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar .recent-posts li,
.blog-sidebar .categories li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.blog-sidebar .recent-posts li:last-child,
.blog-sidebar .categories li:last-child {
    border-bottom: none;
}

.blog-sidebar .recent-posts a,
.blog-sidebar .categories a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-sidebar .recent-posts a:hover,
.blog-sidebar .categories a:hover {
    color: var(--gold);
}

.blog-sidebar .contact-info p {
    color: var(--gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-sidebar .contact-info i {
    color: var(--gold);
    width: 20px;
}

/* Mobile Responsive for Blog Posts */
@media (max-width: 768px) {
    .blog-header {
        padding-top: calc(55px + 4rem);
        padding-bottom: 3rem;
    }
    
    .blog-content {
        padding: 40px 0;
    }
    
    .blog-post .blog-header {
        padding: 30px 20px 15px;
    }
    
    .blog-post .blog-title {
        font-size: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-body {
        padding: 0 20px 30px;
    }
    
    .blog-body .lead {
        font-size: 1.1rem;
    }
    
    .blog-body h2 {
        font-size: 1.5rem;
    }
    
    .blog-featured-image {
        height: 250px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .opportunity-cards {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        padding: 20px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .blog-sidebar .sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .blog-post .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-body h2 {
        font-size: 1.3rem;
    }
    
    .blog-featured-image {
        height: 200px;
    }
    
    .blog-sidebar {
        margin-top: 30px;
    }
}

/* Additional Blog Post Elements */
.growth-stats,
.investment-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card,
.metric-card {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.stat-card h3,
.metric-card h3 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-card p,
.metric-card p {
    color: var(--white);
    opacity: 0.9;
    font-size: 0.9rem;
    margin: 0;
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.driver-item {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.driver-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.driver-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.driver-item h4 {
    color: var(--blue-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.driver-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.hotspots-section {
    margin: 30px 0;
}

.hotspot-item {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold);
}

.hotspot-item h4 {
    color: var(--blue-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hotspot-item p {
    color: var(--gray);
    margin-bottom: 15px;
}

.hotspot-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hotspot-item li {
    padding: 5px 0;
    color: var(--gray);
    position: relative;
    padding-left: 20px;
}

.hotspot-item li::before {
    content: "→";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.investment-options {
    margin: 30px 0;
}

.option-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.option-header {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-darker) 100%);
    color: var(--white);
    padding: 25px;
    position: relative;
}

.option-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.option-header h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.roi-badge {
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.option-content {
    padding: 25px;
}

.option-content h4 {
    color: var(--blue-dark);
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.option-content h4:first-child {
    margin-top: 0;
}

.option-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.option-content li {
    padding: 5px 0;
    color: var(--gray);
    position: relative;
    padding-left: 20px;
}

.option-content li::before {
    content: "✓";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.option-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0 0 15px 0;
}

/* Mobile Responsive for Additional Elements */
@media (max-width: 768px) {
    .growth-stats,
    .investment-metrics {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .stat-card,
    .metric-card {
        padding: 20px;
    }
    
    .stat-card h3,
    .metric-card h3 {
        font-size: 2rem;
    }
    
    .drivers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .driver-item {
        padding: 25px;
    }
    
    .option-header {
        padding: 20px;
    }
    
    .option-header img {
        height: 150px;
    }
    
    .option-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .growth-stats,
    .investment-metrics {
        grid-template-columns: 1fr;
    }
    
    .stat-card h3,
    .metric-card h3 {
        font-size: 1.8rem;
    }
    
    .driver-item i {
        font-size: 2.5rem;
    }
    
    .option-header img {
        height: 120px;
    }
}

/* Mobile Device Optimizations */
.mobile-device [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.mobile-device .aos-animate {
    opacity: 1 !important;
    transform: none !important;
}

/* Disable all animations on mobile for better performance */
@media (max-width: 768px) {
    * {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .aos-animate {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Ensure all elements are visible immediately */
    .fade-up, .fade-down, .fade-left, .fade-right, .zoom-in, .zoom-out {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===== COMPREHENSIVE RESPONSIVE DESIGN FOR ALL DEVICES ===== */

/* Large Desktop & TV Screens (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .banner-content h1 {
        font-size: 4rem;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .blog-content h4 {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 40px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .md-content h2 {
        font-size: 3rem;
    }
    
    .md-content h3 {
        font-size: 2.2rem;
    }
}

/* Desktop Screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
    
    .banner-content h1 {
        font-size: 3.5rem;
    }
    
    .banner-content h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .banner-content h1 {
        font-size: 3rem;
    }
    
    .banner-content h2 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .blog-content {
        padding: 25px 30px 30px 30px !important;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content h2 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .blog-content {
        padding: 25px 30px 30px 30px !important;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .md-content h2 {
        font-size: 2.2rem;
    }
    
    .md-content h3 {
        font-size: 1.6rem;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .banner-content h2 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .blog-content {
        padding: 25px 30px 30px 30px !important;
    }
    
    .testimonial-card {
        padding: 25px;
        margin: 10px 0;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .md-section {
        padding: 60px 0;
    }
    
    .md-content h2 {
        font-size: 2rem;
    }
    
    .md-content h3 {
        font-size: 1.5rem;
    }
    
    .md-message {
        padding: 30px;
    }
    
    .md-title {
        gap: 8px;
    }
    
    .md-signature {
        margin-top: 20px;
    }
    
    .signature-line {
        width: 80px;
    }
    
    .md-contact-info {
        padding: 15px;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .banner-content {
        padding: 20px;
        max-width: 90%;
    }
    
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .banner-content h2 {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .inner-banner {
        padding-top: calc(55px + 5rem);
        padding-bottom: 5rem;
    }
    
    .inner-banner .bannerhead1 {
        font-size: 32px;
    }
    
    .blog-content {
        padding: 20px 25px 25px 25px !important;
    }
    
    .blog-content h4 {
        font-size: 1.1rem;
    }
    
    .blog-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .testimonial-card {
        padding: 20px;
        margin: 10px 0;
    }
    
    .service-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .md-section {
        padding: 40px 0;
    }
    
    .md-content h2 {
        font-size: 1.8rem;
    }
    
    .md-content h3 {
        font-size: 1.3rem;
    }
    
    .md-message {
        padding: 20px;
    }
    
    .md-title {
        gap: 6px;
    }
    
    .md-signature {
        margin-top: 15px;
    }
    
    .signature-line {
        width: 60px;
    }
    
    .md-contact-info {
        padding: 15px;
    }
    
    .vision-mission-section {
        padding: 40px 0;
    }
    
    .vision-card,
    .mission-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 1.4rem;
    }
    
    .values-section h3 {
        font-size: 1.8rem;
    }
    
    .value-item {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
    
    .value-item:hover .value-icon {
        transform: scale(1.1);
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 10px;
    }
    
    .banner-content h1 {
        font-size: 1.6rem;
    }
    
    .banner-content h2 {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .blog-content {
        padding: 15px 20px 20px 20px !important;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .service-card {
        padding: 15px 10px;
    }
    
    .md-content h2 {
        font-size: 1.6rem;
    }
    
    .md-content h3 {
        font-size: 1.2rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .banner {
        height: 80vh;
    }
    
    .md-section {
        padding: 40px 0;
    }
    
    .testimonials-section {
        padding: 40px 0;
    }
}

/* High DPI Displays (Retina, 4K, etc.) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .blog-image img,
    .testimonial-card img,
    .service-card img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .blog-content {
        padding: 20px !important;
    }
    
    .testimonial-card {
        padding: 20px;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .service-card {
        padding: 20px;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}



