/* Reset & base */
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	color: #222;
	line-height: 1.5;
	background: #fff;
}

a {
	color: #003366;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	cursor: pointer;
	border: none;
	font-size: 1rem;
	padding: 0.6em 1.2em;
	border-radius: 3px;
	font-weight: 600;
}

/* Container */
.container {
    width: 90%;
    max-width: 95%;
    margin: 0 auto;
}

  /* Header */
  header {
    background: transparent;
    border-bottom: none;
    padding: 10px 0;
    position: absolute;
    top: 0;
    z-index: 1000;
    width: 100%;
  }

  .header-inner {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 25px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    max-width: 90vw;
    margin: 24px auto 0;
  }

  .logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #003366;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Arial Black", Arial, sans-serif;
  }

  .logo img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Navigation - Desktop */
  .main-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
  }

  #mainNav {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  #mainNav > li {
    position: relative;
  }

  #mainNav > li > a {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    color: #243c7c;
    padding: 8px 20px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: block;
  }

  #mainNav > li > a:hover {
    text-decoration: none;
    background-color: #eee;
  }

  /*#mainNav > li:not(:last-child) > a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background-color: #243c7c;
  }*/

   #mainNav li.has-submenu > a::before {
		content: '▼';
		position: absolute;
		right: 0px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 15px;
		transition: transform 0.3s;
   }

  /* CTA Buttons */
  .header-cta {
    position: absolute;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 8px;
    right: 35px;
    bottom: -30px;
  }

  .btn-request {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    background-color: #d60000;
    color: white;
    padding: 10px 30px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }

  .btn-request:hover {
    text-decoration: none;
    background-color: #a30000;
  }

  .btn-phone {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    background-color: #003366;
    color: white;
    padding: 10px 30px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .btn-phone:hover {
    text-decoration: none;
    background-color: #001f4d;
  }

  .phone-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
  }

  /* Submenus - Desktop */
  .has-submenu {
    position: relative;
  }

  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-radius: 8px;
    min-width: 220px;
    display: none;
    z-index: 1001;
    list-style: none;
    padding: 10px 0;
  }

  .has-submenu:hover .submenu {
    display: block;
  }

  .submenu a {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    color: #243c7c;
    padding: 8px 20px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: block;
  }

  .submenu a::after {
    display: none;
  }

  .submenu a:hover {
    background: #f8f9fa;
    color: #d60000;
  }

  /* Mobile menu toggle */
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #243c7c;
    padding: 5px;
  }

  /* ==================================== */
  /* TABLET (769px - 1024px) */
  /* ==================================== */
  @media (max-width: 1024px) {
    .header-inner {
      padding: 20px 25px;
      max-width: 95vw;
    }

    #mainNav > li > a {
      font-size: 14px;
      padding: 6px 12px;
    }

    .btn-request, .btn-phone {
      font-size: 14px;
      padding: 8px 20px;
    }
  }

  /* ==================================== */
  /* MOBILE (< 769px) */
  /* ==================================== */
  @media (max-width: 768px) {
    .mobile-menu-toggle {
      display: block;
      order: 3;
    }

    .header-inner {
      flex-wrap: nowrap;
      padding: 15px 20px;
      gap: 15px;
      position: relative;
    }

    /* Logo */
    .logo {
      order: 1;
      flex: 1;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      order: 2;
    }

    /* Navigation - Mobile */
    nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      flex-direction: column;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      border-radius: 0 0 8px 8px;
      padding: 0;
      margin-top: 10px;
      z-index: 999;
    }

    nav.show {
      display: flex;
    }

    #mainNav {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }

    #mainNav > li {
      width: 100%;
    }

    #mainNav > li > a {
      padding: 12px 20px;
      border-bottom: 1px solid #eee;
      font-size: 16px;
    }

    #mainNav > li:not(:last-child) > a::after {
      display: none;
    }

    #mainNav > li:last-child > a {
      border-bottom: none;
    }

    /* CTA Buttons - Mobile */
    .header-cta {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      flex-direction: column;
      padding: 20px;
      gap: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      margin-top: 10px;
      border-radius: 8px;
      z-index: 998;
    }

    .header-cta.show {
      display: flex;
    }

    .btn-request, .btn-phone {
      width: 100%;
      text-align: center;
      justify-content: center;
    }

    /* Mobile Submenus */
    .has-submenu {
      position: relative;
    }

    .has-submenu .submenu {
      position: static;
      display: none;
      box-shadow: none;
      background: #f8f9fa;
      margin-top: 0;
      border-radius: 0;
      padding: 0;
      width: 100%;
    }

    .has-submenu.mobile-active .submenu {
      display: block;
    }

    .has-submenu > a {
      position: relative;
    }

    .has-submenu > a::after {
      content: '▼';
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 12px;
      transition: transform 0.3s;
    }

    .has-submenu.mobile-active > a::after {
      transform: translateY(-50%) rotate(180deg);
    }
  }

  /* ==================================== */
  /* SMALL MOBILE (< 480px) */
  /* ==================================== */
  @media (max-width: 480px) {
    .header-inner {
      padding: 12px 15px;
      max-width: 95vw;
    }

    .mobile-menu-toggle {
      font-size: 20px;
    }

    nav {
      padding: 0;
    }

    #mainNav > li > a {
      font-size: 14px;
      padding: 10px 15px;
    }

    .header-cta {
      padding: 15px;
    }

    .btn-request, .btn-phone {
      font-size: 14px;
      padding: 10px 20px;
    }
  }

