/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/
html {
  scroll-behavior: smooth;
}
:root {

  /**
   * colors
   */

  --st-patricks-blue: hsl(236, 57%, 28%);
  --amaranth-purple: hsl(335, 88%, 38%);
  --royal-blue-dark: hsl(233, 83.30%, 14.10%);
  --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: hsla(241, 91.50%, 9.20%, 0.90);
  --winter-sky: hsl(335, 50.80%, 12.70%);
  --razzmatazz: hsl(232, 54.60%, 36.30%);
  --platinum: hsl(0, 0%, 90%);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --rajah: hsl(223, 92.70%, 51.80%);
  --white: hsl(0, 0%, 100%);

  --gradient-1: linear-gradient(90deg,rgb(0, 2, 10) 0,var(--ksu-purple) 51%,var(--royal-blue-dark));
  --gradient-2: linear-gradient(90deg,var(--razzmatazz) ,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);
  /* models */
  --modal-bg: var(--white);
  --modal-shadow: var(--shadow);
  --modal-border-radius: var(--radius-12);
  --modal-text-color: var(--purple-navy);
  --modal-hover-color: var(--razzmatazz);
  --modal-title-color: var(--st-patricks-blue);

}





/*-----------------------------------*\
  #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; }

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;
  scroll-behavior:smooth;
 
}
body {
  margin: 0;
  height: 100vh;
  background: var(--gradient-1); /* Black & Violet Gradient */
  background-attachment: fixed;
  
  justify-content: center;
  
  
  font-size: 24px;
  font-family: Arial, sans-serif;
  color: white; /* Text color for visibility */
  position: relative;
}



::-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
\*-----------------------------------*/
.watermark { */
  /position: fixed;
  bottom: 250px;  Adjust position
  right:550px;   /* Adjust position*/
  width: 150px;  Set watermark logo size
  height: auto; 
  opacity: 1;  Adjust transparency
  z-index: -1;
  border-radius:50%;
} */

.container { padding-inline: 15px; }

.h2,
.h3 { font-family: var(--ff-source-sans-pro); }

/* Button Styling with Yellow-Golden Effect */
.btn {
  background-color:#f02781; /* Yellow to Rich Golden */
  background-size: 200%;
  color: white;
  padding: 12px 35px;
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  border-radius: 0 25px;

  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

/* Hover Effect */
.btn:hover {
  background-position: right center;
  transform: scale(1.05);
   /* Brighter Glow */
}

/* Active (Click) Effect */
.btn:active {
  transform: scale(0.98);
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.6);
}

.btn:is(:hover, :focus) { background-position: right; }

.w-100 { width: 100%; }

.banner-animation { animation: waveAnim 2s linear infinite alternate; }

@keyframes waveAnim {
  0% { transform: translate(0, 0) rotate(0); }
  100% { transform: translate(2px, 2px) rotate(1deg); }
}

.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:rgb(11, 127, 15);
  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;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  --color: var(--white);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 14px;
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  --color: var(--st-patricks-blue);

  position: fixed;
  background-color: var(--white);
  /* box-shadow: 0 2px 30px hsl(55, 100.00%, 49.40%); */
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo {
  color: var(--color);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-3);
   
}
.logo-image{
  width:500px;
  height:50px;
}
.logo-main{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  text-items:center;
}

.nav-open-btn {
  color: var(--color);
  font-size: 32px;
  padding: 4px;
}

