body {
    font-family: Open Sans;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Nav Section Starts */

header.scrolled {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logoo img {
  height: 60px;
  animation: logoFadeIn 1s ease-out forwards;
}

/* Logo animation */
@keyframes logoFadeIn {
  0% {
      opacity: 0;
      transform: scale(0.8);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

.logoo img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Desktop navigation */
.desktop-nav {
  display: none;
  align-items: center;
}

@media (min-width: 1024px) {
  .desktop-nav {
      display: flex;
      gap: 2.5rem;
  }
}

.nav-item {
  position: relative;
}

.nav-button {
  all: unset; /* Removes default button styles */
  display: flex;
  align-items: center;
  color: #374151;
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

/* Underline animation for nav items */
.nav-button::after,
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #821928;
  transition: width 0.3s ease;
}

.nav-button:hover::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-button:hover {
  color: #111827;
}

.nav-link {
  color: #374151;
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: #111827;
}

.chevron-icon {
  margin-left: 0.5rem;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0.75rem;
  min-width: 14rem;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  animation: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: dropdownSlide 0.4s ease-out forwards;
}

/* Dropdown slide-in animation */
@keyframes dropdownSlide {
  0% {
      opacity: 0;
      transform: translateY(10px);
  }
  80% {
      opacity: 1;
      transform: translateY(-2px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: #1f2937;
  transition: all 0.2s ease;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: #214150;
  color: white;
  border-radius: 4px;
  transform: translateX(5px);
}

/* Sub-dropdown styles */
.sub-dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 14rem;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.sub-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  animation: dropdownSlide 0.4s ease-out forwards;
}

/* CTA buttons */
.ncta-buttons {
  display: none;
  align-items: center;
}

@media (min-width: 1024px) {
  .ncta-buttons {
      display: flex;
      gap: 1.25rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #821928;
  color: #821928;
  background-color: white;
}

.btn-outline:hover {
  background-color: #821928;
  color: white;
  transform: scale(1.05);
}

.btn-primary {
  border: 1px solid transparent;
  color: white;
  background-color: #821928;
}

.btn-primary:hover {
  background-color: #214150;
  transform: scale(1.05);
}

/* Mobile menu button */
.mobile-menu-button {
  all: unset; /* Removes default button styles */
  display: flex;
  padding: 0.75rem;
  color: #374151;
  border-radius: 8px;
  transition: all 0.2s ease;
}

@media (min-width: 1024px) {
  .mobile-menu-button {
      display: none;
  }
}

.mobile-menu-button:hover {
  color: #111827;
  background-color: #f3f4f6;
  transform: scale(1.1);
}

.mobile-menu-icon {
  width: 28px;
  height: 28px;
}

/* Mobile menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background-color: white;
  transition: max-height 0.5s ease-in-out;
}

.mobile-menu.active {
  max-height: 100vh;
  padding-bottom: 1rem;
  animation: mobileMenuSlide 0.5s ease-out forwards;
}

/* Mobile menu slide animation */
@keyframes mobileMenuSlide {
  0% {
      opacity: 0;
      transform: translateY(-10px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.mobile-nav-item {
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }

.mobile-nav-button {
  all: unset; /* Removes default button styles */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-nav-button:hover {
  background-color: #f3f4f6;
  color: #111827;
  transform: translateX(5px);
}

.mobile-nav-link {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.mobile-nav-link:hover {
  background-color: #f3f4f6;
  color: #111827;
  transform: translateX(5px);
}

.mobile-dropdown {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.mobile-dropdown.active {
  max-height: 1000px;
  animation: dropdownSlide 0.4s ease-out forwards;
}

.mobile-dropdown-item {
  text-decoration: none;
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #4b5563;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-dropdown-item:hover {
  background-color: #f3f4f6;
  color: #111827;
  transform: translateX(5px);
}

.mobile-sub-dropdown {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.mobile-sub-dropdown.active {
  max-height: 1000px;
  animation: dropdownSlide 0.4s ease-out forwards;
}

.mobile-cta {
  padding: 1.5rem 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.4s;
  text-decoration: none;
}

.mobile-menu.active .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta .btn {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .dropdown, .sub-dropdown {
      position: static;
      width: 100%;
      box-shadow: none;
      border: none;
      margin-top: 0;
      transform: none;
      opacity: 1;
      visibility: visible;
      display: none;
  }
  
  .dropdown.active, .sub-dropdown.active {
      display: block;
  }
  
  .sub-dropdown {
      padding-left: 1.5rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
      height: 64px;
  }
  
  .logoo img {
      height: 48px;
  }
  
  .header-container {
      padding: 0 1rem;
  }
}

  /*Nav Section Ends */

/* Image Section Starts */

.image-section {
    text-align: center;
    padding: 20px;
    background-color: transparent;
}

.image-section img {
    max-width: 100%; /* Ensures the image scales down on smaller screens */
    height: auto; /* Maintains aspect ratio */
    width: 2000px;
    align-items: center; /* Set a fixed width for consistency */
    
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .image-section img {
        width: 1900px; /* Fixed width for mobile as well */
        height: 200px; /* Maintains aspect ratio */
    }
}

/* Image Section Ends */


/* Benefits Section Starts */


        /* Container */
        .container {
          max-width: 1500px;
          margin: 0 auto;
          padding: clamp(0.75rem, 3vw, 1.5rem) clamp(0.5rem, 2vw, 1rem);
          width: 100%;
      }

      /* Layout */
      .flex-container {
          display: flex;
          flex-direction: column;
          gap: clamp(1rem, 2.5vw, 1.75rem);
          align-items: stretch;
      }

      @media (min-width: 1024px) {
          .flex-container {
              flex-direction: row;
              align-items: flex-start;
          }

          .benefits-section {
              flex: 0 0 35%;
              max-width: 500px;
          }

          .frame-packages-section {
              flex: 0 0 65%;
          }
      }

      /* Typography */
      h1 {
          font-size: clamp(1.5rem, 4vw, 2.25rem);
          font-weight: 300;
          color: #555;
          margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
          opacity: 0;
          animation: fadeIn 0.8s ease-out forwards;
          text-align: center;
      }

      h2 {
          font-size: clamp(1rem, 2.2vw, 1.375rem);
          font-weight: 500;
          color: #555;
          margin-bottom: 0.25rem;
      }

      .subtitle {
          font-size: clamp(0.65rem, 1.6vw, 0.8125rem);
          color: #666;
          margin-bottom: 0.75rem;
      }

      /* Benefits Grid */
      .benefits-grid {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: clamp(0.5rem, 1.5vw, 0.875rem);
          width: 100%;
      }

      @media (min-width: 768px) {
          .benefits-grid {
              grid-template-columns: repeat(3, 1fr);
          }
      }

      .benefit-card {
          background: linear-gradient(135deg, #ffffff, #d1d1d1, #e6e6e6);
          border-radius: 16px;
          padding: clamp(0.5rem, 1.5vw, 0.75rem);
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          min-height: 80px;
          width: 150px;
          box-shadow: 0 2px 4px rgba(0,0,0,0.1);
          transition: transform 0.2s ease;
      }

      .benefit-card:hover,
      .benefit-card:focus {
          transform: scale(1.02);
      }

      .icon {
          width: clamp(28px, 7vw, 36px);
          height: clamp(28px, 7vw, 36px);
          margin-bottom: 8px;
          fill: #666;
      }

      .benefit-text {
          color: #666;
          font-size: clamp(0.6rem, 1.6vw, 0.6875rem);
          line-height: 1.4;
      }

      /* Frame Package */
      .frame-package {
          margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
          opacity: 0;
          animation: fadeIn 0.8s ease-out 0.6s forwards;
      }

      .frame-package:last-child {
          margin-bottom: 0;
          animation: fadeIn 0.8s ease-out 0.9s forwards;
      }

      .package-content {
          display: flex;
          flex-direction: column;
          gap: clamp(0.75rem, 2vw, 1.25rem);
      }

      @media (min-width: 768px) {
          .package-content {
              flex-direction: row;
              align-items: flex-start;
          }

          .package-image {
              flex: 0 0 35%;
              max-width: 280px;
          }

          .package-details {
              flex: 0 0 65%;
          }
      }

      .package-image img {
          width: 100%;
          height: auto;
          max-height: 300px;
          background-color: #b3d9e6;
          border-radius: 0.25rem;
          transition: transform 0.3s ease;
          display: block;
          object-fit: contain;
      }

      .package-image:hover img,
      .package-image:focus img {
          transform: scale(1.03);
      }

      .specs-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
          gap: clamp(0.375rem, 1vw, 0.75rem);
          font-size: clamp(0.65rem, 1.6vw, 0.8125rem);
      }

      .spec-label {
          font-weight: 500;
      }

      .divider {
          border-bottom: 1px solid #ddd;
          margin: clamp(0.75rem, 2vw, 1.25rem) 0;
      }

      /* Animations */
      @keyframes fadeIn {
          from { opacity: 0; transform: translateY(15px); }
          to { opacity: 1; transform: translateY(0); }
      }

      @keyframes pulse {
          0% { transform: scale(1); }
          50% { transform: scale(1.04); }
          100% { transform: scale(1); }
      }

      .pulse-animation {
          animation: pulse 2s infinite;
      }

      /* Enhanced Responsive Design */
      @media (max-width: 1200px) {
          .container {
              max-width: 100%;
          }

          .benefits-section,
          .frame-packages-section {
              max-width: 100%;
          }
      }

      @media (max-width: 1024px) {
          .flex-container {
              flex-direction: column;
          }

          .benefits-section,
          .frame-packages-section {
              width: 100%;
          }
      }

      @media (max-width: 768px) {
          .container {
              padding: clamp(0.5rem, 2.5vw, 0.75rem);
          }

          .benefit-card {
              min-height: 80px;
              padding: 0.5rem;
          }

          .package-content {
              flex-direction: column;
          }

          .package-image {
              max-width: 100%;
          }

          .specs-grid {
              grid-template-columns: 1fr;
          }
      }

      @media (max-width: 480px) {
          .benefit-card {
              max-width: 280px;
              margin: 0 auto;
              min-height: 80px;
          }

          h1 {
              font-size: clamp(1.25rem, 4.5vw, 1.75rem);
          }

          h2 {
              font-size: clamp(0.875rem, 2.5vw, 1.125rem);
          }

          .subtitle {
              font-size: clamp(0.6rem, 1.8vw, 0.75rem);
          }

          .benefit-text {
              font-size: clamp(0.55rem, 1.8vw, 0.65rem);
          }

          .package-image img {
              max-height: 200px;
          }
      }

      @media (max-width: 360px) {
          .container {
              padding: 0.375rem;
          }

          .benefit-card {
              max-width: 250px;
          }

          .icon {
              width: 26px;
              height: 26px;
          }

          .specs-grid {
              font-size: clamp(0.6rem, 1.8vw, 0.75rem);
          }
      }

      @media (min-width: 1920px) {
          .container {
              max-width: 1600px;
          }

          h1 {
              font-size: clamp(2rem, 3vw, 2.5rem);
          }

          h2 {
              font-size: clamp(1.25rem, 2vw, 1.5rem);
          }

          .benefit-card {
              min-height: 120px;
          }
      }

      /* Touch Device Enhancements */
      @media (hover: none) {
          .benefit-card:hover,
          .package-image:hover img {
              transform: none;
          }

          .benefit-card:active,
          .package-image:active img {
              transform: scale(1.02);
          }
      }



/* Benefits Section Ends */

/* Conctact Section Starts */


.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 1rem;
  background-color: #fff;
  color: #1a3c5e;
  border: 2px solid #821928;
  border-radius: 10px;
  margin: 1.5rem auto;
  max-width: 1200px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.5s ease;
}
.contact-section:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-color: #214150;
}
.contact-text {
  flex: 1;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: bold;
  overflow: hidden;
}
.contact-text h2 {
  color: #000;
  position: relative;
  display: inline-block;
  transform: translateX(-100%);
  animation: slideIn 0.8s ease forwards;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.contact-text p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: normal;
  color: #000;
  transform: translateX(-100%);
  animation: slideIn 0.8s ease forwards 0.3s;
}
.contact-button {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  background-color: #821928;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  cursor: pointer;
  transform: scale(1);
  opacity: 0;
  animation: popIn 0.5s ease forwards 0.6s, pulse 2s infinite 1s;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 auto;
  display: block;
}
.contact-button:hover {
  background-color: #214150;
  transform: scale(1.05);
}
@keyframes slideIn {
  from {
      transform: translateX(-100%);
  }
  to {
      transform: translateX(0);
  }
}
@keyframes popIn {
  from {
      opacity: 0;
      transform: scale(0.5);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .contact-section {
      padding: 1.5rem;
      flex-direction: column;
      text-align: center;
      height: auto;
  }
  .contact-text {
      margin-bottom: 1.5rem;
  }
  .contact-button {
      width: 80%;
      max-width: 300px;
      margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .contact-section {
      padding: 1rem;
      margin: 1rem;
  }
  .contact-text h2 {
      font-size: clamp(1.2rem, 4vw, 1.8rem);
  }
  .contact-text p {
      font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  }
  .contact-button {
      width: 90%;
      padding: 0.6rem 1rem;
  }
}
@media (max-width: 480px) {
  .contact-section {
      padding: 0.75rem;
      margin: 0.5rem;
      border-radius: 8px;
  }
  .contact-text h2 {
      font-size: clamp(1rem, 5vw, 1.5rem);
  }
  .contact-text p {
      font-size: clamp(0.7rem, 2.8vw, 0.85rem);
  }
  .contact-button {
      width: 100%;
      font-size: clamp(0.8rem, 3vw, 0.9rem);
      padding: 0.5rem 1rem;
  }
}



/* Conctact Section Ends */






/* Footer Section Starts */

.footer {
  padding: 60px 0;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 600;
  color: #821928;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
  position: relative;
}

.footer-column ul li a {
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #214150;
}

/* Dropdown Styles */
.ddropdown {
  position: relative;
}

.ddropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  color: #222;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ddropdown-toggle .fa {
  font-size: 10px;
  color: #555;
  transition: transform 0.3s ease, color 0.2s ease;
}

.ddropdown:hover .ddropdown-toggle {
  color: #214150;
}

.ddropdown:hover .ddropdown-toggle .fa {
  transform: rotate(180deg);
  color: #214150;
}

.ddropdown-menu {
  display: none;
  position: relative;
  left: 0;
  background-color: #fff;
  min-width: 100%;
  border-radius: 6px;
  z-index: 10;
  padding: 8px 0;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ddropdown:hover .ddropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.ddropdown-menu li {
  margin-bottom: 0;
  padding: 0;
}

.ddropdown-menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ddropdown-menu li a:hover {
  background-color: #f5f9ff;
  color: #214150;
}

.newsletter {
  max-width: 400px;
}

.newsletter h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-form {
  display: flex;
  position: relative;
  margin-bottom: 30px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  background-color: #f5f9ff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 20px rgba(0, 0, 0, 0.05);
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  padding: 0 24px;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-button:hover {
  background-color: #333;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.contact-column h4 {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-column p {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  margin-right: 50px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.copyright {
  color: #555;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: #111;
  font-size: 18px;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #555;
}

@media (max-width: 992px) {
  .footer-content {
      gap: 40px;
  }
  
  .footer-column {
      flex: 0 0 calc(50% - 20px);
  }
  
  .newsletter {
      flex: 0 0 100%;
      max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
  }
  
  .footer-column {
      flex: 0 0 100%;
  }
  
  .contact-info {
      flex-direction: column;
      gap: 20px;
  }
  
  .footer-bottom {
      flex-direction: column;
      gap: 20px;
      text-align: center;
  }
  
  .social-icons {
      justify-content: center;
  }

  .ddropdown-menu {
      position: static;
      background-color: #fafafa;
      min-width: 100%;
      border-radius: 4px;
      margin-top: 0;
      padding: 8px 0;
      opacity: 1;
      transform: none;
  }

  .ddropdown:hover .ddropdown-menu {
      display: block;
  }
}

/* Footer Section End's */