/* Hero Section */
.hero {
	background: url('../images/ac-express-banner.jpg') center/cover no-repeat;
	color: white;
	padding: 90px 20px 60px;
	text-align: left;
	position: relative;
    height: 75vh;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-content {
    position: absolute;
    max-width: 600px;
    z-index: 1;
    left: 7%;
    bottom: 15%;
}
.hero h1 {
	margin-bottom: 0.3em;
    font-family: "Poppins", sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	font-style: normal;
	line-height: 100%;
	letter-spacing: 0px;
}

.hero p {
    font-family: "Poppins", sans-serif;
	font-size: 1.1rem;
	font-weight: 400;
	font-style: Regular;
	line-height: 28px;
	letter-spacing: 0px;
	opacity: 0.85;
}

/* Features Section */
.features {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    margin: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #FAFAFA;
    padding: 50px 0;
}

.feature-item {
    position: relative;
    background: #fff;
    border: 1px solid #efefef;
    padding: 15px 40px;
    flex: 1 1 380px;
    max-width: 380px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 0.05);
}

.feature-item h3 {
    font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0px;
	color: #1F3D7D;
	margin-bottom: 12px;
}

.feature-item p {
    font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 0px;
	color: #1F3D7D;
}

.feature-item::after {
	content: "";
    position: absolute;
    width: 15px;
    height: 30px;
    opacity: 1;
    top: 0px;
    left: 25px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    background: #DD1616;
}

/* Our HVAC Services Section */
.services-section {
    position: relative;
    background: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
    max-width: 100%;
    margin: 0 auto 60px;
}

.services-section h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 2rem;
    line-height: 2;
    letter-spacing: 0px;
    margin-bottom: 6px;
    color: #1F3D7D;
}

.services-section h2 .red {
    font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: Italic;
	font-size: 40px;
	line-height: 22px;
    letter-spacing: 0px;
	color:#DD1616;
}

.services-section p {
    font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: Regular;
	font-size: 18px;
	line-height: 28px;
    letter-spacing: 0px;
	text-align: center;
	color: #1F3D7D;
	max-width: 700px;
	margin: 0 auto 60px;

}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    justify-content: center;
}

.service-card {
    background: #1F3D7D;
    color: white;
    flex: 1 1 415px;
    max-width: 415px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
	width: 100%;
	object-fit: cover;
}

.service-card-content {
    position: relative;
    padding: 40px 45px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.service-card-content h4 {
    font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0px;
	margin: 0 0 12px;
	color: #FFFFFF;
    text-align: left;
}

.service-card-content p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0px;
    flex-grow: 1;
    color: #FFFFFF;
    margin: 0 auto;
    text-align: left;
}

.service-card-content::after {
    content: "";
    position: absolute;
    width: 135px;
    height: 20px;
    opacity: 1;
    top: 0px;
    left: 45px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: #DD1616;
}


/* Common Problems Section */
.problems-section {
    position: relative;
    background: #FAFAFA;
    max-width: 100%;
    margin: 50px auto;
    padding: 85px 0;
    text-align: center;
}

.problems-section .content-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
	align-items: center;
}

.problems-image {
    flex: 1 1 1px;
    max-width: 50%;
    border-radius: 20px;
    overflow: hidden;
}