.navbar {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: -280px;
  width: 100%;
  max-width: 280px;
  min-height: 100%;
  padding: 20px;
  visibility: hidden;
  z-index: 10;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  transform: translateX(280px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
  background-color:#ff456f;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px 30px;
}

.navbar-top .logo {
  color: var(--st-patricks-blue);
  font-size: 4.2rem;
  font-weight: var(--fw-700);
  margin-bottom:90px;
}

.nav-close-btn {
  color: var(--space-cadet-1);
  font-size: 2.8rem;
  padding: 4px;
}

.navbar-item:not(:last-child) { border-bottom: 1px solid var(--platinum); position:relative;}

.navbar-link {
  color: var(--space-cadet-1);
  font-size: var(--fs-8);
  font-weight: var(--fw-600);
  padding-block: 12px 0px;
  /* padding:20px; */
  border-radius:20px;
  display:block;
  text-decoration:none;
}


.line {
  width: 0; 
  height: 2px;
  background-color: #f02781;
  border: none;
  transition: width 0.3s ease-in-out;
  bottom:0;
  left:0;
}
.navbar-item:hover .line{
  background-color:#f02781;
  width:100%;
}

/* Hover Effect */
/* .navbar-item:hover {
  text-color:rgb(249, 178, 11);/* Brighter Gold */
  /* text-shadow: 0px 0px 15px rgb(255, 200, 0), 0px 0px 30px rgba(255, 223, 0, 0.8);
} */ */

/* Hover Effect */
/* .navbar-item:hover {
  color:0px 0px 15px rgb(255, 200, 0), 0px 0px 30px rgba(255, 223, 0, 0.8); /* Brighter Gold */
  /* text-shadow: 0px 0px 15px rgb(255, 223, 0), 0px 0px 30px rgba(255, 223, 0, 0.8); */
/* } */ 
.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;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  gap:30px;
  justify-content: space-between; /* Align text left, image right */
  background-image:         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: 100px 8%; /* Add left and right margin */
  height: 100vh;
}

/* Hero Content - Move Left */
.hero-content {
  
  z-index: 10;
  text-align: left;
  max-width: 600px; 
}

/* Hero Subtitle */
.hero-subtitle {
  color:#f02781 ;
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-7);
  margin-block-end: 15px;
}

/* Hero Title */
.hero-title {
  color: var(--white);
  font-size: var(--fs-1);
  margin-block-end: 20px;
}

/* Hero Text */
.hero-text {
  color: var(--white);
  font-size: var(--fs-8);
  margin-block-end: 30px;
}

/* Hero Banner - Move to Right */
.hero-banner {
  margin-left:30px;
  
  position: relative;
  max-width: 650px;
  /* filter: drop-shadow(0px 0px 10px rgba(255, 223, 0, 0.6)); Golden glow effect */
  z-index: 0;
}

/* Disable scrolling when popup is open */
body.noscroll {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 670px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-text {
    font-size: 0.9rem;
  }
  .hero-subtitle {
    padding-top:150px;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
  
  .hero-image {
    max-width: 250px;
  }
}


/** Full-Screen Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Dark overlay */
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease-in-out;
}

/* Popup Box */
.popup-container {
  width: 90%;
  max-width: 600px;
  max-height: 80vh; /* Prevents overflow */
  overflow-y: auto;
  padding: 30px;
  border-radius: 15px;
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #000000 50%, #6600cc 100%);
  box-shadow: 0px 0px 40px rgba(102, 0, 204, 0.7);
  color: white;
  animation: slideIn 0.4s ease-in-out;
}

/* Background Image with Glow Effect */
.popup-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: url("https://img.freepik.com/free-psd/portrait-woman-using-laptop-computer_23-2150116868.jpg") no-repeat center/cover;
  opacity: 0.7;
  filter: blur(4px);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  z-index: -1;
}

/* Popup Content */
.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
}

/* Image with Glow Effect */
.popup-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0px 0px 20px rgba(138, 43, 226, 0.8);
  border: 3px solid white;
  transition: transform 0.3s ease-in-out;
}

.popup-image:hover {
  transform: scale(1.1);
  box-shadow: 0px 0px 40px rgba(138, 43, 226, 1);
}

/* Text Section */
.popup-text {
  flex: 1;
}

