/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  --st-patricks-blue: hsl(236, 57%, 28%);
  --amaranth-purple: hsl(335, 88%, 38%);
  --royal-blue-dark: hsl(231, 68%, 21%);
  --chrome-yellow: hsl(39, 100%, 52%);
  --space-cadet-1: hsl(230, 41%, 25%);
  --space-cadet-2: hsl(230, 59%, 16%);
  --winter-sky_50: hsla(335, 87%, 53%, 0.5);
  --purple-navy: hsl(236, 26%, 43%);
  --ksu-purple: hsl(275, 54%, 33%);
  --winter-sky: hsl(335, 87%, 53%);
  --razzmatazz: hsl(335, 87%, 51%);
  --platinum: hsl(0, 0%, 90%);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --rajah: hsl(29, 99%, 67%);
  --white: hsl(0, 0%, 100%);

  --gradient-1: linear-gradient(90deg, var(--royal-blue-dark) 0, #FF0000 51%, var(--royal-blue-dark));
  --gradient-2: linear-gradient(90deg, #FF0000, var(--rajah));


  /**
   * typography
   */

  --ff-source-sans-pro: 'Source Sans Pro', sans-serif;
  --ff-poppins: 'Poppins', sans-serif;

  --fs-1: 4.2rem;
  --fs-2: 3.8rem;
  --fs-3: 3.2rem;
  --fs-4: 2.5rem;
  --fs-5: 2.4rem;
  --fs-6: 2rem;
  --fs-7: 1.8rem;
  --fs-8: 1.5rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * border radius
   */

  --radius-4: 4px;
  --radius-12: 12px;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * transition
   */

  --transition-1: 0.15s ease;
  --transition-2: 0.35s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);

  /**
   * shadow
   */

  --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
button,
ion-icon { display: block; }

button,
input {
  background: none;
  border: none;
  font: inherit;
}

button { cursor: pointer; }

input { width: 100%; }

ion-icon { pointer-events: none; }

img { height: auto; }

address { font-style: normal; }


.logo {
  display: block;
 /* background-color: white; */
  margin-right: 20px; 
  padding: 0px;
  margin-top: 10px;
  max-width: 90px; /* Adjust based on your logo size */
  height: auto; /* Maintain aspect ratio */
}


.navbar-top .logo {
  max-width: 120px; /* Adjust for the navbar logo size */
}


html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--purple-navy);
  font-size: 1.6rem;
}

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 95%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/
/* 
.container { padding-inline: 15px; } */

.h2,
.h3 { font-family: var(--ff-source-sans-pro); }

.h3.title{
  text-align: center;
}
.btn {
  background-image: var(--gradient-2);
  background-size: 200%;
  color: var(--white);
  padding: 12px 35px;
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  border-radius: 0 25px;
  transition: var(--transition-2);
}

.btn:is(:hover, :focus) { background-position: right; }

.w-100 { width: 100%; }

.w-101 { 
  width: 65%;
  margin-left:100px;
  margin-top: 100px;
}

.explore-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
}

.explore-btn:hover {
  background-color: #0056b3;
}

.banner-animation { animation: waveAnim 2s linear infinite alternate; }

@keyframes waveAnim {
  0% { transform: translate(0, 0) rotate(0); }
  100% { transform: translate(10px, 10px) rotate(3deg); }
}

.section { padding-block: var(--section-padding); }

.section-title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-3);
  margin-block-end: 60px;
  max-width: max-content;
  margin-inline: auto;
}

.underline { position: relative; }

.underline::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 6px;
  background-image: var(--gradient-2);
  border-radius: 10px;
}

:is(.service-card, .features-card) .title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
}

:is(.service-card, .features-card, .blog-card) .text { font-size: var(--fs-8); }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Reset alignment for the Home Plans section */
#plans .section-title {
  margin-inline: auto !important; /* Force center alignment */
}

#plans .underline::before {
  left: 50% !important; /* Center the underline */
  transform: translateX(-50%) !important;
}


/* Loading Screen Styles - Optimized for faster loading */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}

.split-background {
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: var(--space-cadet-1);
  transition: transform 0.5s ease-out;
}

.split-background.left {
  left: 0;
  transform-origin: left center;
}

.split-background.right {
  right: 0;
  transform-origin: right center;
}

.loading-screen.hide .split-background.left {
  transform: translateX(-100%);
}