.problems-image img {
    width: 90%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.problems-text {
    flex: 1 1 1px;
    max-width: 50%;
	text-align: left;
}

.problems-text h3 {
    font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 40px;
	line-height: 100%;
	letter-spacing: 0px;
	margin-bottom: 12px;
	color: #1F3D7D;
}

.problems-text h3 .red {
    font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: Italic;
	font-size: 40px;
	line-height: 22px;
	letter-spacing: 0px;
	color:#DD1616;
}

.problem-list {
    font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: Italic;
	font-size: 16px;
	line-height: 48px;
	letter-spacing: 0px;
	text-align: left;
	list-style: none;
	padding-left: 0;
	margin-bottom: 25px;
	color: #1F3D7D;
}

.problem-list li {
    font-family: "Poppins", sans-serif;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    font-style: Italic;
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0px;
    margin-bottom: 0;
    color: #1F3D7D;
}

.problem-list li::before {
	content: " ";
    position: absolute;
    left: 0px;
    top: 12px;
    width: 18px;
    height: 18px;
    background-image: url('../images/mingcute_shield-fill.png');
    background-size: contain;
    background-repeat: no-repeat;
}


/* Repair CTA Section */
.repair-cta-section{
    position: relative;
    background: #FFFFFF;
    max-width: 100%;
    margin: 50px auto;
    padding:0;
    text-align: center;
}

.repair-cta-section p{
    font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 25px;
	line-height: 46px;
	letter-spacing: 0px;
	text-align: center;
    color: #1F3D7D;
}

.repair-cta-section p .red{
	color:#DD1616;
}


.problems-cta {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

.btn-schedule {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 46px;
    letter-spacing: 0px;
    text-align: center;
    border-radius: 10px;
    background-color: #DD1616;
    color: white;
    padding: 12px 0;
    transition: background-color 0.3s ease;
    width: 270px;
    height: 70px;
}

.btn-schedule:hover {
	background-color: #DD1616;
    text-decoration: none;
}

.btn-free-dx {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 46px;
    letter-spacing: 0px;
    text-align: center;
    border-radius: 10px;
    background-color: transparent;
    color: #1F3D7D;
    padding: 12px 0;
	transition: background-color 0.3s ease, color 0.3s ease;
	border: 2px solid #1F3D7D;
    width: 270px;
    height: 70px;
}

.btn-free-dx:hover {
    text-decoration: none;
	background-color: #1F3D7D;
	color: white;
}


/* Replace System Section */
.replace-section {
    position: relative;
    background-image: url('../images/replacement-banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 85px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 100%;
    margin: 60px auto;
    border-radius: unset;
}

.replace-section::before {
    content: " ";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 61, 125, 0.8);
    z-index: 0;
}

.replace-text {
    position: relative;
    display: inline-block;
    max-width: 50%;
    z-index: 1;
    padding-right: 10%;
}

.replace-text h3 {
    font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 40px;
	line-height: 1.2;
	letter-spacing: 0px;
    margin-top: 0;
	margin-bottom: 18px;
}

.replace-text p {
    font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-estimate {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 46px;
    letter-spacing: 0px;
    text-align: center;
    border-radius: 10px;
    background-color: #DD1616;
    color: white;
    padding: 12px 0;
    transition: background-color 0.3s ease;
    width: 270px;
    height: 70px;
}

.btn-estimate:hover {
	background-color: #DD1616;
    text-decoration: none;
}

.replace-list {
    position: relative;
    display: inline-block;
    max-width: 50%;
    background: transparent;
    border-radius: 6px;
    color: #222;
    padding: 0;
    z-index: 1;
    vertical-align: top;
    width: 45%;
    margin-top: 3%;
}

.replace-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    background: #FFFFFF;
    padding: 25px 40px;
    justify-content: flex-start;
	
    font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style:normal;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: 0;

}

.replace-list-item .icon-svg {
    position: relative;
    clear: both;
    width: 20px;
    height: 20px;
	min-width: 20px;
	min-height: 20px;
    margin-right: 10px;
    margin-top: 5px;
}
.replace-list-item .icon-svg img{
	width:100%;
}

/* Maintenance Section */
.maintenance-section {
    padding: 15px 20px;
    max-width: 100%;
    margin: 0 auto 60px;
    text-align: center;
}

.maintenance-section h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0px;
    margin: 0;
    margin-bottom: 6px;
    color: #1F3D7D;
}

.maintenance-section h2 .red {
	color: #DD1616;
    font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 40px;
	line-height: 22px;
	letter-spacing: 0px;
	margin-bottom: 6px;
}

.maintenance-section p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 0px;
    text-align: center;
    color: #1F3D7D;
    max-width: 75%;
    margin: 0 auto 30px;

}