/* Popup Title */
.popup-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0px 0px 15px rgba(138, 43, 226, 0.8);
  margin-bottom: 10px;
  animation: glowText 1.5s infinite alternate;
}

/* Popup Description */
.popup-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  transition: 0.3s;
}

.popup-close:hover {
  color: red;
}

/* Keyframe Animations */
@keyframes glowText {
  from {
    text-shadow: 0px 0px 15px rgba(138, 43, 226, 0.8);
  }
  to {
    text-shadow: 0px 0px 30px rgba(138, 43, 226, 1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.banner-animation {
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.about-banner { margin-block-end: 30px; }

.about .section-title { margin-inline: 0; }

.about .underline::before {
  left: 0;
  transform: translateX(0);
}

.about-text {
  font-size: var(--fs-8);
  margin-block-end: 20px;
  font-family: 'Montserrat', sans-serif;
}

.stats-list {
  display: grid;
  gap: 30px;
}

.stats-card {
  text-align: center;
  padding: 15px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
  background-color: white; /* Sets the card background to white */
}

.stats-title {
  color: rgb(11, 127, 15); /* Changes text color to #103317 */
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
}


.stats-text {
   font-size: var(--fs-8);
   color:rgb(4, 117, 8); 
 }




/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/
/* Service Card Styles */
.service-list {
  display: flex;
  
  gap: 30px;
}
@media (min-width: 368px) and (max-width: 1024px) {  
  .service-list {  
      display: grid;  
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));  
      gap: 30px;  
      max-width: 90%; /* Keeps it responsive within the container */
      margin: 0 auto;
  }  
}

.service-card {
  padding: 30px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
  height: 450px;
  position: relative;
}
.underline1 { position: relative; }

.underline1::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 6px;
  background:#f1378b;
  border-radius: 10px;
}

.service-card .card-icon {
  background-image: url("../images/service-banner-pattern.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color:#ffa1cb;
  aspect-ratio: 1 / 1;
  max-width: 165px;
  display: grid;
  place-content: center;
  margin-inline: auto;
  transition: var(--transition-1);
}

.service-card:hover .card-icon { background-color: #f1378b; }

/* .service-card .card-icon ion-icon {
  font-size: 5rem;
  color: 0 0 10px rgba(255, 215, 0, 0.7);
 /* Golden Border */
   /* Golden Glow */
  /* --ionicon-stroke-width: 20px;
  transition: var(--transition-1);
} */ */

.service-card:hover .card-icon ion-icon { color: #f1378b; }

.service-card .title {
  color: #f1378b;
  text-align: center;
  margin-block-end: 15px;
}

.service-card .text {
  text-align: center;
  margin-block-end: 20px;
}

.service-card .card-btn {
  margin-inline: auto;
  padding: 15px;
  border: 2px solid #f1378b;
  border-radius: 50%;
  color: var(--winter-sky);
  transition: var(--transition-1);
  cursor: pointer;
}

.service-card .card-btn:is(:hover, :focus) {

  background-color:  #f1378b


}

/* Full-Screen Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  transition: opacity var(--transition-2);
}

/* Modal Content */
.modal-content {
  background: var(--modal-bg);
  width: 50%;
  max-width: 600px;
  margin: 10% auto;
  padding: 30px;
  border-radius: var(--modal-border-radius);
  position: relative;
  text-align: left;
  box-shadow: var(--modal-shadow);
  animation: fadeIn var(--transition-2);
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: var(--fs-4);
  color: var(--modal-text-color);
  transition: var(--transition-1);
}

.modal-close:hover {
  color: var(--modal-hover-color);
  transform: scale(1.2);
}

/* Modal Title */
.modal-content h2 {
  font-size: var(--fs-3);
  color: var(--modal-title-color);
  margin-bottom: 10px;
  font-weight: var(--fw-700);
}

/* Modal Paragraph */
.modal-content p {
  font-size: var(--fs-8);
  color: var(--modal-text-color);
  line-height: 1.6;
}

/* List Styling */
.modal-content ul {
  padding: 0;
  margin-top: 15px;
}

.modal-content ul li {
  font-size: var(--fs-8);
  padding: 8px 0;
  color: var(--modal-text-color);
  transition: var(--transition-2);
}

.modal-content ul li:hover {
  transform: translateX(8px);
  color: var(--modal-hover-color);
}

/* Modal Image */
.modal-content img {
  width: 100%;
  max-width: 250px;
  border-radius: var(--radius-4);
  display: block;
  margin: 15px auto 0;
  transition: var(--transition-2);
}

.modal-content img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .modal-content {
    width: 80%;
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .modal-content {
    width: 90%;
  }
}


/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog { padding-block-end: 120px; }

.blog-list {
  display: grid;
  gap: 30px;
}

.blog-card {
  padding: 20px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.blog-card .banner {
  border-radius: var(--radius-12);
  overflow: hidden;
  margin-block-end: 15px;
}

.blog-card .banner img { transition: var(--transition-2); }

.blog-card .banner a:is(:hover, :focus) img { transform: scale(1.1); }

.blog-card .title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-6);
  line-height: 1.2;
  margin-block-end: 15px;
}

.blog-card .title > a { color: inherit; }

.blog-card .title > a:is(:hover, :focus) { color:var(--razzmatazz); }
/* styles.css */
/* styles.css */
.h3.title {
  color:rgb(239, 54, 137); /* Blue color */
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-top: 10px;
}
.h3.title1 {
  color:rgb(11, 127, 15); /* Blue color */
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  margin-top: 10px;
}
.h3.title2 {
  color:rgb(239, 54, 137);; /* Blue color */
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-top: 10px;
}



.blog-card .text { margin-block-end: 15px; }

.blog-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: var(--fs-8);
  color: var(--purple-navy);
  font-weight: var(--fw-500);
  padding-block-end: 10px;
}

.blog-card .meta ion-icon {
  color:rgb(226, 12, 151);
  font-size: 22px;
  --ionicon-stroke-width: 35px;
}

.publish-date,
.comment {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white; /* Applies white color to text and icons */
}


.comment {
  color: inherit;
  margin-inline-start: auto;
}

//trstimonials
/* /* Styling for card */
.card {
  width: 400px; /* Increased size */
  padding: 30px; /* More padding */
  background: linear-gradient(135deg, black, violet); /* Black to violet */
  border-radius: 12px; /* More rounded */
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); /* Stronger shadow */
  text-align: center;
  margin: 30px auto; /* More margin */
  color: white; /* Text color */
  font-size: 18px; /* Bigger text */
}

/* Popup hidden by default */
.popup-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, black, violet); /* Same theme */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 6px 15px rgba(255, 255, 255, 0.2); /* White shadow effect */
  width: 60%;
  max-width: 500px; /* Bigger size */
  display: none;  
  z-index: 1001;
  color: white;
  text-align: center;
}

