html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #222;
}
.container {
  margin: 0 auto;
  width: 100%;
}

/* Features Section */
.features-section {
  width: 100%;
  background:  url('assets/images/Hero bg Texture.png') repeat;
  padding: 100px 0 100px 0;
}
.features-container {
  max-width: 1240px;
  margin: 0 auto;
}
.features-heading {
  font-size: 2.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  text-align: left;
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
}
.features-subheading {
    line-height: 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  color: #555;
  margin-bottom: 40px;
  text-align: left;
  font-family: 'Inter', Arial, sans-serif;
  width: 75%;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.feature-card {
  background: #fff;
   border: #CFD1D4 1px solid;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  box-shadow: 0 4px 24px rgba(45,56,138,0.10);
  border-color: #2d388a;
}
.feature-icon {
  width: 32px;
  height: 32px;
}
.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 0;
  font-family: 'Urbanist';
}
.feature-desc {
  font-size: 16px;
  color: #535A61;
  margin: 0;
  font-weight: 400;
  font-family: 'Inter',  sans-serif;
}
.features-action {
  text-align: center;
  margin-top: 80px;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .features-section {
 padding: 80px 48px ;
}
}

@media (max-width: 767px) {
  .features-heading{
    margin-top: 0;

  }
  .features-section {
 padding: 48px 16px ;
}
  .features-grid {
    grid-template-columns: 1fr;
  }
  .features-subheading {
    width: 100%;
  }
  .feature-card {
    padding: 20px 12px;
  }
  .features-action {
    padding-top:10px ;
  margin-top: 0;
}
}

/* Technical Specifications Section */
.specs-section {
  width: 100%;
  background: #111827;
  padding: 80px 0;
  color: #fff;
}
.specs-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.specs-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  font-family: 'Urbanist';
}
.specs-subheading {
    width: 80%;
    line-height: 160%;
    font-weight: 400;
  font-size: 18px;
  color: #cfd8e3;
  margin-bottom: 32px;
}
.specs-table thead{
    color: #cfd8e3;
    font-size: 1rem;
    border: 1px solid #374151;
}
.specs-table-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  margin-bottom: 32px;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.specs-table th, .specs-table td {
  padding: 18px 20px;
  text-align: left;
}
.specs-table th {
  background: #374151;
  color: #cfd8e3;
  font-size: 1rem;
  font-weight: 500;
}
.specs-table td {
  background: #1F2937;
  color: #fff;
  border: 1px solid #353b47;
  vertical-align: middle;
  font-weight: lighter;
}

.specs-flag {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 8px;
}
.specs-download {
  text-align: center;
  margin-top: 32px;
}
.specs-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid #ffffff;
  transition: background 0.2s, color 0.2s;
}
.specs-download-btn:hover {
  background: rgba(45, 56, 138, 0.1);
  color: #fff;
}
.specs-download-icon {
  width: 18px;
  height: 18px;
}
@media (max-width: 1024px) {
    .specs-section {
    padding: 80px 48px;
  }
  .specs-container {
    max-width: 100%;
    padding: 0 ;
  }
  .specs-table th, .specs-table td {
    padding: 14px 10px;
    font-size: 0.95rem;
  }
}
@media (max-width: 767px) {
  .specs-section {
    padding: 48px 16px;
  }
  .specs-subheading {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }
  .specs-table th, .specs-table td {
    padding: 20px 16px;
    
  }

  .specs-table td {
  border: 0px solid #353b47;
  border-bottom: 1px solid #353b47;
}
}
/*
  Responsive Padding for Folds
*/
:root {
  --pad-x: 100px;
  --pad-y: 20px;
}
@media (max-width: 1440px) {
  :root {
    --pad-x: 100px;
    --pad-y: 20px;
  }
}
@media (max-width: 1200px) {
  :root {
    --pad-x: 80px;
    --pad-y: 20px;
  }
}
@media (max-width: 1080px) {
  :root {
    --pad-x: 60px;
    --pad-y: 20px;
  }
}
@media (max-width: 800px) {
  :root {
    --pad-x: 48px;
    --pad-y: 20px;
  }
}
@media (max-width: 360px) {
  :root {
    --pad-x: 16px;
    --pad-y: 20px;
  }
}

/*
  Navbar Styles
*/
.navbar {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: relative;
  z-index: 10;
  border-bottom: #e1e3e8 1px solid;
}
.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--pad-y) var(--pad-x);
}
.logo img {
  height: 60px;
  width: auto;
  display: block;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: #222;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #7a1c2f;
}
.dropdown a{ 
    gap:8px;
    display:flex;
    align-items:center;
    justify-content: center;
}
.dropdown-icon {
  width: 12px;
  height: 12px;
  margin-left: 8px;
  transition: transform 0.2s;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #fff;
  border: 1px solid #e1e3e8;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  min-width: max-content;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 1000;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid #f1f3f4;
  gap: 0;
  justify-content: flex-start;
}
.dropdown-menu a:last-child {
  border-bottom: none;
}
.dropdown-menu a:hover {
  background: #f8f9fa;
  color: #2d388a;
}
.btn-contact {
  background: #2d388a;
  color: #fff;
  padding: 12px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(45,56,138,0.08);
  border: none;
  cursor: pointer;
}
/* light color on hover */
.btn-contact:hover {
  background: #2f41cd;
}