.maintenance-features {
	display: flex;
	justify-content: center;
	gap: 35px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.maintenance-feature {
    position: relative;
    background: #fff;
    border: 1px solid #efefef;
    padding: 35px 40px;
    flex: 1 1 29%;
    max-width: 29%;
    border-radius: 20px;
    box-shadow: -1px 3px 10px 0px rgb(0 0 0 / 0.05);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #1F3D7D;
    display: flex;
    align-items: start;
    gap: 0;
    min-height: 70px;
    justify-content: center;
    text-align: left;
}

.maintenance-feature svg {
	fill: #d60000;
	min-width: 18px;
	min-height: 18px;
}

.maintenance-feature .icon-svg {
    position: relative;
    clear: both;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    margin-right: 10%;
    margin-top: 10px;
}

.maintenance-feature .icon-svg img{
	width:100%;
}
.maintenance-pro {
    background-color: #1F3D7D;
    color: #FFFFFF;
    font-weight: 700;
    padding: 15px 15px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    font-size: 0.95rem;
    box-shadow: 0 5px 0px 0px rgb(221 22 22 / 1);
    border-radius: 20px;
}

.maintenance-pro h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    margin: 0;
    margin-bottom: 6px;
	color: #FFFFFF;
	text-align: center;
    max-width: 100%;	
}

.maintenance-pro h3 .red{
	color: #DD1616;
}
	
.maintenance-pro p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    margin: 0;
    margin-bottom: 6px;
	color: #FFFFFF;
	text-align: center;
    max-width: 100%;
}

/* Why Us Section */
.why-us-section {
    position: relative;
    max-width: 100%;
    margin: 60px auto 60px;
    padding: 60px 20px;
    text-align: center;
    background-color: #FAFAFA;
}

.why-us-section h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0px;
    margin: 0;
    margin-bottom: 6px;
    color: #1F3D7D;
}

.why-us-section h2 .red {
	color: #d60000;
	font-style: italic;
}

.why-us-section p {
	max-width: 650px;
	margin: 0 auto 30px;
	font-size: 1rem;
	color: #333;
	font-weight: 500;
}