/* Dark background overlay */
.overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Darker background */
  display: none;  
  z-index: 1000;
}

/* Popup content */
.popup-content {
  position: relative;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: white;
  background: red;
  padding: 5px 10px;
  border-radius: 50%;
  border: none;
}

/* Popup open button */
button {
  background: black;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

button:hover {
  background: violet;
  color: black;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer { font-size: var(--fs-8); }

.footer a { color: inherit; }

.footer-top {
  background-image: url("../images/footer-bg.png"), var(--gradient-1);
  background-repeat: no-repeat;
  background-size: auto, 200%;
  background-position: center, center;
  color: var(--white);
  display:flex;
  justify-content:space-end;
}

.footer-brand { margin-block-end: 30px; }

.footer-brand .logo {
  font-weight: var(--fw-700);
  margin-block-end: 15px;
}

.footer-brand .text {
  font-size: var(--fs-8);
  margin-block-end: 20px;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.footer-top .social-link {
  background-color: var(--white);
  color: var(--winter-sky);
  font-size: 18px;
  padding: 8px;
  border-radius: 50%;
}

.footer-top .social-link:is(:hover, :focus) {
  background-image: var(--gradient-2);
  color: var(--white);
}

.footer-list:not(:last-child) { margin-block-end: 25px; }

.footer-list-title {
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  margin-block-end: 15px;
}

.footer-link { padding-block: 5px; }

:is(.footer-link, .footer-item-link):not(address):is(:hover, :focus) { text-decoration: underline; }

.footer-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
}

.footer-item-icon {
  background-image: var(--gradient-2);
  padding: 13px;
  border-radius: 50%;
}

.footer-bottom {
  background-color: var(--space-cadet-2);
  padding: 20px;
  text-align: center;
  color: var(--white);
}

.copyright-link {
  display: inline-block;
  text-decoration: underline;
}

.copyright-link:is(:hover, :focus) { text-decoration: none; }

/* Full-Screen Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white; /* Full white background */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  padding: 40px;
  max-width: 600px;
  text-align: center;
  border-radius: 12px;
  position: relative;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
  margin-bottom: 10px;
  color: black;
}

.modal-content p {
  margin-bottom: 20px;
  color: black;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: red;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 6px;
}

.modal-close:hover {
  background: darkred;
}




/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 0;
  right: 15px;
  background-color:rgb(244, 28, 125) ;
  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); }



  /**
   * BLOG
   */

  .blog-card {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 20px;
    padding: 30px;
  }

  .blog-card .banner { margin-block-end: 0; }

  .blog-card .banner a { height: 100%; }



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:not(:last-child) { margin-block-end: 0; }

  .footer-top .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
  }

}