/*
  Sticky Header Styles
*/
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
  z-index: 100;
  pointer-events: none;
}
.sticky-header.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-header .container {
  padding: 12px var(--pad-x);
  text-align: center;
  font-size: 1rem;
  color: #2d388a;
}

/*
  Responsive Navbar
*/
@media (max-width: 900px) {
  .navbar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: var(--pad-y) var(--pad-x);
  }
  .nav-links {
    gap: 24px;
  }
  .btn-contact {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .logo img {
    height: 40px;
  }
  .navbar-content {
    padding: var(--pad-y) var(--pad-x);
  }
  .nav-links {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
}

/* Accessibility: Focus Styles */
.nav-links a:focus, .btn-contact:focus {
  outline: 2px solid #2d388a;
  outline-offset: 2px;
}
.nav-links-container{
    display: flex;
    align-items: center;
    gap: 24px;
}
/* Utility */
.hide {
  display: none !important;
}


/* Hero Section Styles */
.hero {
  width: 100%;
  background:  url('assets/images/Hero bg Texture.png') repeat;
  padding: var(--pad-y) var(--pad-x);
  box-sizing: border-box;
}
.hero-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-gallery-mobile{
  display: none; /* Hide on desktop */
}
.hero-gallery {
  flex: 1 1 420px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Zoom Preview Styles */
.carousel-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: url('assets/svgs/magnifying-glass.svg'), auto;
  /* z-index: 10; */
}

.zoom-preview {
  position: absolute;
  width: 350px;
  height: 350px;
  background-size: 600%; /* Increase zoom level for better detail */
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none; /* Prevent interaction with the zoom preview */
  border: 2px solid #909090;
  z-index: 100; /* Ensure preview is on top */
  /* Fixed position on the side */
  position: fixed;
  /* Positioning is now handled by JavaScript */
}

/* Responsive adjustments for zoom preview */
@media (max-width: 1200px) {
  .zoom-preview {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .zoom-preview {
    display: none; /* Hide on mobile as there's not enough space */
  }
}

.hero-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-image {
    border: white 3px solid;
    border-radius: 24px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
}
.carousel-arrow.left { left: 12px; }
.carousel-arrow.right { right: 12px; }
.carousel-thumbnails {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.carousel-arrow img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.thumbnail {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}
.thumbnail.active, .thumbnail:focus {
  border: 2px solid #2d388a;
}

.hero-details {
  flex: 1 1 420px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.breadcrumbs {
    max-width: 1024px;
  font-size: 0.95rem;
  color: #888;
  margin: 1rem auto 3rem auto;
  display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumbs-item{
    cursor: pointer;
}
.breadcrumbs-current{
    color: #222;
    cursor: pointer;
    transition: color 0.2s;
    &:hover {
      color: #2d388a;
    }
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.hero-badge{
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 8px;
}
.badge {
border: #E1E3E8 1px solid;
  background: white;
  color: #4B5563;
  font-size: 0.95rem;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 500;
  display: inline-block;
  display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #222;
  margin: 0 0 12px 0;
  line-height: 1.15;
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
}
.hero-features {
  display: flex;
    flex-direction: column;
    gap: 20px;
}
.hero-feature-lists{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    color: #222;
}
.price-range{
    display: flex;
    align-items: start;
    gap: 8px;
    flex-direction: column;
}
.price-card {
    border: #CFD1D4 1px solid;
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.price-label {
  font-size: 1rem;
  color: #888;
  margin-right: 8px;
}
.price-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
}
.price-info {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.shipping, .returns {
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.95rem;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 500;
}
.returns {
  background: #FEF3C7;
  color: #92400E;
}
.certifications {
    width: fit-content;
  background: #eef1f7;
  color: #222;
  font-size: 0.95rem;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 500;
  margin-top: 4px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.btn-primary {
  text-align: center;
  background: #2d388a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(45,56,138,0.08);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #2f41cd;
}
.btn-secondary {
  text-align: center;
  background: transparent;
  color: #262A2E;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  border: 1px solid #2d388a;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-secondary img{
    width: 16px;
    height: 16px;
}

.btn-secondary:hover {
    background: rgba(45, 56, 138, 0.1);
    transition: background 0.2s, color 0.2s;
}

.trusted-logos {
  overflow: hidden;
  background:  url('assets/images/Hero bg Texture.png') repeat;
  text-align: center;
  color: #888;
  font-size: 1rem;
}

.logos-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  margin-top: 16px;
  position: relative;
}
.logos-carousel {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: logos-scroll 18s linear infinite;
  width: max-content;
}
.logos-carousel img {
  width: 240px;
  object-fit: contain;
  opacity: 0.95;
  transition: transform 0.2s;
}
.logos-carousel img:hover {
  transform: scale(1.08);
}

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

@media (max-width: 1024px) {
.hero{
  padding: 80px 48px;
}
  .badge {
width: max-content;
}
.hero-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
  .hero-details {
    gap: 16px;
    max-width: 100%;
  }

  .logos-carousel {
    gap: 0px;
  }
  .logos-carousel img {
  width: 120px;
  }


  .hero-gallery{
    max-width: 100%;
    display: flex; /* Show on desktop */
    flex-direction: column;
    align-items: center;
  }

  .hero-features {
    flex-direction: column;
    gap: 16px;
  }
  .hero-feature-lists{
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .hero-content {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .carousel-thumbnails img {
    /* gap: 8px; */
    width: 60px;
    height: 60px;
  }


  .hero-actions {
    flex-direction: row;
    gap: 8px;
    margin-bottom: 48px;
  }
  .trusted-logos .logos {
    gap: 12px;
  }
  .breadcrumbs{
    margin: 1rem auto 2rem auto;
  }

}


@media (max-width: 767px) {
  .hero-title{
    font-size: 36px;
  }
  .logos-carousel {
    gap: 0px;
  }
  .logos-carousel img {
  width: 120px;
  }
  .carousel-image-container img{
   box-shadow: 0px 20px 40px -8px rgba(88, 92, 95, 0.2);
  }
  .hero-gallery-mobile {
    display: flex; /* Show on mobile */
    flex-direction: column;
    align-items: center;
  }
  .hero-gallery{
    display: none;
  }
  .hero{
    padding: 48px 16px;
  }
  .hero-features {
    flex-direction: column;
    gap: 16px;
  }
  .hero-feature-lists{
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .hero-content {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .carousel-thumbnails img {
    /* gap: 8px; */
    width: 60px;
    height: 60px;
  }
  .price-info {
  display: flex;
  flex-direction: column;
}
  .price-info .shipping{
    padding: 8px;
}
  .price-info .returns{
    padding: 8px;
}
.certifications{
  padding: 8px;
  width: 100%;
}
  .hero-actions {
    flex-direction: column;
    gap: 8px;
  }
  .trusted-logos .logos {
    gap: 12px;
  }
  .breadcrumbs{
    margin: 1rem auto 2rem auto;
  }
}

/* FAQ Section */
.faq-section {
    width: 100%;
  background:  url('assets/images/Hero bg Texture.png') repeat;
  padding: 100px 0 100px 0;
  border-top: rgba(225, 227, 232, 1) 1px solid;
}
 .faq-heading .highlight{
  color:rgba(43, 57, 144, 1) ;
 }
.faq-container {
  max-width: 1240px;
  margin: 0 auto;
}

.faq-heading {
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  text-align: left;
  margin-bottom: 48px;
}

.faq-list {
  margin-bottom: 80px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  background-color: white;
  margin-bottom: 36px;
  padding: 0px 20px;
  border: rgba(225, 227, 232, 1) 1px solid;
  border-radius: 12px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #1a1a1a;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #4f46e5;
}

.faq-question span {
  flex: 1;
  padding-right: 24px;
}

.faq-arrow {
  padding: 3px;
  border-radius: 40px;
  background: rgba(241, 242, 243, 1);
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-arrow:hover {
  background: rgba(255, 241, 242, 1);
  cursor: pointer;
}
.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-answer.active {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

.catalog-request {
  background: rgba(247, 248, 249, 1);
  border: rgba(225, 227, 232, 1) 1px solid;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.catalog-content h3 {
  font-family: 'Vert Grotesk Display', 'Inter', Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 120%;
  color: rgba(13, 13, 13, 1);
  margin: 0 0 8px 0;
}

.catalog-content p {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #6b7280;
  margin: 0;
}

.catalog-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 400px;
}

.catalog-email-input {
  flex: 1;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #374151;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.catalog-email-input::placeholder {
  color: rgba(149, 155, 164, 1);
  opacity: 1; /* Ensure placeholder is fully opaque */
  font-size: 14px;
}

.catalog-email-input:focus {
  outline: none;
}

.catalog-email-input::placeholder {
  color: #9ca3af;
}




/* Tablet Styles */
@media (max-width: 1024px) {
.faq-section{
  padding: 80px 48px;
}
.faq-list{
  margin-bottom: 40px;
}
  .catalog-request {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    gap: 24px;
    text-align: start;
  }

  .catalog-form {
    flex-direction: row;
    min-width: 320px;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .faq-section {
    padding: 48px 16px;
  }

  .faq-list {
    margin-bottom: 48px;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px 0;
  }

  .faq-question span {
    padding-right: 16px;
  }



  .faq-answer p {
    font-size: 16px;
  }

  .catalog-request {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
  }


  .catalog-form {
    flex-direction: column;
    min-width: auto;
    gap: 12px;
  }

  .catalog-email-input {
    padding: 12px 16px;
    font-size: 14px;
  }

  .catalog-submit-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {

  .catalog-content h3 {
  text-align: start;
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: 26px;
}
  .catalog-content p {
  text-align: start;

}

  .faq-item {
  margin-bottom: 16px;
  }
.faq-heading {
  margin-top: 0;
}
  .faq-question {
    font-size: 16px;
  }

  .catalog-request {
    padding: 24px 16px;
  }


}

/* Applications Carousel Section */
.applications-section {
  overflow: hidden;
  width: 100%;
  background: url('assets/images/Hero bg Texture.png') repeat;
  border-top: rgba(225, 227, 232, 1) 1px solid;
  padding: 100px 0;
}

.applications-container {
  margin: 0 auto;
}

.applications-header {
  margin: auto;
   max-width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 20px;
}

.applications-content {
  flex: 1;
}

.applications-heading {
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  width: 80%;
}

.applications-subheading {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
  color: #6b7280;
  margin: 0;
  width: 70%;
}

.applications-controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.applications-arrow {
  width: 68px;
  height: 68px;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.applications-arrow:hover:not(:disabled) {
  border-color: #4f46e5;
  background: #f8fafc;
}

.applications-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #e5e7eb;
  background: #f9fafb;
}

.applications-arrow img {
  width: 20px;
  height: 20px;
  opacity: 1;
}

.applications-arrow:disabled img {
  opacity: 0.5;
}

.applications-carousel-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 0 100px;
}

.applications-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.application-card {
  flex: 0 0 420px;
  height: 420px;
  background: #ffffff;
  border-radius:32px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.application-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.application-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.application-card:hover .application-image img {
  transform: scale(1.05);
}

.application-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.579217) 40.23%, rgba(0, 0, 0, 0.8) 75.96%);
  padding: 40px 24px 24px 24px;
  color: white;
}

.application-title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.application-desc {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .applications-section {
    padding: 80px 48px;
  }

  .applications-header {
    align-items: center;
    flex-direction: row;
    padding: 0;
  }
.applications-heading{
  width: 100%;
}
.applications-subheading{
  width: 100%;
}
  .applications-carousel-wrapper {
    padding: 0 60px;
  }

}

/* Mobile Styles */
@media (max-width: 767px) {
  .applications-section {
    padding: 40px 0;
  }

  .applications-header {
    padding: 0 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }

  .applications-carousel-wrapper {
    padding: 0 16px;
  }


  .application-overlay {
    padding: 30px 20px 20px 20px;
  }


  .application-desc {
    font-size: 13px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .applications-section {
    padding: 48px 16px;
  }

  .applications-subheading{
    width: 100%;
    color: #4D545C;
  }
  .applications-heading {
    font-size: 36px;
  }

  .application-card {
    flex: 0 0 320px;
    height: 320px;
  }

  .applications-carousel {
    gap: 16px;
  }

  .application-overlay {
    padding: 24px 16px 16px 16px;
  }

  .application-title {
    font-family: "Urbanist", "Inter", Arial, sans-serif;
    font-weight: 500;
    line-height: 1.2;
    font-size: 20px;
  }

  .application-desc {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 14px;
  }
}

/* Smooth scrolling for touch devices */
@media (hover: none) and (pointer: coarse) {
  .applications-carousel-wrapper {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .applications-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
}

/* Manufacturing Process Section */
.process-section {
  width: 100%;
  background: url('assets/images/Hero bg Texture.png') ;
  padding: 100px 0;
  border-top: rgba(225, 227, 232, 1) 1px solid;
   border-bottom: rgba(225, 227, 232, 1) 1px solid;
}

.process-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 100px;
}

.process-header {
  max-width: 800px;
  margin: auto;
  text-align: center;
  margin-bottom: 60px;
}

.process-heading {
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.process-subheading {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 auto;
  max-width: 700px;
}

.process-content {
  width: 100%;
  position: relative;
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #ffffff;
  padding: 32px;
  border: rgba(225, 227, 232, 1) 1.25px solid;
  border-radius: 20px;
}

.process-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 12px;
}

.process-line{
  position: absolute;
  width: 90%;
}
.process-tab {
  z-index: 50;
  padding: 8px 16px;
  border: 1px solid transparent;
  background: #ffffff;
  border-color: #CFD1D4;
  color: #0D0D0D;
  border-radius: 32px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.process-tab.active {
  background: #3b4794;
  border-color: #3b4794;
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(59, 71, 148, 0.2);
}

.process-details {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.process-info {
  flex: 1;
  min-height: 300px;
  position: relative;
}

.process-tab-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.process-tab-content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.process-title {
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  color: #1a1a1a;
  margin: 0 0 16px 0;
}

.process-description {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 32px 0;
}

.process-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0D0D0D;
}

.process-features li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.process-image-section {
  flex: 1;
  max-width: 560px;
}

.process-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.process-image-container {
  position: relative;
  width: 560px;
  height: 315px;
  overflow: hidden;
}

.process-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.process-image.active {
  opacity: 1;
}

.process-image-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.process-image-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.process-image-arrow.prev {
  left: 20px;
}

.process-image-arrow.next {
  right: 20px;
}

.process-image-arrow img {
  width: 20px;
  height: 20px;
}
  .mobile-process {
    display: none;
  }


/* Mobile Styles */
@media (max-width: 1024px) {
  .process-section{
    padding: 80px 48px;
  }
  .process-container{
    padding: 0;
  }
.mobile-process-line{
    position: absolute;
    margin: auto;
    top:50%;
    left: 10%;
  }
  .mobile-process-navigation{
    position: relative;
  }
    .mobile-process-navigation img{
    width: 80%;
  }
  
  .mobile-process {
    display: block;
    margin-top: 24px;
  }
  
  .mobile-process-step {
    border-radius: 16px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border:  #CFD1D4 1.25px solid;
  }

  .mobile-process-header {
    width: max-content;
    border-radius: 32px;
    margin-top: 1rem;
    margin-left: 1rem;
    background-color: #2d388a;
    padding: 14px 20px;
    text-align: center;
  }
  
  .mobile-step-indicator {
    color: #FFFFFF;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
  }
  
  .mobile-process-content-wrapper {
    padding: 24px 20px;
  }
  
  .mobile-process-image {
    height: 200px;
    overflow: hidden;
    margin-bottom: 24px;
    padding-top: 24px;
    
  }
  
  .mobile-process-image img {
    border-radius: 16px;
    width: 100%;
    height: 167px;
    object-fit: cover;
  }
  
  .mobile-process-navigation {
    display: flex;
    justify-content: space-between;
  }
  
  .mobile-process-nav {
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background-color: #F3F4F6;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
  }
  
  .mobile-process-nav.prev {
    border-radius: 32px;
    padding: 8px 16px;
    color: #0D0D0D;
    background-color: white;
    border: #CFD1D4 1px solid;
  }
  
  .mobile-process-nav.next {
    border-radius: 32px;
    padding: 8px 16px;
    color: #0D0D0D;
    background-color: white;
    border: #CFD1D4 1px solid;
  }
  
  .mobile-process-nav img {
    width: 16px;
    height: 16px;
  }
  
  .mobile-process-nav.prev img {
    margin-right: 8px;
  }
  
  .mobile-process-nav.next img {
    margin-left: 8px;
  }

  .process-content{
    padding: 0;
  }

  .process-header {
    text-align: center;
  }
  
  .process-heading {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .process-subheading {
    font-size: 14px;
    line-height: 1.5;
  }
   .desktop-process {
    display: none;
  }
}

  @media screen and (max-width: 768px) {
  .process-section {
    padding: 40px 16px;
  }
  .desktop-process {
    display: none;
  }
  .mobile-process-line{
    position: absolute;
    margin: auto;
    top:50%;
    left: 10%;
  }
  .mobile-process-navigation{
    position: relative;
  }
  
  .mobile-process {
    display: block;
    margin-top: 24px;
  }
  
  .mobile-process-step {
    border-radius: 16px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border:  #CFD1D4 1.25px solid;
  }

  .mobile-process-header {
    width: max-content;
    border-radius: 32px;
    margin-top: 1rem;
    margin-left: 1rem;
    background-color: #2d388a;
    padding: 14px 20px;
    text-align: center;
  }
  
  .mobile-step-indicator {
    color: #FFFFFF;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
  }
  
  .mobile-process-content-wrapper {
    padding: 24px 20px;
  }
  
  .mobile-process-image {
    height: 200px;
    overflow: hidden;
    margin-bottom: 24px;
    padding-top: 24px;
    
  }
  
  .mobile-process-image img {
    border-radius: 16px;
    width: 100%;
    height: 167px;
    object-fit: cover;
  }
  
  .mobile-process-navigation {
    display: flex;
    justify-content: space-between;
  }
  
  .mobile-process-nav {
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background-color: #F3F4F6;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
  }
  
  .mobile-process-nav.prev {
    border-radius: 32px;
    padding: 8px 16px;
    color: #0D0D0D;
    background-color: white;
    border: #CFD1D4 1px solid;
  }
  
  .mobile-process-nav.next {
    border-radius: 32px;
    padding: 8px 16px;
    color: #0D0D0D;
    background-color: white;
    border: #CFD1D4 1px solid;
  }
  
  .mobile-process-nav img {
    width: 16px;
    height: 16px;
  }
  
  .mobile-process-nav.prev img {
    margin-right: 8px;
  }
  
  .mobile-process-nav.next img {
    margin-left: 8px;
  }
  .process-section {
    padding: 40px 16px;
  }
  .process-content{
    padding: 0;
  }

  .process-header {
    text-align: center;
  }
  
  .process-heading {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .process-subheading {
    font-size: 14px;
    line-height: 1.5;
  }
}


/* Testimonials Section */
.testimonials-section {
  overflow: hidden;
  width: 100%;
  background: url('assets/images/Hero bg Texture.png') ;
  padding: 100px 0;
  border-bottom: rgba(225, 227, 232, 1) 1px solid;
  overflow: hidden;
}

.testimonials-container {
  margin: 0 auto;
}

.testimonials-header {
  padding: 0 100px;
  margin: auto;
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 20px;
}

.testimonials-content {
  flex: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-heading {
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0 0 16px 0;
}

.testimonials-subheading {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #4D545C;
  margin: 0;
}

.testimonials-carousel-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 5px 100px;
}

.testimonials-carousel {
  display: flex;
  gap: 32px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  height: 402px;
  width: 402px;
  flex: 0 0 402px;
  background: #F7F8F9;
  border-radius: 24px;
  padding: 32px;
  border: 1.25px solid #E1E3E8;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 320px;
  position: relative;
}

.testimonial-quote {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-icon {
  width: 32px;
  height: 32px;
  color: #4f46e5;
  margin-bottom: 8px;
}

.testimonial-title {
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0;
}

.testimonial-text {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f4f6;
  flex-shrink: 0;
}

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

.author-info {
  flex: 1;
}

.author-name {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.author-position {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #6b7280;
  margin: 0;
}

/* Animation for infinite scroll */
@keyframes testimonials-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.testimonials-carousel.auto-scroll {
  animation: testimonials-scroll 20s linear infinite;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .testimonials-section {
    padding: 0;
  }
  .testimonials-container {
    padding: 80px 48px;
  }

  .testimonials-header {
    padding: 0;
    margin-bottom: 60px;
  }

  .testimonials-carousel-wrapper {
    padding: 0 60px;
  }

  .testimonials-carousel {
    gap: 24px;
  }

  .testimonial-title {
    font-size: 18px;
  }

  .testimonial-text {
    font-size: 15px;
  }
}

/* Mobile Styles */
@media (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-container {
    padding: 0 16px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    padding: 24px 20px 20px 20px;
    height: 100%;
    gap: 24px;
  }

  .testimonials-carousel {
    gap: 20px;
  }

  .testimonial-quote {
    gap: 12px;
  }

  .quote-icon {
    width: 28px;
    height: 28px;
  }

  .testimonial-title {
    font-size: 16px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-author {
    gap: 12px;
    padding-top: 16px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
  }

  .author-name {
    font-size: 14px;
  }

  .author-position {
    font-size: 12px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {

  .testimonial-card {
    padding: 20px 16px;
    height: 100%;
  }

  .testimonial-title {
    font-size: 15px;
  }

  .testimonial-text {
    font-size: 13px;
  }
}

/* Smooth scrolling for touch devices */
@media (hover: none) and (pointer: coarse) {
  .testimonials-carousel-wrapper {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .testimonials-carousel-wrapper::-webkit-scrollbar {
    display: none;
  }
}

/* Portfolio Section */
.portfolio-section {
  width: 100%;
  background: url('assets/images/Hero bg Texture.png') ;
  border-bottom: rgba(225, 227, 232, 1) 1px solid;
  padding: 100px 0;
}

.portfolio-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 100px;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-heading {
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0 0 16px 0;
}

.portfolio-subheading {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #4D545C;
  margin: 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.portfolio-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1.25px solid #CFD1D4;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.1), 0 4px 8px -2px rgba(0, 0, 0, 0.06);
}
.portfolio-button {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  background: #2B39900D;
  color: #2B3990;
  padding: 12px 24px;
  border: #2B39903D solid 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}


.portfolio-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  transition: transform 0.3s ease;
}


.portfolio-content {
  padding: 32px 24px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portfolio-title {
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: #0D0D0D;
  margin: 0;
}

.portfolio-description {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #4D545C;
  margin: 0;
  flex: 1;
}

.portfolio-link {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3B4794;
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.3s ease;
  margin-top: auto;
}

.portfolio-link:hover {
  color: #2d388a;
}

.expert-cta {
  background: #F7F8F9;
  border: 1.25px solid #E1E3E8;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.expert-content {
  flex: 1;
}
 .expert-title .highlight{
  color:rgba(43, 57, 144, 1) ;
 }
.expert-title {
  font-family: 'Vert Grotesk Display', 'Inter', Arial, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0 0 8px 0;
}

.expert-description {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #4D545C;
  margin: 0;
}

.expert-button {
  background: #2d388a;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.expert-button:hover {
  background: #2d388a;
  transform: translateY(-1px);
}

.expert-icon {
  width: 20px;
  height: 20px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .portfolio-section {
    padding: 0;
  }

  .portfolio-container {
    padding: 80px 48px;
  }

  .portfolio-header {
    margin-bottom: 50px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .portfolio-content {
    padding: 24px 20px 20px 20px;
  }

  .portfolio-title {
    font-size: 20px;
  }

  .expert-cta {
    padding: 24px;
    gap: 24px;
  }
      .resources-section{
    padding: 80px 48px;
  }

}
@media (max-width: 767px) {

  .resources-section{
    padding: 48px 16px;
  }
  
  .portfolio-section {
    padding:  0;
  }

  .portfolio-container {
    padding: 48px 16px;
  }

  .portfolio-header {
    margin-bottom: 40px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }


  .portfolio-content {
    padding: 20px 16px 16px 16px;
    gap: 12px;
  }

  .portfolio-link {
    font-size: 14px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {

  .expert-button{
    justify-content: center;
  }

  .portfolio-content {
    padding: 16px 12px;
  }

  .portfolio-title {
    font-size: 28px;
  }

  .expert-cta {
    flex-direction: column;
    padding: 16px;
  }
  .expert-title {
    text-align: start;
  }
.expert-description{
  text-align: start;
}

}

/* Resources & Downloads Section */
.resources-section {
  width: 100%;
  background: url('assets/images/Hero bg Texture.png') ;
  border-bottom: rgba(225, 227, 232, 1) 1px solid;
  padding: 100px 0;
}

.resources-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 100px;
}

.resources-header {
  text-align: center;
  margin-bottom: 60px;
}

.resources-heading {
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #0D0D0D;
  margin: 0 0 16px 0;
}

.resources-subheading {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #4D545C;
  margin: 0;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.resources-list {
  background: #ffffff;
  border: 1.25px solid #E1E3E8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.resource-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  transition: background-color 0.2s ease;
}

.resource-item:last-child {
  border-bottom: none;
}

.resource-item:hover {
  background-color: #F9FAFB;
}

.resource-info {
  flex: 1;
}

.resource-title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #374151;
  margin: 0;
}

.resource-download {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2B3990;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.1s ease;
  border-radius: 8px;
}

.resource-download:hover {
  color: #4F46E5;
  background-color: rgba(99, 102, 241, 0.05);
  transform: translateY(-1px);
}

.download-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.resource-download:hover .download-icon {
  transform: translateY(-1px);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .resources-section {
    padding: 80px 0;
  }

  .resources-container {
    padding: 0 60px;
  }

  .resources-header {
    margin-bottom: 50px;
  }

  .resource-download {
    font-size: 15px;
  }
  .resource-item {
  flex-direction: row;
}
}

/* Mobile Styles */
@media (max-width: 767px) {
  .resources-section {
    padding: 60px 0;
  }

  .resources-container {
    padding: 0 16px;
  }

  .resources-header {
    margin-bottom: 40px;
  }

  .resource-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
    border-bottom: 1px solid #E1E3E8;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {

  .download-icon {
    width: 14px;
    height: 14px;
  }
}

/* CTA Section */
.cta-section {
  width: 100%;
  background: url('assets/images/Hero bg Texture.png') ;
  padding: 100px 0;
   border-bottom: rgba(225, 227, 232, 1) 1px solid;
}

.cta-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 100px;
}

.cta-content {
  background: #2B3990;
  border-radius: 24px;
  padding: 60px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/images/Hero bg Texture.png') ;
  opacity: 0.1;
  pointer-events: none;
}

.cta-text {
  flex: 1;
  color: #ffffff;
  position: relative;
   z-index: 2;
}

.cta-heading {
  font-family: 'Urbanist', 'Inter', Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.cta-description {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px 0;
}

.cta-contact-info {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0; 
  border-top:  1.25px solid rgba(255, 255, 255, 0.1);
}

.cta-contact-info strong {
  color: #ffffff;
  font-weight: 500;
}

.cta-contact-info a {
  color: #ffffff;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.cta-contact-info a:hover {
  opacity: 0.8;
}

.cta-form-wrapper {
  flex: 0 0 400px;
  position: relative;
  z-index: 2;
}

.cta-form-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #262A2E;
  margin: 0 0 24px 0;
  text-align: start;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #374151;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: #3B4794;
  box-shadow: 0 0 0 3px rgba(59, 71, 148, 0.1);
}

.form-input::placeholder {
  color: #9CA3AF;
}

.phone-input-group {
  display: flex;
  gap: 8px;
}

.country-code {
  flex: 0 0 80px;
  padding: 12px 8px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #374151;
  background: #ffffff;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.country-code:focus {
  outline: none;
  border-color: #3B4794;
  box-shadow: 0 0 0 3px rgba(59, 71, 148, 0.1);
}

.phone-input {
  flex: 1;
}

.form-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: #262A2E;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
   font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  margin-top: 8px;
}

.form-submit-btn:hover {
  background: #1F2937;
  transform: translateY(-1px);
}

.form-submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
    .cta-section {
    padding: 80px 48px;
  }

  .cta-container{
    padding: 0 ;
  }
  .cta-heading{
    font-size: 36px;
    text-align: start;
  }
  .cta-description{
    font-size: 16px;
    text-align: start;
  }
  .cta-text{
    margin-bottom:0;
  }
  .cta-contact-info{
    text-align: start;
    font-size: 16px;
  }

  .cta-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }

  .cta-form-wrapper {
    width: 100%;
    max-width: 400px;
  }
}

/* Media queries */
@media (max-width: 767px) {
  .cta-section {
    padding: 48px 16px;
  }
  .cta-container{
    padding: 0 ;
  }
  .cta-heading{
    font-size: 36px;
    text-align: start;
  }
  .cta-description{
    font-size: 16px;
    text-align: start;
  }
  .cta-text{
    margin-bottom:0;
  }
  .cta-contact-info{
    text-align: start;
    font-size: 16px;
  }

  .cta-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }

  .cta-form-wrapper {
    width: 100%;
    max-width: 400px;
  }
}

/* Footer Section */
.footer-section {
  width: 100%;
  background-color: #FFFFFF;
  color: #374151;
  font-family: 'Inter', Arial, sans-serif;
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/images/Hero bg Texture.png');
  opacity: 0.5; /* Controls the opacity of the background image */
  z-index: 1;
}

.footer-main {
  padding: 60px 0;
  border-bottom: 1px solid #E5E7EB;
  position: relative;
  z-index: 2; /* Ensures content appears above the overlay */
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 16px;
  padding: 32px;
  border: #CFD1D4 1px solid;
  border-radius: 20px;
  background: #FFFFFF;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-tagline {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
}

.tagline-top {
  color: #0D0D0D;
  font-family: 'Urbanist', Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.tagline-highlight {
  color: #2B3990;
  font-weight: 600;
}

.tagline-bottom {
  color: #0D0D0D;
  font-family: 'Urbanist', Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.footer-links-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column-title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  margin: 0 0 16px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #4B5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links li a:hover {
  color: #2B3990;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-address, .contact-phone, .contact-email {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #4B5563;
  margin: 0;
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-email-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-email a {
  color: #4B5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-email a:hover {
  color: #2B3990;
}

.footer-social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.social-link:hover {
  background: rgba(43, 57, 144, 0.1);
}

.social-link img {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  background: #F9FAFB;
  padding: 16px 0;
  position: relative;
  z-index: 2; /* Ensures content appears above the overlay */
}

.footer-bottom-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  width: 100%;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #535A61;
  margin: 0;
}

.footer-legal-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-legal-links a {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #535A61;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #2B3990;
}

/* Media Queries */
@media (max-width: 1024px) {
  .cta-form-wrapper{
    max-width: 100%;
  }

  .footer-main{
    padding: 0;
  }
  .footer-container{
    padding: 80px 48px;
  }
.footer-logo img {
  height: 44px;
  width: auto;
}
  .tagline-top{
    font-size: 18px
  }
  .tagline-bottom{
    font-size: 18px
  }
  .footer-brand {
    flex-direction: row ;
  }

  .footer-tagline {
    align-items: center;
    text-align: center;
  }

  .footer-social-links{
    border-top: 1px solid #E5E7EB;
    padding-top: 16px;
  }
  .footer-bottom-container {
    padding: 0 16px;
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .copyright{
    text-align: start;
  }
}

@media (max-width: 767px) {
  .footer-main{
    padding: 0;
  }
  .footer-container{
    padding: 48px 16px;
  }
.footer-logo img {
  height: 44px;
  width: auto;
}
  .tagline-top{
    font-size: 18px
  }
  .tagline-bottom{
    font-size: 18px
  }
  .footer-brand {
    flex-direction: column;
  }

  .footer-tagline {
    align-items: center;
    text-align: center;
  }
  .footer-links-section{
    grid-template-columns: 1fr;
  }
  .footer-social-links{
    border-top: 1px solid #E5E7EB;
    padding-top: 16px;
  }
  .footer-bottom-container {
    padding: 0 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .copyright{
    text-align: start;
  }
}

/* Hamburger Menu for Mobile */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 15;
  position: relative;
}

.hamburger-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #2d388a;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  z-index: 100;
  padding: 24px 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav-menu.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #2d388a;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.mobile-nav-header {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #e1e3e8;
}

.mobile-nav-logo img {
  width: 64px;
  height: auto;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f3f4;
}

.mobile-nav-links li:last-child {
  border-bottom: none;
}

.mobile-nav-links a {
  color: #222;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: block;
}

.mobile-nav-links .mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}

.mobile-dropdown-toggle img {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active img {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-dropdown-menu a {
  padding: 8px 16px;
  font-size: 14px;
  color: #555;
}

.mobile-nav-btn {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 14px 0;
  text-align: center;
}

/* Show hamburger on smaller screens */
@media (max-width: 900px) {
  .hamburger-toggle {
    display: flex;
  }
  
  .nav-links-container {
    display: none;
  }
  
  .navbar-content {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
    background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: none;
  /* Add blur effect */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); /* Safari support */
  transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
}

@supports not (backdrop-filter: blur(5px)) {
  .modal-overlay {
    background-color: rgba(0, 0, 0, 0.7);
  }
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 8px;
  /* padding: 24px; */
  width: 90%;
  max-width: 560px;
  z-index: 1001;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
}
.modal-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E7EB;
  padding: 16px;
  }

.modal-close {
  padding: 4px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #111827;
  margin-top: 0;
  
  margin-bottom: 0;
}

.modal-form .form-group {
  /* margin-bottom: 16px; */
  padding: 16px;
}

.modal-form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.modal-form .required {
  color: #DC2626;
}

.modal-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #111827;
}

.modal-form input:focus {
  outline: none;
  border-color: #2D388A;
  box-shadow: 0 0 0 2px rgba(45, 56, 138, 0.1);
}

.modal-form input::placeholder {
  color: #9CA3AF;
}

.modal-form .download-btn {
  padding: 12px 24px;
  border-radius: 6px;
  background-color: rgba(43, 57, 144, 0.12);
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s;
}

.modal-form .download-btn:hover {
  background-color: #1E2A6B;
}

/* Active modal states */
.modal.active,
.modal-overlay.active {
  display: block;
}
.download-btn-wrapper{
  padding: 16px;
  border-top: 1px solid #E5E7EB;
  display: flex;
  justify-content: end;
}

/* Modal Animation */
@keyframes modalFadeIn {
  from { opacity: 0; transform: translate(-50%, -60%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}

.modal.active {
  animation: modalFadeIn 0.3s forwards;
}

/* Responsive adjustments */
@media (max-width: 480px) {

}

/* Quote Modal Styles */
#quote-modal {
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
}

#quote-modal .modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #F3F4F6;
}

#quote-modal .modal-title {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

#quote-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #6B7280;
}


#quote-modal input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #111827;
}

#quote-modal input::placeholder {
  color: #9CA3AF;
}

#quote-modal .phone-input-container {
  display: flex;
  /* gap: 8px; */
  padding: 16px;
}

#quote-modal .country-code-wrapper {
  position: relative;
  width: 95px;
  flex-shrink: 0;
}

#quote-modal .country-code {
  width: 100%;
  padding: 16px 35px 16px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 8px 0 0 8px;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  cursor: pointer;
}

#quote-modal .code-dropdown-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

#quote-modal #phoneNumber {
  flex-grow: 1;
  border-radius: 0 8px 8px 0;
}


.form-btn-wrapper{
  display: flex;
  justify-content: flex-end; 
  border-top: 1px solid #E5E7EB;
  padding: 16px;
}
#quote-modal .submit-btn {
  padding: 12px 24px;
  border-radius: 6px;
  background-color: rgba(43, 57, 144, 0.12);
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s;
}

#quote-modal .submit-btn:hover {
  background-color: #1E2A6B;
}

/* Enhancement for both modals */
.modal {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 480px;
}

.modal-overlay {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

@media (max-width: 520px) {
  #quote-modal,
  #brochure-modal {
    width: 90%;
  }
  
  #quote-modal .modal-title {
    font-size: 18px;
  }
}