.loading-screen.hide .split-background.right {
  transform: translateX(100%);
}

.logo-container {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.company-logo {
  width: 100px;
  height: auto;
  position: relative;
  z-index: 2;
  /* Simplified animation */
  animation: scaleLogo 0.3s ease-out;
}

.loading-circle {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 4px solid transparent;
  border-top-color: var(--winter-sky, #007bff);
  border-right-color: var(--winter-sky, #007bff);
  border-radius: 50%;
  /* Changed from infinite to exactly 2 rotations */
  animation: rotateCircle 0.5s linear 2;
  /* This ensures the animation maintains its final state */
  animation-fill-mode: forwards;
}

/* Fade out logo and circle before split */
.loading-screen.hide .logo-container {
  opacity: 0;
  transition: opacity 0.2s ease-out; /* Increased from 0.01s to 0.2s for smoother fade */
}

@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scaleLogo {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/
/* Top bar container styles */
.top-bar {
  background-color: rgb(245, 238, 238);
  padding: 10px 0;
  border-bottom: 1px solid rgba(235, 228, 228, 0);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 5;
  transition: transform 0.4s ease;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Contact info styles */
.contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Icon styles */
.contact-info ion-icon {
  margin-right: 5px;
  font-size: 16px;
  color: #25a5dd;  /* The blue color from the image */
}

/* Link styles */
.contact-info a {
  color: inherit;
  text-decoration: none;
}

.contact-info a:hover {
  color: #25a5dd;
}

/* Right-aligned content */
.contact-info.right {
  margin-left: auto;
}

/* Responsive styles */
/* Hide top-bar on mobile */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  /* Make navbar fixed at the top */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; /* Ensure it's visible */
  }
  

  /* Ensure no gap between navbar and top */
  .header-wrapper {
    padding-top: 0;
    margin-top: 0;
  }

  /* Prevent content from being covered by fixed navbar */
  body {
    padding-top: 60px; /* Adjust this value based on navbar height */
  }
}




/* Tablet & Mobile Styles */
@media (max-width: 992px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    padding: 2rem;
    transition: 0.3s ease;
    overflow-y: auto;
  }
  .navbar-top .logo {
    height: 80px;  /* or whatever size you want */
    width: auto;
  }
  .navbar.active {
    right: 0;
  }

  .navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }

  .navbar-list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-open-btn {
    display: block;
  }

  .nav-close-btn {
    display: block;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Small Mobile Adjustments */
@media (max-width: 576px) {
  .navbar {
    width: 100%;
    right: -100%;
  }

  .container {
    padding: 0.75rem;
  }

  
  .logo {
    height: 80px;
  }
}

/* Header/Navbar styles */
.header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-block: 14px;
  z-index: 1000;
  box-shadow: 0 2px 30px hsla(0, 0%, 0%, 0.1);
  height: 70px;
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
  --color: var(--st-patricks-blue);
}

.header-wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: transform 0.4s ease;
}

/* Container and Logo */
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-inline: 15px;
}

.header .logo {
  color: var(--color);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-3);
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* Mobile Navigation */
@media screen and (max-width: 991px) {

  .navbar-top .logo {
    height: 80px;  /* or whatever size you want */
    width: auto;
  }
  
  .header {
    top: 0;
    height: 60px;
  }
  .header .container {
    padding-inline: 8px; /* Reduce padding to bring elements closer */
  }

  .nav-open-btn {
    position: absolute;
    right: 10px; /* Move it closer to the right edge */
    top: 50%;
    right: -20%;
    transform: translateY(-50%);
    font-size: 28px; /* Adjust size if needed */
    padding: 4px; /* Reduce padding */
  }

  .header .logo {
    height: 8 0px;
    margin-top: 0;
  }

  .navbar {
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    padding: 20px;
    visibility: hidden;
    z-index: 2;
    transition: 0.25s var(--cubic-in);
    overflow-y: auto;
  }

  .navbar.active {
    transform: translateX(280px);
    visibility: visible;
    transition: 0.5s var(--cubic-out);
  }

  .navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 10px;
  }

  .navbar-list {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .navbar-item {
    width: 100%;
  }

  .navbar-item:not(:last-child) {
    border-bottom: 1px solid var(--platinum);
  }

  .navbar-link {
    display: block;
    padding: 15px 0;
    color: var(--space-cadet-1);
    font-size: 15px;
    font-weight: var(--fw-500);
  }

  .nav-open-btn {
    display: block;
    color: var(--color);
    font-size: 32px;
    padding: 4px;
  }

  .nav-close-btn {
    display: block;
    font-size: 2.8rem;
    padding: 4px;
    color: var(--space-cadet-1);
  }
}