/**
 * 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;
  }

  .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%; }

  .content {
    display: flex;
  flex-direction: column;
  gap: 20px;
  }

/*form*/
/* Main Form Container */
/* Mobile-first styles (base) */


.form {
  background: white;
  /* padding: 20px; */
  border-radius: 12px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  width: 100%;
  max-width: 400px; /* Mobile max width */
  transition: transform 0.3s ease-in-out;
  /* margin: 0 auto; */
}

.form:hover {
  transform: translateY(-5px);
}

.form div {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  font-weight: bold;
  margin: 12px 0 5px;
  text-align: left;
  color: #333;
}

input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 2px solid #ccc;
  border-radius: 6px;
  transition: border 0.3s, box-shadow 0.3s;
}

input:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
  outline: none;
}

.submit-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  margin-top: 15px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  /* transition: background 0.3s, transform 0.2s; */
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0056b3, #004494);
  transform: scale(1.02);
}

/* Tablet View (min-width: 600px) */
@media (min-width: 300px) {
  .main-form {
    padding: 30px;
    margin-bottom: 40px;
  }
  
  .form {
    max-width: 500px;
    padding: 25px;
  }
  
  label {
    font-size: 15px;
  }
  
  input {
    padding: 12px;
    font-size: 15px;
  }
  
  .submit-btn {
    padding: 14px;
    font-size: 17px;
  }
}

/* Desktop View (min-width: 1024px) */
@media (min-width: 600px) {
 
    .main-form {
      margin-left: 200px; /* Adds a 20px margin on all sides */
      padding: 10px; /* Adjust padding if needed */
    }
    
    .form {
      margin: 0 auto; /* Ensures the form stays centered */
    }
  
  
  .form {
    max-width: 600px;
    padding: 30px;
  }
  
  label {
    font-size: 16px;
  }
  
  input {
    padding: 14px;
    font-size: 16px;
  }
  
  .submit-btn {
    padding: 16px;
    font-size: 18px;
  }
}


/* Responsive Design */

  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: 1fr 0.5fr 0.7fr 0.5fr 1fr; }

  .footer-brand { grid-column: auto; }

}