.why-cards {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.why-card {
	background: #f0f6fc;
	padding: 20px;
	border-radius: 6px;
	flex: 1 1 280px;
	max-width: 320px;
	font-weight: 600;
	font-size: 0.95rem;
	color: #003366;
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 70px;
	justify-content: center;
}

.why-card svg {
	fill: #d60000;
	min-width: 18px;
	min-height: 18px;
}

/* Look No Further Section */
.look-no-further {
	max-width: 1100px;
	margin: 60px auto 60px;
	padding: 0 20px;
	text-align: center;
}

.look-no-further h2 {
	font-size: 1.8rem;
	margin-bottom: 30px;
	font-weight: 700;
}

.look-no-further h2 .red {
	color: #d60000;
	font-style: italic;
}

.trust-cards {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
    margin-top: 50px;
}

.trust-card {
    position: relative;
    flex: 1 1 32%;
    max-width: 32%;
    border-radius: 20px;
    overflow: hidden;
    color: white;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 15px 0px 20px 40px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 0px 0px rgba(221, 22, 22, 1);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: left;

}

.trust-card.satisfaction {
	background-image: 
    linear-gradient(
        to right,
        rgba(31, 61, 125, 0.8) 0%,   /* strong blue on the left */
        rgba(31, 61, 125, 0.6) 40%, /* smooth fade */
        rgba(31, 61, 125, 0.0) 100% /* fully transparent on right */
    ),
    url('../images/satisfaction-guaranteed.jpg');
}

.trust-card.pricing {
	background-image:
    linear-gradient(
        to right,
        rgba(31, 61, 125, 0.8) 0%,   /* strong blue on the left */
        rgba(31, 61, 125, 0.6) 40%, /* smooth fade */
        rgba(31, 61, 125, 0.0) 100% /* fully transparent on right */
    ),url('../images/competitive-pricing.jpg');
}

.trust-card.fast {
	background-image:
    linear-gradient(
        to right,
        rgba(31, 61, 125, 0.8) 0%,   /* strong blue on the left */
        rgba(31, 61, 125, 0.6) 40%, /* smooth fade */
        rgba(31, 61, 125, 0.0) 100% /* fully transparent on right */
    ),url('../images/fast-&-reliable.jpg');
}

/* Contact Form Section */
.contact-section {
	position: relative;
	background-image:
    linear-gradient(
        to right,
        rgba(0, 0, 0, 0.4) 0%,   /* strong blue on the left */
        rgba(0, 0, 0, 0.4) 40%, /* smooth fade */
        rgba(0, 0, 0, 0.0) 100% /* fully transparent on right */
    ),url('../images/get-in-touch-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	padding: 75px 20px;
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.contact-form-container {
    display: block;
    background: white;
    padding: 30px 75px 50px;
    border-radius: 20px;
    max-width: 70%;
    width: 100%;
    box-shadow: 10px 10px 0px 5px rgba(31, 61, 125, 1);
}

.contact-form-container h2 {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 35px;
    margin-top: 25px;
    color: #1F3D7D;
}

.contact-form-container h2 .red {
	font-style: italic;
	color: #DD1616;
}

.contact-form-container p {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #000000;
    margin-bottom: 25px;
    float: right;
}

form {
	display: grid;
	gap: 15px;
	grid-template-columns: 1fr 1fr;
}

form label {
	display: none;
}

form input,
form select,
form textarea {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 4px;
    border: none;
    width: 100%;
    resize: vertical;
    font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	line-height: 23px;
	letter-spacing: 0px;
	vertical-align: middle;
	color: #222222;

}

form input::placeholder,
form select::placeholder,
form textarea::placeholder{
	outline: none;
    font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	line-height: 23px;
	letter-spacing: 0px;
	vertical-align: middle;
	color:#838383;

}

form textarea {
	grid-column: 1 / -1;
	min-height: 100px;
}

form button {
    grid-column: 1 / -1;
    background-color: #0158A6;
    color: white;
    padding: 15px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    width: 150px;
    height: 50px;
    display: block;
    margin: 10px auto;
    font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 16px;
    line-height: 25px;
	letter-spacing: 0px;
	vertical-align: middle;
	text-transform: capitalize;

}

form button:hover {
	background-color: #1F3D7D;
}


/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 75px auto 10px;
    padding: 0 20px;
    gap: 10px;
    justify-content: center;
    width: 85%;
    z-index: 10;
}

.footer-nav a {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 23px;
    line-height: 30px;
    letter-spacing: 0px;
    border: 1px solid #fff;
    padding: 50px 35px;
    border-radius: 4px;
    color: #0158A6;
    text-decoration: none;
    background: white;
    transition: background-color 0.3s ease;
    flex: 1 1 32%;
    max-width: 32%;
    text-align: center;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
}

.footer-nav a:hover {
	background-color: #f5faff;
}

.contact-section:after{
	content:" ";
    position: absolute;
    bottom: 0;
    background: #ffffff;
    height: 20vh;
    width: 100%;
    z-index: 1;
}
/* Blog Section */

.blog-section {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	padding: 30px 20px 60px;
	text-align: center;
	background: #FAFAFA;
}

.blog-section h2 {
	display: inline-block;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 40px;
	line-height: 50px;
	letter-spacing: 0px;
	text-align: center;
	margin-bottom: 30px;
	color: #1F3D7D;
}

.blog-section h2 .red {
	color: #DD1616;
	font-style: italic;
}

/* NEW: Carousel container */
.blog-container {
	position: relative;
	overflow: hidden;
	max-width: 1200px;
	margin: 0 auto;
}

.blog-track {
	display: flex;
	gap: 20px;
	overflow-x: hidden;
	scroll-behavior: smooth;
	padding: 10px 5px 20px;
}

/* Your existing blog-card CSS - UNCHANGED */
.blog-card {
	background: #FFFFFF;
	color: white;
	flex: 0 0 100%;
	max-width: 100%;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	transition: transform 0.3s ease;
}

/* Desktop: 3 items */
@media (min-width: 769px) {
	.blog-card {
		flex: 0 0 28%;
		max-width: 28%;
	}
}

/* Mobile: 1 item */
@media (max-width: 768px) {
	.blog-card {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.blog-card:hover {
	transform: translateY(-5px);
}

.blog-image {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 250px;
}

.blog-content {
	position: relative;
	padding: 40px 35px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	font-weight: 600;
	background: #1F3D7D;
	color: #ffffff;
	text-align: left;
}

.blog-content h4 {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0px;
	margin: 0;
	color: #ffffff;
}

.blog-content p {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: 0px;
	flex-grow: 1;
	color: #ffffff;

}

.blog-readmore {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: Italic;
	font-size: 20px;
	line-height: 100%;
	letter-spacing: 0px;
	margin-top: 15px;
	color: #DD1616;
	align-self: flex-start;
}

/* Your existing pagination CSS - UNCHANGED */
.blog-pagination {
	margin-top: 25px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.blog-pagination button {
    position: relative;
	padding: 10px 15px;
	background: #1F3D7D;
	color: white;
	border: none;
	transition: background-color 0.3s ease;
	cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    font-weight: bold;
}

.blog-pagination button:hover:not(:disabled) {
	background-color: #1F3D7D;
}

.blog-pagination button:disabled {
	background: #ccc;
    font-size: 30px;
    font-weight: bold;
	color: #1F3D7D;
	cursor: not-allowed;
	opacity: 0.5;
}
	

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2rem;
		line-height: 40px;
	}
	.features {
        flex-direction: column;
        max-width: 100%;
        padding: 45px 30px;
	}
	
	.feature-item {
		padding: 20px 25px;
		flex: 1 1 100%;
		max-width: 100%;
	}
	
	.service-cards {
		flex-direction: column;
		max-width: 100%;
		gap: 20px;
	}

	.service-card-content {
		padding: 35px 30px;
	}
	
	.service-card-content h4{
		font-size: 18px;
	}

	.service-card-content::after {
		content: "";
		left: 30px;
	}
	
	.problems-section .content-wrapper {
		flex-direction: column;
	}

	.problems-image {
		flex: 1 1 250px;
		max-width: 100%;
	}
	
	.problems-image img {
		width: 100%;
	}
	
	.problems-text {
		flex: 1 1 250px;
		max-width: 100%;
		text-align: left;
	}

	.problems-text h3 {
		font-size: 26px;
		line-height: 40px;
		margin-bottom: 0;
	}
	
	.problems-text h3 .red {
		font-size: 26px;
		line-height: 22px;
	}

	.problem-list li {
		font-size: 16px;
	}

	.problem-list li::before {
		content: " ";
		top: 10px;
	}
	
	.hr-space{display:none}
	
	.replace-section {
		flex-direction: column;
		padding: 40px 15px;
	}

	.replace-text {
		max-width: 100%;
		z-index: 1;
		padding-right: 0;
	}
	
	.btn-estimate {
		margin-bottom: 50px;
	}
	
	.replace-list {
        max-width: 100%;
        width: 100%;
    }
	.replace-list-item {
		padding: 15px 15px;
	}

	.maintenance-features {
		flex-direction: column;
		max-width: 100%;
		flex-wrap: nowrap;
		height: 450px;
        margin-top: 60px;
	}
	.maintenance-feature {
		min-height: auto;
        flex: 1 1 100%;
        max-width: 100%;
	}
	.why-cards {
		flex-direction: column;
		max-width: 100%;
	}

	.trust-cards {
		flex-direction: column;
		max-width: 100%;
		flex-wrap: nowrap;
		height: 575px;
	}
	.trust-card{
		min-height: auto;
        flex: 1 1 100%;
        max-width: 100%;
	}
	
	.footer-nav {
		flex-direction: column;
		max-width: 100%;
		width: 100%;
	}
	.footer-nav a {
		padding: 30px 35px;
		flex: 1 1 100%;
		max-width: 100%;
	}
	.blog-cards {
		flex-direction: column;
		max-width: 100%;
	}

	.contact-form-container {
		padding: 25px 25px 25px;
		max-width: 90%;
	}
	.contact-form-container h2 {
		margin-bottom: 0;
	}
	form {
		grid-template-columns: 1fr;
        width: 100%;
	}
	
	
	.blog-image {
		height: 200px;
	}
	
	.blog-content {
		padding: 20px 15px;
	}
}
/* Footer Container */
.footer {
    background: #f6f6f7;
    padding: 40px 5%;
    font-family: "Poppins", sans-serif;
    color: #1F3D7D;
}

/* Top Row Layout */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
.footer-logo img {
    max-width: 300px;
    height: auto;
}

/* Social Icons Bar */
.footer-social {
    position: absolute;
    background: #12316b;
    padding: 20px 45px;
    border-radius: 50px 0 0 50px;
    display: flex;
    gap: 25px;
    align-items: center;
    width: 315px;
    right: 0;
}

.footer-social a {
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
}

/* Google icon is image */
.footer-social img {
    width: 100%;
    height: auto;
}

/* Menu Links */
.footer-menu {
    margin: 30px 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    font-size: 18px;
    width: 70%;
}

.footer-menu a {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 0px;
    flex-grow: 1;
    color: #1F3D7D;
    text-decoration: none;
    padding: 0;
}

.divider {
    width: 0;
    height: 18px;
    background: #c3cbd5;
    display: inline-block;
}

/* Line */
.footer-line {
    border: none;
    border-bottom: 1px solid #d4d9e1;
    margin-bottom: 20px;
    width: 100%;
}
/* Hvac Installation Section */
.hvac-installation-section {
    padding: 15px 20px;
    max-width: 100%;
    margin: 0 auto 30px;
    text-align: center;
}

.hvac-installation-section h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0px;
    margin: 0;
    margin-bottom: 6px;
    color: #1F3D7D;
}

.hvac-installation-section h2 .red {
	color: #DD1616;
    font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-style: italic;
	font-size: 40px;
	line-height: 22px;
	letter-spacing: 0px;
	margin-bottom: 6px;
}

.hvac-installation-section p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 0px;
    text-align: center;
    color: #1F3D7D;
    max-width: 75%;
    margin: 0 auto 30px;

}

/* Maintenance Section */
.before-installation-section {
    padding: 4rem 20px 2rem;
    max-width: 100%;
    margin: 0 auto 0px;
    text-align: center;
    background: #f9f9f9;
}

.before-installation-section h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0px;
    margin: 0;
    margin-bottom: 6px;
    color: #1F3D7D;
}