/* Desktop Navigation */
@media screen and (min-width: 992px) {
  .nav-open-btn,
  .nav-close-btn {
    display: none;
  }

  .navbar {
    position: static;
    visibility: visible;
    max-width: none;
    padding: 0;
  }

  .navbar-list {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: 100px;
  }

  .navbar-item:not(:last-child) {
    border-bottom: none;
  }

  .navbar-link {
    color: var(--space-cadet-1);
    font-size: 15px;
    font-weight: var(--fw-500);
    padding: 0;
  }

  .header.scrolled {
    transform: translateY(-40px);
  }

  .header-wrapper.scrolled {
    transform: translateY(-40px);
  }
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_70);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}


/* MAP */
.map-section {
  padding: 30px 0; /* Reduce padding for small screens */
  text-align: center; /* Center aligns all content */
}

.mcontainer {
  max-width: 100%;
  margin: 0 auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* Ensures text is centered */
}

.map-header {
  margin-bottom: 15px; /* Reduce space for small screens */
}

.search-container {
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  flex-direction: column; /* Stack input and button on smaller screens */
  align-items: center;
}

input {
  padding: 8px;
  width: 100%;
  max-width: 280px; /* Keep it from getting too wide */
  border: 1px solid #007bff;
  border-radius: 5px;
  margin-bottom: 10px; /* Add space between input and button */
}

button {
  padding: 8px;
  cursor: pointer;
  width: 150px; /* Set button width for uniformity */
}

.map-container {
  width: 100%;
  max-width: 1000px;
}

#map {
  width: 100%;
  height: 300px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Media query for tablets and small screens */
@media (max-width: 768px) {
  .map-header h2 {
    font-size: 1.8rem; /* Slightly smaller font */
  }

  .search-container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  #map {
    height: 250px; /* Reduce map height for very small screens */
  }
}




/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  background-image: url("../images/hero-bg-bottom.png"),
                    url("../images/hero-bg.png"),
                    var(--gradient-1);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: -280px bottom, center, center;
  background-size: auto, cover, auto;
  padding-block-start: 120px;
  padding-block-end: var(--section-padding);
}

.hero-content { margin-block-end: 50px; }

.hero-subtitle {
  color: var(--chrome-yellow);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-7);
  margin-block-end: 15px;
}

.hero-title {
  color: var(--white);
  font-size: var(--fs-1);
  margin-block-end: 20px;
}

.hero-text {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  margin-left: 30px;
  font-size: 1.3rem;
}


.hero-text img{
  width: 20px;
  height: 20px;
  object-fit: contain;

}

/* Animation for check items */
.hero-text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

/* Stagger the animation for each item */
.hero-text:nth-child(1) { animation-delay: 0.2s; }
.hero-text:nth-child(2) { animation-delay: 0.4s; }
.hero-text:nth-child(3) { animation-delay: 0.6s; }
.hero-text:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-banner img {
  border-radius: 280px; /* Adjust the value for more or less rounding */
  overflow: hidden; /* Ensures content inside the image does not overflow */
}



/* Make it responsive */
@media (max-width: 968px) {
  


.contact-info {
  color: #666;
  font-size: 14px;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info p {
  margin: 5px 0;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  /* display: flex; */
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}


.network-coverage {
  color: #0d6efd;
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info {
  color: #666;
  font-size: 14px;
  margin-top: 20px;
}

.contact-info p {
  margin: 5px 0;
}

.contact-info a {
  color: #0d6efd;
  text-decoration: none;
}



.network-coverage {
  color: #0d6efd;
  font-size: 16px;
  margin-bottom: 10px;
}



.contact-info {
  color: #666;
  font-size: 14px;
  margin-top: 20px;
}

.contact-info p {
  margin: 5px 0;
}

.contact-info a {
  color: #0d6efd;
  text-decoration: none;
}


}



.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
}

.form-group {
  flex: 1;
}


.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  font-size: 15px;
}