.before-installation-section h2 .red {
	color: #DD1616;
    font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 22px;
	letter-spacing: 0px;
	margin-bottom: 6px;
}

.before-installation-section p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    color: #1F3D7D;
    max-width: 55%;
    margin: 0 auto 30px;

}
/* Updated class names */
    .hvac-system-function {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }

    .hvac-system-card {
      background: white;
      border-radius: 16px;
      padding: 30px 24px;
         box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 4px, #efefef 0px 0px 0px 7px;
      position: relative;
      transition: transform 0.3s ease;
    }

    .hvac-system-card:hover {
      transform: translateY(-8px);
    }

    .card-title {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: #1F3D7D;
      margin-top: 0px;
      text-align: left;
      font-family: "Poppins", sans-serif;
    }
 .card-title span{
      color: #DD1616;
    }
    .card-content {
      font-size: 1rem !important;
      line-height: 1.6 !important;
      color: #444;
      width: 100%;
      max-width: 100% !important;
      margin-bottom: 0px !important;
      text-align: left !important;
    }

    /* Red connecting dots - Desktop (horizontal) */
    @media (min-width: 768px) {
      .hvac-system-function {
        grid-template-columns: repeat(4, 1fr);
      }

    

      .hvac-system-card:not(:last-child)::before {
        content: '';
        position: absolute;
        right: -62px;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, #d32f2f 60%, transparent 60%);
        background-size: 8px 2px;
        z-index: 0;
      }
    }

    /* Mobile (vertical connectors) */
    @media (max-width: 767px) {
      
  .before-installation-section p{
        max-width: 100% !important;
      }
      .hvac-system-card:not(:last-child)::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -62px;
        transform: translateX(-50%);
        width: 2px;
        height: 50px;
        background: linear-gradient(to bottom, #d32f2f 60%, transparent 60%);
        background-size: 2px 8px;
      }
    }

    .footer-text {
      font-size: 1.1rem !important;
      max-width: 100%  !important;
      line-height: 1.7;
      font-style: italic !important;
    font-weight: 600 !important;
    }
    .footer-text-second {
         margin-top:3.5rem !important;
    font-size: 18px;
    margin-top: 1.5rem;
    /* opacity: 0.9; */
    background: #4b6396;
    padding: .5rem;
    font-weight: 500 !important;
    }

    /* Section Background */