select {
  width: 100%;
  padding: 10px;
  margin-bottom: 17px;
  box-sizing: border-box;
  border: 1px solid #e5e5e5;
  font-size: 16px;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/
.about-banner { 
  margin-block-end: 20px;
  text-align: center; /* Center the image */
}

.about .section-title { 
  margin-inline: auto; /* Centers the title */
  text-align: center; /* Ensures text alignment */
}

.about .underline::before {
  left: 50%;
  transform: translateX(-50%);
}

.about-content {
  text-align: center; /* Centers all text inside the about section */
}

.about-text {
  font-size: var(--fs-9);
  margin-block-end: 15px;
}

.stats-list {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr; /* Stacks stats on small screens */
  justify-content: center; /* Centers the stats */
}

.stats-card {
  text-align: center;
  padding: 12px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-10);
}

.stats-title {
  font-size: var(--fs-3);
}

.stats-text { 
  font-size: var(--fs-9);
}

/* Media query for tablets and small screens */
@media (min-width: 600px) {
  .stats-list {
    grid-template-columns: repeat(2, 1fr); /* Two columns on slightly larger screens */
  }
}

@media (max-width: 599px) {
  .container {
    text-align: center; /* Ensures centering on smaller devices */
  }
}

/** contacts
*/

.contact {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}

.contact-col {
  flex: 1;
}

.contact-col h3 {
  font-size: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-col p {
  color: #666;
  margin-bottom: 30px;
}

.contact-col ul {
  list-style: none;
  padding: 0;
}

.contact-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #666;
}

.contact-col ul li img {
  width: 20px;
  height: 20px;
}

.contact-col form {
  display: flex;
  flex-direction: column;
}

.contact-col form label {
  margin-bottom: 5px;
  color: #333;
}

.contact-col form input,
.contact-col form textarea {
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.contact-col form textarea {
  resize: vertical;
  min-height: 120px;
}

.dark-btn {
  background-color: #333;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.dark-btn:hover {
  background-color: #444;
}

.result-message {
  margin-top: 20px;
  text-align: center;
  color: #333;
}

@media (max-width: 650px) {
    .contact{
      display: block;
  }

  .contact-col{
      padding: 20px;
  }
}

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service-list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
  padding: 20px;
}

/* Card styles */
.service-card {
  background-color: var(--white);
  padding: 30px 25px;
  border-radius: 10px;
  width: 100%;
  max-width: 300px; /* Adjust this value to match the width in the image */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}
/* Center the speed (h4) */
.service-card h4.text {
  text-align: center;
}

/* Center the paragraph content */
.service-card .paragraph {
  text-align: center;
}