.step-by-step-process-section {
    background: #1F3D7D;
    padding: 60px 10px 20px; 
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Heading */
.step-by-step-process-section .heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0px;
    color:#ffffff;
}

.step-by-step-process-section .heading span {
    color: #DD1616;
}

.step-by-step-process-section .sub-heading {
    max-width: 740px;
    margin: 0 auto 50px;
    font-size: 16px;
    opacity: 0.9;
}

/* Steps Container */
.steps-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Step Box */
.step-box {
    background: #fff;
    color: #000;
    padding: 25px;
    border-radius: 12px;
    width: 48%;
    margin: 50px 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 4px, #efefef 0px 0px 0px 7px;
    text-align: left;
    position: relative;
}

.step-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    color:#1F3D7D;
}
.step-box p{
  color:#1F3D7D;
  width: 90%;
  margin-top: 0px;
}
.step-box h3 span {
    float: right;
    color: #DD1616;
    font-size: 30px;
    font-weight: bold;
}

/* Alternate Alignment */
.left {
    margin-left: 0;
}

.right {
    margin-left: auto;
    margin-top: -12rem;
}

/* Arrow Styling */
.arrow {
    font-size: 40px;
    color: #DD1616;
    margin: -10px 0 -20px;
    transition: 0.3s ease;
}

/* Footer Text */
.footer-text {
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.9;
}

/* -------------------------- */
/*        RESPONSIVE          */
/* -------------------------- */