.service-card:hover {
  transform: translateY(-5px);
}
/* Icon styles */
[class^="card-icon"] {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

[class^="card-icon"] img {
  max-width: 100%;
  height: auto;
}

/* Text styles */
.service-card .title {
  margin-bottom: 15px;
  font-size: 2rem;
}
.section.service .container {
  padding-left: 100px;  /* Adjust this value to move from left edge */
  padding-right: 100px; /* Adjust this value to move from right edge */
}

.service-card .text {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight:400;
  display: flex;
  align-items: center;
  gap: 8px; 
}

.service-card h4.text {
  font-size: 2rem;
  font-weight: bold;
  color: var(--winter-sky);
}




.service-card .text img {
  width: 16px;
  height: 16px;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .service-list {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }
}


@media (max-width: 900px) {
  .service-list {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section.service .container,
  .service-list {
    padding-left: 20px;  /* Smaller padding for mobile */
    padding-right: 20px;
  }
}

@media (max-width: 550px) {
  .service-list {
      grid-template-columns: 1fr;
      padding: 10px;
  }

  .service-card {
      padding: 15px;
  }

  [class^="card-icon"] {
      width: 60px;
      height: 60px;
  }

  .service-card .title {
      font-size: 1.3rem;
  }

  .service-card .text {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    opacity: 100%;
    color: var(--space-cadet-1);
  }
}


@media (max-width: 768px) {
  .service-card {
    max-width: 280px;
  }
}


/* Section title responsiveness */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 550px) {
  .section-title {
      font-size: 1.8rem;
      margin-bottom: 30px;
  }
}
.service-card .card-icon {
  background-image: url("../images/service-banner-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: hsla(238, 89%, 21%, 0.169);
  aspect-ratio: 1 / 1;
  max-width: 80px;
  display: grid;
  place-content: center;
  margin-inline: auto;
  transition: var(--transition-1);
}

.service-card .card-icon-basic {
  background-image: url("../images/service-banner-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: hsla(238, 89%, 21%, 0.169);
  aspect-ratio: 1 / 1;
  max-width: 80px;
  display: grid;
  place-content: center;
  margin-inline: auto;
  transition: var(--transition-1);
}

.service-card .card-icon-bronze {
  background-image: url("../images/service-banner-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: hsla(238, 89%, 21%, 0.169);
  aspect-ratio: 1 / 1;
  max-width: 80px;
  display: grid;
  place-content: center;
  margin-inline: auto;
  transition: var(--transition-1);
}



.rating-badge {
  position: absolute; /* Position it absolutely within the card */
  top: 0px;
  right: 0px;
  width: 30px;
  height: 100px;
  background-color: #007bff;; /* The red color from your example */
  color: white;
  padding: 5px;
  border-radius: 10px 7px 10px 10px; /* Rounded on top-right and bottom-left corners */
  font-weight: bold;
  font-size: 14px;
  writing-mode: vertical-rl; /* Make the text vertical */
  text-orientation: mixed;
  z-index: 1; /* Ensure it stays on top */
  transform-origin: top left;
}

.service-card .card-icon-promo {
  background-image: url("../images/service-banner-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: hsla(238, 89%, 21%, 0.169);
  aspect-ratio: 1 / 1;
  max-width: 80px;
  display: grid;
  place-content: center;
  margin-inline: auto;
  transition: var(--transition-1);
}

.service-card .card-icon-platinum {
  background-image: url("../images/service-banner-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: hsla(238, 89%, 21%, 0.169);
  max-width: 80px;
  display: grid;
  place-content: center;
  margin-inline: auto;
  transition: var(--transition-1);
}

.service-card .card-icon-gold {
  background-image: url("../images/service-banner-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: hsla(238, 89%, 21%, 0.169);
  aspect-ratio: 1 / 1;
  max-width: 80px;
  display: grid;
  place-content: center;
  margin-inline: auto;
  transition: var(--transition-1);
}

.service-card .card-icon-silver {
  background-image: url("../images/service-banner-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: hsla(238, 89%, 21%, 0.169);
  aspect-ratio: 1 / 1;
  max-width: 80px;
  display: grid;
  place-content: center;
  margin-inline: auto;
  transition: var(--transition-1);
}

/* .service-card:hover .card-icon { background-color: var(--winter-sky); } */

.service-card .card-icon ion-icon {
  font-size: 5rem;
  color: var(--winter-sky);
  --ionicon-stroke-width: 20px;
  transition: var(--transition-1);
}
.service-card .card-icon img{
  max-width: 40px;
}


/* .service-card:hover .card-icon ion-icon { color: var(--white); } */




/**
.....HOME PLANS....
*/




/* Service Cards Base Styles */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.service-card {
  --icon-size: 80px;
  --icon-size-mobile: 60px;
  --img-size: 40px;
  --img-size-mobile: 30px;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--space-cadet-1);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  margin: 0 auto;
  max-width: 300px;
  padding: 20px;
  justify-content: space-between;
}

/* Header section - centered */
.service-card [class^="card-icon-"],
.service-card .title,
.service-card > .text,
.service-card > h4.text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Icon styles */
.service-card [class^="card-icon-"] {
  aspect-ratio: 1 / 1;
  max-width: var(--icon-size);
  display: grid;
  place-content: center;
  transition: var(--transition-1);
}

.service-card [class^="card-icon-"] img {
  max-width: var(--img-size);
  object-fit: contain;
  transition: var(--transition-1);
}

/* Price section - centered */
.service-card .paragraph > .text:first-child {
  justify-content: center;
  margin-bottom: 20px;
}

/* Features list section */
.service-card .paragraph {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
}

.service-card .paragraph .text {
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 8px;
  padding-left: 10px;
  margin: 0;
}

/* Check icon and text alignment */
.service-card .paragraph .text img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px; /* Align with first line of text */
}

.service-card .paragraph .text span {
  display: inline-block;
  text-align: left;
}
.paragraph {
  flex-grow: 1; /* Allows this section to expand and push the button down */
}

.service-card div[style="text-align: center; margin-top: 20px;"] {
  margin-top: auto; /* Pushes the button to the bottom */
}

.get-package-btn {
  display: inline-block;
  background-color: #007bff; /* Blue color */
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 25px;
  text-align: center;
  transition: 0.3s;
}

.get-package-btn:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

.button-container {
  text-align: center;
  margin-top: auto; /* Pushes button to bottom */
  padding: 15px 0;
}
/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .service-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  .service-card {
    padding: 15px;
  }
  .service-card .text {
    font-size: 15px;  /* smaller than desktop 20px */
  }

  .service-card [class^="card-icon-"] {
    max-width: var(--icon-size-mobile);
  }

  .service-card [class^="card-icon-"] img {
    max-width: var(--img-size-mobile);
  }
}

@media screen and (max-width: 480px) {
  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    --icon-size-mobile: 50px;
    --img-size-mobile: 25px;
    padding: 10px;
  }
}
/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/

.features-list > li:first-child {
  margin-block-end: 30px;
}

.features-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.features-card .icon {
  background-image: var(--gradient-1);
  background-size: 200%;
  color: var(--white);
  min-width: max-content;
  max-width: max-content;
  font-size: 36px;
  padding: 22px;
  border-radius: 50%;
}

.features-card .icon ion-icon {
  --ionicon-stroke-width: 20px;
}

.features-card .title {
  margin-block-end: 10px;
}

.features-banner {
  margin-block: 40px;
}

.features-banner > img {
  max-width: max-content;
  border-radius: 1000px;
  overflow: hidden;
  margin-inline: auto;
}

/* Tablet Styles */
@media screen and (max-width: 768px) {
  .features-card {
    gap: 15px;  /* Reduce gap for better spacing on tablets */
  }

  .features-card .icon {
    font-size: 28px;  /* Smaller icon size */
    padding: 18px;
  }

  .features-banner > img {
    width: 100%;  /* Make image responsive */
    max-width: 500px;  /* Limit maximum width */
  }

  .features-card .title {
    font-size: 18px;  /* Adjust title size for tablets */
  }

  .features-card .text {
    font-size: 15px;  /* Slightly smaller text */
  }
}

/* Mobile Styles */
@media screen and (max-width: 480px) {
  .features-card {
    flex-direction: column;  /* Stack icon and content */
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .features-card .icon {
    font-size: 24px;  /* Even smaller icon */
    padding: 15px;
  }

  .features-list > li:first-child {
    margin-block-end: 20px;  /* Reduce spacing */
  }

  .features-banner {
    margin-block: 30px;  /* Reduce margin */
  }

  .features-banner > img {
    max-width: 100%;  /* Full width on mobile */
    border-radius: 20px;  /* Less rounded corners */
  }

  .features-card .title {
    font-size: 16px;  /* Smaller title on mobile */
    margin-block-end: 5px;
  }

  .features-card .text {
    font-size: 15px;  /* Smaller text on mobile */
  }

  .features-list {
    gap: 20px;  /* Add gap between list items */
  }
}









/* -----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer { 
  font-size: var(--fs-8);
  color: var(--white);
  background-color: var(--space-cadet-2);
  padding: 00px 0 20px;

 }

.footer a { color: inherit;
  text-decoration: none;
  transition: color 0.3s ease; 
}


.footer a:hover {
  color: var(--highlight-color, #ffcc00);
}

.footer-top {
  background-image: url("../images/footer-bg.png"), var(--gradient-1);
  padding: 30px 0;
} 

.footer-top .container {
  align-items: flex-start; /* Better alignment */
  gap: 10px;
}
.footer-brand {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
}

.footer-brand .logo1 img {
  max-width: 600px;
  height: 100px;
  margin-bottom: 20px;
}

.footer-brand .text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  line-height: 1.6;
}

.social-list {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--space-cadet-1);
  color: var(--winter-sky);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-image: var(--gradient-2);
  color: var(--white);
  transform: scale(1.1);
}

.footer-list:not(:last-child) { 
  margin-bottom: 10px; 
}

.footer-list-title {
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  margin-bottom: 15px;
}

.footer-link,
.footer-item-link {
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}



.footer-link:hover,
.footer-item-link:hover {
  color: var(--highlight-color, #ffcc00);
}

:is(.footer-link, .footer-item-link):not(address):is(:hover, :focus) { text-decoration: underline; }

.footer-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}


.footer-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--space-cadet-2);
  padding: 13px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--white);
}

.footer-bottom {
  background-color: var(--space-cadet-2);
  text-align: center;
  padding: 15px 0;
  font-size: var(--fs-7);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile First Layout */
@media screen and (max-width: 767px) {
  .footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
    margin: 0 auto;
  }

  .social-list {
    justify-content: center;
  }

  .footer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-link,
  .footer-item-link {
    text-align: center;
  }

  .footer-list-title {
    text-align: center;
  }

}

/* Tablet Layout */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer .container {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin: 0 auto;
    text-align: center;
  }

  .social-list {
    justify-content: center;
  }

  .footer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Desktop Layout */
@media screen and (min-width: 1024px) {
  .footer .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
  }

  .footer-list {
    align-items: flex-start;
  }

  .social-list {
    justify-content: flex-start;
  }
}



.copyright {
  margin: 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.copyright-link {
  
  color: var(--highlight-color, #ffcc00);
  text-decoration: none;
}

.copyright-link:hover {
  text-decoration: underline;
}


@media (max-width: 650px) {
    .contact{
      display: block;
  }

  .contact-col{
      padding: 20px;
  }
}
/* WHATSAPP */
.whatsapp_float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
  
  /* Floating up and down */
  animation: float 1.5s infinite ease-in-out;
}

/* Icon alignment */
.whatsapp-icon {
  margin-top: 2px;
}

/* Animation for waves */
.whatsapp_float::before,
.whatsapp_float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.5);
  animation: wave-animation 1.5s infinite;
  top: 0;
  left: 0;
  z-index: -1;
}