@media (max-width: 992px) {
    .step-box {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .step-box {
        width: 100%;
    }

    .arrow {
        transform: rotate(90deg);
        font-size: 32px;
        margin: 10px 0;
    }

    .step-box h3 span {
        font-size: 30px;
    }
}

@media (max-width: 500px) {
    .step-by-step-process-section .heading {
        font-size: 26px;
        line-height: 32px;
    }

    .sub-heading {
        font-size: 14px;
    }

    .step-box {
        padding: 18px;
    }

    .step-box h3 {
        font-size: 16px;
    }

    .step-box h3 span {
        font-size: 30px;
    }

    .arrow {
        font-size: 26px;
    }
}
.box-2,.box-3, .box-4{
  position: relative;
}
.box-2::before{
        display: inline-block;
    content: "";
    position: absolute;
    left: 50%;
    top: -3rem;
    width: 3.5rem;
    aspect-ratio: 1;
    background-image: url(../../assets/images/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(100%, -40%);
}
.box-2::after{
    display: inline-block;
    content: "";
    position: absolute;
    left: 53%;
    bottom: -4.1rem;
    width: 3.5rem;
    aspect-ratio: 1;
    background-image: url(../../assets/images/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: revert;
    transform: rotate(120deg);
}
.box-3::after{
    display: inline-block;
    content: "";
    position: absolute;
    left: 43%;
    bottom: -5.4rem;
    width: 3.2rem;
    aspect-ratio: 1;
    background-image: url(../../assets/images/arrow2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: revert;
}
.box-4::after{
       display: inline-block;
    content: "";
    position: absolute;
    left: 53%;
    bottom: -4.5rem;
    width: 3.5rem;
    aspect-ratio: 1;
    background-image: url(../../assets/images/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: revert;
    transform: rotate(125deg);
}
@media (max-width: 768px) {
  /* mobile: give spacing but skip the very first .left inside .step-row */
  .right,
  .left {
    margin-top: 6rem;
  }
.step-by-step-process-section .sub-heading{
  margin-bottom: -4rem;
}
}

/* ===========================================
   KEY INFORMATION SECTION
=========================================== */
.key-information-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;

}

/* Heading */
.ki-heading {
        font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    line-height: 60px;
    letter-spacing: 0px;
        margin: auto;
    margin-bottom: 6px;
    color: #1F3D7D;
    width: 90%;
    text-align: center;
}

.ki-heading span {
    color: #e63946;
}

/* Two Column Layout */
.ki-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Left Column */
.ki-left {
    width: 55%;
}

.ki-intro {
    font-size: 16px;
    margin-bottom: 20px;
    color: #1F3D7D;
}

.ki-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ki-list li {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Icon */
.icon {
    color: #e63946;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Right Column */
.ki-right {
    width: 45%;
}

.ki-right img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* CTA Box */
.ki-cta-box {
    background: #1F3D7D;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    margin-top: 50px;
}

.ki-cta-box p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 15px;
    line-height: 1.6;
}

.ki-btn {
    display: inline-block;
    color: #ffffff;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: underline;
}
.key-information-section .problem-list li{
      font-style: normal;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;
    margin-bottom: 16px;
}

/* ===========================================
   RESPONSIVE CSS
=========================================== */

/* Tablet */
@media (max-width: 992px) {
    .ki-content {
        flex-direction: column;
    }

    .ki-left, .ki-right {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .ki-heading {
        font-size: 26px;
        line-height: 32px;
    }

    .ki-list li {
        font-size: 14px;
    }

    .icon {
        font-size: 16px;
    }

    .ki-cta-box {
        padding: 25px 18px;
    }

    .ki-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}
/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.faq-box {
    background: #ffffff;
    width: 100%;
    max-width: 850px;
    padding: 40px 35px;
    border-radius: 20px;
       box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 4px, #efefef 0px 0px 0px 3px;
}

/* Title */
.faq-title {
       display: block;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 40px;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 30px;
    color: #1F3D7D;

}

.faq-title span {
      color: #DD1616;
    font-style: italic;

}

/* FAQ Items */
.faq-item {
    margin: 25px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #1F3D7D;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 22px;
    font-weight: 600;
    color: #1F3D7D;
}

/* Answer (hidden by default) */
.faq-answer {
  display: none;
   margin-top: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: #1F3D7D;
    margin-left: 2rem;
}

/* OPEN item */
.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-icon {
    content: "−";
}

/* Divider Line */
.faq-box hr {
    border: none;
    border-bottom: 1px solid #ddd;
}

/* Responsive CSS */
@media (max-width: 600px) {
    .faq-box {
        padding: 30px 20px;
    }

    .faq-title {
        font-size: 26px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer {
        font-size: 13px;
    }
    .faq-answer{
      margin-left: 1rem;
    }
}

/* Copyright */
.footer-copy {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    line-height: 35px;
    letter-spacing: 0px;
    text-align: center;
    color: #1F3D7D;
}

/* Responsive */
@media (max-width: 768px) {

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }

    .footer-social {
		position: relative;
        padding: 10px 20px;
        gap: 15px;
		border-radius: 50px;
		justify-content: center;
	}

    .footer-menu {
        font-size: 16px;
    }
	
	.submenu a {
		font-size: 12px;
		line-height: 28px;
		padding: 5px 20px;
	}
}

@media (max-width: 480px) {
    .footer-social {
        gap: 12px;
    }

    .footer-menu a {
        font-size: 15px;
    }
}