.whatsapp_float::after {
  animation-delay: 15s;
}

/* Wave animation */
@keyframes wave-animation {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* Floating up and down */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Mobile adjustments */
@media screen and (max-width: 767px) {
  .whatsapp_float {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 10px;
    font-size: 22px;
  }
  .whatsapp-icon {
    margin-top: 0;
  }
}


/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 0;
  right: 15px;
  background-color: var(--winter-sky);
  color: var(--white);
  font-size: 2rem;
  padding: 14px;
  border-radius: var(--radius-4);
  box-shadow: -3px 3px 15px var(--winter-sky_50);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
}

.go-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-15px);
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 550px screen
 */

@media (min-width: 550px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 550px;
    margin-inline: auto;
  }

  .section-title { --fs-3: 3.6rem; }



  /**
   * HEADER
   */

  .header .btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-inline-start: auto;
  }



  /**
   * ABOUT
   */

  .stats-list { grid-template-columns: repeat(3, 1fr); }




  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:not(:last-child) { margin-block-end: 0; }

  .footer-top .container {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 200px 200px;
  }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }



  /**
   * HERO
   */

  .hero {
    min-height: 600px;
    display: grid;
    place-items: center;
  }

  .hero-content { margin-block-end: 0; }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }



  /**
   * SERVICE
   */

  .service-list { grid-template-columns: 1fr 1fr; }



  /**
   * FEATURES
   */

  .features-list > li:first-child { margin-block-end: 0; }

  .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: repeat(3, 1fr); }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.4rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 950px; }



  /**
   * HEADER
   */

  .header { padding-block: 20px; }

  .overlay,
  .nav-open-btn,
  .navbar-top { display: none; }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .header .btn { margin-inline-start: 0; }

  .navbar-list {
    display: flex;
    gap: 25px;
    margin-right: 120px;
  }

  .navbar-item:not(:last-child) { border-bottom: none; }

  .navbar-link { color: var(--color); }



  /**
   * HERO
   */

  .hero { min-height: 700px; }



  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }



  /**
   * SERVICE
   */

  .service-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * FEATURES
   */

  .features-list { grid-template-columns: 1fr; }

  .features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .features .section-title { grid-column: 1 / 4; }

  .features-banner {
    margin-block: 0;
    display: grid;
    place-items: center;
  }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: repeat(4, 1fr); }

  .footer-brand { grid-column: 1 / 5; }

  .footer-brand .text { max-width: 45ch; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }

  .section-title { --fs-3: 4.6rem; }



  /**
   * HERO
   */

  .hero { min-height: 800px; }



  /**
   * BLOG
   */

  .blog-list { grid-template-columns: 1fr 1fr; }

  .blog-card { height: 100%; }

  .blog-card .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: 1fr 0.5fr 0.7fr 0.5fr 1fr; }

  .footer-brand { grid-column: auto; }

}