*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    background: white;
}
/* Loader Styles */
.center{
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease;
    z-index: 9999;
}
.ring{
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: ring 2s linear infinite;
}
@keyframes ring {
    0%{
        transform: rotate(0deg);
        box-shadow: 1px 3px 1px #0008ff;
    }
    50%{
        transform: rotate(180deg);
        box-shadow: 1px 3px 1px #ffb255;
    }
    100%{
        transform: rotate(360deg);
        box-shadow: 1px 3px 1px #00085e;
    }
}
.ring::before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 50%;
    width: 100%;
    box-shadow: 0 0 1px rgba(255, 255, 255, .3);
}
span img {
    width: 95px;
    animation: flipLogo 4s ease-in-out infinite alternate;
    transform-style: preserve-3d;
}
@keyframes flipLogo {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(0deg); }
}
/* scroll button*/
#progress{
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 45px;
    height: 45px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0,0,10px rgb(225, 222, 216);
    cursor: pointer;
    z-index: 9999;
}
#progress-value{
    display: block;
    height: calc(98% - 3px);
    width: calc(98% - 3px);
    background-color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    z-index: 9999;
}
/*styling top-footer */
#top-footer {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.1s ease; /* faster + smoother than AOS */
}
/* active state */
#top-footer.show {
  opacity: 1;
  transform: translateY(0);
}
.top-footer{
    background: rgb(0, 0, 0);
    height: 40px;
    z-index: 9999;
    position: relative;
}
.top-footer .box{
    position: relative;
    padding: 10px 0;
    display: flex;
    
}
.top-footer .box .icon{
    min-width: 60px;
    height: 23px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
.top-footer .box .text-1{
    display: flex;
    font-size:.95rem;
    height: 10px;
    color: #ffffff;
    text-overflow: ellipsis;
}
.top-footer .box .text-1 a{
    color: white;
    text-decoration: none;
}
.top-footer .box .text-1 a:hover{
    color: #387ef8;
}
.social-link-list{
    display: flex;
    margin-left: 710px;
    align-items: center;
    gap: 20px;
}
.social-link-list .social-link{
    color: #ffffff;
    font-size: 17px;
}
.social-link-list .social-link:hover{
    color: #387ef8;
}
/*styliing the header*/
header{
    width: 100%;
    min-height: 60px;
    background-color: #ffffff;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    position: sticky;
    top: 0;
}
header .logo{
    width: 90px;
}
header ul{
    position: relative;
}
header ul li{
    position: relative;
    list-style: none;
    float: left;
}
header ul li a{
    color: rgb(0, 0, 0);
    font-size: 18px;
    padding: 20px 25px;
    display: flex;
    text-decoration: none;
    justify-content: space-between;
}
header ul li a:hover{
    color: rgb(0, 55, 255);
}
/* Dropdown styles */
.dropdown .dropbtn {
    font-size: 18px;
    border: none;
    outline: none;
    padding: 14px 16px;
    background-color: #ffffff;
    margin-top: 6px;  
    font-family: inherit;
    color: #000000;
}
.dropdown .dropbtn:hover{
    color: rgb(0, 55, 255);
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff !important; /* force theme green */
    color: #000000;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 1000;
    text-align: left;
}
.dropdown-content li a {
    padding: 10px;
    color: #000000;
}
.dropdown:hover .dropdown-content {
    display: block;
}
/* styling whatsapp*/
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
/* Slides */
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: -1;
}
.slide.active {
    opacity: 1;
}
/* Overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6); /* dark overlay */
    z-index: 0;
}
/* Content */
.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.typing {
    color: #ffffff;
    border-right: 2px solid #ffffff;
    padding-right: 5px;
    animation: blink 0.7s infinite;
}
@keyframes blink {
    0% { border-color: transparent; }
    50% { border-color: #ffffff; }
    100% { border-color: transparent; }
}
/* Button */
.btn {
    padding: 14px 32px;
    background: #2e3cff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}
.btn:hover {
    background: transparent;
    border: 1px solid white;
    color: #fff;
}
/*certified*/
.certified{
    background: rgb(255, 255, 255);
    height: 20vh;
    position: relative;
}
.certified .box{
    position: relative;
    padding: 10px 0;
    display: flex;
    top: 35%;
    gap: 30px;
    justify-content: center;
}
.certified .box .icon{
    min-width: 30px;
    height: 23px;
    color: #ffb443;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}
.certified .box .text-1{
    display: flex;
    font-size:17px;
    height: 10px;
    color: #000000;
    text-overflow: ellipsis;
}
/*styling about-section*/
.about-section{
    padding: 40px;
    border: 50px;
}
.container{
    display: flex;
    gap: 50px;
}
.top h3{
    grid-column: 1 / -1;
    font-size: 2rem;
    font-weight: 650;
    text-align: left;       /* align with left buttons */
    padding-left: 0;        /* optional: same padding as sidebar */
    margin-bottom: 10px;
}
.top h4{
    grid-column: 1 / -1;
    font-size: 1.4rem;
    font-weight: 650;
    text-align: left;       /* align with left buttons */
    padding-left: 0;        /* optional: same padding as sidebar */
    margin-bottom: 10px;
}
.top .about-text{
    font-size: 17px;
    text-align: justify;
    margin-bottom: 10px;
}
.image-section{
    flex: 1;
    min-width: 510px;
    padding: 1px;
}
.image-section img{
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.393);;
}
/* counter up */
.counter-up {
  background: #f9fafa;
  padding: 60px 20px;
  text-align: center;
}
.counter {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 130px;
  padding: 0;
  margin: 0;
}
.counter-heading{
    text-align: center;
    font-size: 32px;
    color: #000000;
    margin-bottom: 40px;
    font-weight: 700;
}
.counter .fig {
  padding: 25px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}
.counter .fig i {
  color: #0026ff;
  margin-bottom: 10px;
}
.counter .fig .digits {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}
.counter .fig .texts {
  font-size: 17px;
  color: #000000;
  line-height: 1.5;
}
/* ===== FAQ + WHY US SECTION ===== */
.service-overview{
  padding: 30px;
  background: #f9fafa;
  margin: 2rem auto;
}
.service-overview h2{
    grid-column: 1 / -1;
    font-size: 1.9rem;
    font-weight: 650;
    margin-bottom: 15px;
    text-align: left;       /* align with left buttons */
}
.overview {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
/* ===== LEFT: WHY CHOOSE US ===== */
.overviewinfo .box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.overviewinfo .icon {
  min-width: 40px;
  height: 40px;
  background: #faffff;
  color: #ffb443;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.overviewinfo .text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000000;
}
.overviewinfo.text h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #000000;
}
.overviewinfo .text p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
}
/* RIGHT FORM */
.appointment {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}
.appointment-header {
    background: #ffffff;
    color: #000000;
    padding: 18px;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}
form { padding: 20px; }
form input, form select {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
form button {
    width: 100%;
    padding: 14px;
    background: #1b41ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
form button:hover { background: #2f55bd; }
/* ===============================
   RESPONSIVE STYLES
   =============================== */

/* -------- Tablets (≤ 1024px) -------- */
@media (max-width: 1024px) {

  /* Certified section */
  .certified {
    height: auto;
    padding: 30px 15px;
  }

  .certified .box {
    top: 0;
    flex-wrap: wrap;
    gap: 40px;
  }

  .certified .box .text-1 {
    font-size: 16px;
    height: auto;
  }

  /* FAQ container */
  .overview {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .appointment {
    left: 50%;
  }
}

/* -------- Mobile (≤ 768px) -------- */
@media (max-width: 768px) {

  /* Certified section */
  .certified {
    padding: 25px 15px;
  }

  .certified .box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 45px;
  }

  .certified .box .icon {
    font-size: 28px;
  }

  .certified .box .text-1 {
    font-size: 15px;
  }

  /* FAQ + Why Us */
  .service-overview {
    padding: 50px 15px;
  }

  .overview {
    grid-template-columns: 1fr;
  }

  /* Contact info boxes */
  .overviewinfo .box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .overviewinfo .icon {
    margin-bottom: 10px;
  }

  /* Appointment form */
  form {
    padding: 15px;
  }

  form input,
  form select {
    font-size: 14px;
    padding: 10px;
  }

  form button {
    font-size: 15px;
    padding: 12px;
  }
}

/* -------- Small Phones (≤ 480px) -------- */
@media (max-width: 480px) {

  .certified .box {
    gap: 40px;
  }

  .overviewinfo .text h3 {
    font-size: 16px;
  }

  .overviewinfo .text h4 {
    font-size: 15px;
  }

  .overviewinfo .text p {
    font-size: 14px;
  }
}
/* ===== FAQ + WHY US SECTION ===== */
.faq-section {
  padding: 80px 20px;
  background: #f9fafa;
}
.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
/* ===== LEFT: WHY CHOOSE US ===== */
.Contactinfo h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000000;
}
.Contactinfo .box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.Contactinfo .icon {
  min-width: 50px;
  height: 50px;
  background: #e6f5f3;
  color: #0026ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.Contactinfo .text h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #000000;
}
.Contactinfo .text p {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
}
/* ===== RIGHT: FAQ SIDEBAR ===== */
.faq-sidebar {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.faq-sidebar h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #000000;
}
/* ===== ACCORDION ===== */
.accordion {
  width: 100%;
  background: #38bff880;
  border: none;
  outline: none;
  padding: 16px 18px;
  margin-bottom: 10px;
  text-align: left;
  font-size: 17px;
  color: #222;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.accordion:hover {
  background: #e0f1ee;
}
/* ===== ACCORDION ICON (+ / −) ===== */
.accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion .toggle {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
  margin-left: 15px;
}
/* Optional: active state */
.accordion.active {
  background: #e0f1ee;
}
.panel {
  padding: 0 18px 15px;
  display: none;
}
.panel p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}
/* =========================
   RESPONSIVE ADJUSTMENTS
   ========================= */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-section {
    padding: 60px 20px;
  }

  .Contactinfo h2,
  .faq-sidebar h2 {
    font-size: 1.8rem;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 15px;
  }

  .Contactinfo .box {
    flex-direction: row;
    padding: 15px;
    gap: 15px;
  }

  .Contactinfo .icon {
    min-width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .Contactinfo .text h3 {
    font-size: 16px;
  }

  .Contactinfo .text p {
    font-size: 15px;
  }

  .accordion {
    font-size: 16px;
    padding: 14px 16px;
  }

  .accordion .toggle {
    font-size: 20px;
  }

  .panel p {
    font-size: 15px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .Contactinfo h2,
  .faq-sidebar h2 {
    font-size: 1.6rem;
  }

  .faq-sidebar {
    padding: 20px;
  }

  .Contactinfo .box {
    gap: 12px;
  }

  .accordion {
    font-size: 15px;
  }
}

/* styling footer */
footer{
    display: flex;
    flex-wrap: wrap;
    background: #000000;
    color: #fff;
    padding: 50px 20px 20px;
}
ul{
    list-style: none;
    
}
.list{
    padding: 7px;
}
.list li{
    width: auto;
    text-align: center;
    list-style-type: none;
    padding: 7px;
    position: relative;
}
.footer-col{
    display: inline-block;
    width: 22%;
    vertical-align: top;
    margin-right: 3%;
    margin-bottom: 20px;
}
.footer-col h2 {
    position: relative; /* Required for ::before to position properly */
    font-size: 23px;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffffd2;
}
.footer-col p{
    margin-left: 9px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  font-size: 17px;
  text-align: left;
  margin-left: 30px;
}
.footer-col ul li a {
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: #2a38ff;
}
.social-icons{
    text-align: center;
    padding: 7px;
}
.social-icons li{
    display: inline-block;
    text-align: center;
    padding: 5px;
   
 }
 .social-icons i{
    color: white;
    font-size: 18px;
 }
 a{
    text-decoration: none;
    color: #ffffff;
 }
 a:hover{
    color: #2a38ff;
 }
 .social-icons i:hover{
    color: #2a38ff;
 }
 .bottom-bar{
    text-align: center;
    padding: 10px 0;
    margin: auto;
    margin-top: 50px;
 }
.bottom-bar p{
    color: #ffffff;
    margin: auto;
    font-size: 18px;
    padding: 7px;
}

/*styling bottom-footer*/
.bottom-footer{
    text-align: center;
    background-color: #4e4d4d;
}
.craft{
    padding: 6px ;
}
.craft p{
    color: #fff;
}
.craft a{
    color: #c5ffff;
}
.craft a:hover{
    color: rgb(134, 173, 237);
}
/* Responsive */
@media (max-width: 1115px){
    .social-link-list{
        margin-left: 560px;
    }
    header .logo{
        width: 75px;  
    }
    .about-section{
        padding: 20px;
        border: 20px;
    }
    .container{
        flex-direction: column;
    }
    .image-section{
        flex: 1;
        min-width: 300px;
        padding: 10px;
    }
    }
@media (max-width: 1050px){
    .social-link-list{
        margin-left: 480px;
    }
    header .logo{
        width: 90px;
        
    }
    header ul li a{
        color: rgb(0, 0, 0);
        font-size: 17px;
        padding: 9px 15px;
        margin-top: 6px;
        display: flex;
    }
    .dropdown .dropbtn {
        font-size: 17px;
        padding: 9px 15px;
        background-color: #ffffff;
        margin-bottom: 6px !important; 
        font-family: inherit;
        color: #000000;
    }
    .dropdown-content li a {
        padding: 10px;
        color: #000000;
        font-size: 16px;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #ffffff !important; /* force theme green */
        color: #000000;
        min-width: 180px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
        z-index: 1000;
        text-align: left;
    }
    .service-card{
        flex-direction: column;
    }
    .service-card .pic{
        flex: 1;
        min-width: 350px;
        padding: 10px;
    }
    }
@media (max-width: 1000px){
    .social-link-list{
        margin-left: 420px;
    }
    header .logo{
        width: 70px;
        
    }
    header ul li a{
        color: rgb(0, 0, 0);
        font-size: 17px;
        padding: 9px 15px;
        margin-top: 6px;
        display: flex;
    }
    .dropdown .dropbtn {
        font-size: 17px;
        padding: 9px 15px;
        background-color: #ffffff;
        margin-bottom: 6px !important; 
        font-family: inherit;
        color: #000000;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #ffffff !important; /* force theme green */
        color: #000000;
        min-width: 180px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
        z-index: 1000;
        text-align: left;
    }
    .dropdown-content li a {
        padding: 10px;
        color: #000000;
        font-size: 16px;
    }
    .service-card{
        flex-direction: column;
    }
    .service-card .pic{
        flex: 1;
        min-width: 350px;
        padding: 10px;
    }
    }
@media (max-width: 950px){
    .social-link-list{
        margin-left: 370px;
    }
    header .logo{
        width: 70px;
        
    }
    header ul li a{
        color: rgb(0, 0, 0);
        font-size: 16px;
        padding: 9px 15px;
        margin-top: 6px;
        display: flex;
    }
    .dropdown .dropbtn {
        font-size: 16px;
        padding: 9px 15px;
        background-color: #ffffff;
        margin-bottom: 6px !important; 
        font-family: inherit;
        color: #000000;
    }
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #ffffff !important; /* force theme green */
        color: #000000;
        min-width: 180px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
        z-index: 1000;
        text-align: left;
    }
    .dropdown-content li a {
        padding: 10px;
        color: #000000;
        font-size: 16px;
    }
    .service-card{
        flex-direction: column;
    }
    .service-card .pic{
        flex: 1;
        min-width: 350px;
        padding: 10px;
    }
    }
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}
@media (max-width: 900px) {
    .top-footer {
        display: none;
    }

    header {
        padding: 10px 20px;
    }

    header .logo {
        width: 75px;
    }

    /* ===== MOBILE NAV CONTAINER ===== */
    header nav {
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        background: #ffffff; /* theme color */
        display: none;
        z-index: 1000;
        text-align: center;
        padding: 20px 0;
    }

    /* Show menu when header is active */
    header.active nav {
        display: block;
    }
    header.active {
        background-color: #ffffff !important;
    }
    /* ===== NAV LIST ===== */
    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    header nav ul li {
        list-style: none;
        width: 100%;
    }

    header nav ul li a,
    .dropdown .dropbtn {
        display: block;
        width: 100%;
        color: #000000;
        font-size: 18px;
        padding: 15px 0;
        text-decoration: none;
    }

    header nav ul li a:hover {
        color: black;
        background-color: transparent;
    }

    /* ===== DROPDOWNS (MOBILE SAFE) ===== */
    .dropdown {
        position: static;
        width: 100%;
        background-color: #ffffff !important; /* force green */
    }

    .dropdown-content {
        position: static;
        background-color: #ffffff !important; /* force green */
        color: #000000; /* text color */
        text-align: center;
    }
    

    /* FORCE disable hover on mobile (fixes "won't close") */
    .dropdown:hover .dropdown-content {
        display: none !important;
    }

    /* Open dropdown when active (JS controlled) */
    .dropdown.active .dropdown-content {
        display: block !important;
    }

    .dropdown-content li a {
        padding: 12px 16px;
        color: #000000;
        border-top: 1px;
        font-size: 16px;
    }

    .dropdown .dropbtn {
        font-size: 18px;
        font-weight: 400;
        background: none;
        border: none;
        cursor: pointer;
    }

    /* REMOVE mobile button grey tap/active color */
    .dropdown .dropbtn,
    .dropdown .dropbtn:focus,
    .dropdown .dropbtn:active {
        background-color: #ffffff !important;
        color: #000000;
        outline: none;
        box-shadow: none;
    }

    /* Remove Android / iOS tap highlight */
    .dropdown .dropbtn {
        -webkit-tap-highlight-color: transparent;
    }
    /* ===== HAMBURGER TOGGLE ===== */
    .menuToggle {
        position: relative;
        width: 40px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuToggle::before,
    .menuToggle::after {
        content: '';
        position: absolute;
        width: 70%;
        height: 2px;
        background: #000000;
        transition: 0.3s;
    }

    .menuToggle::before {
        transform: translateY(-10px);
        box-shadow: 0 10px #000000;
    }

    .menuToggle::after {
        transform: translateY(10px);
    }

    /* Transform to X */
    header.active .menuToggle::before {
        transform: rotate(45deg);
        box-shadow: none;
    }

    header.active .menuToggle::after {
        transform: rotate(-45deg);
    }
    html {
        scroll-behavior: smooth;
    }
    .about-section{
        padding: 20px;
        border: 20px;
    }
    .container{
        flex-direction: column;
    }
    .image-section{
        flex: 1;
        min-width: 300px;
        padding: 10px;
    }
    footer{
        flex-direction: column;
    }
    .footer-col {
        width: 100%;
    }
    .footer-col ul {
        margin-left: 1px;
    }
    .footer-col p {
        width: 100%;
    }
    .footer-col h2 {
        text-align: left;
    }
    .social-icons{
        text-align: left;
        padding: 7px;
    }
    .list li{
        text-align: left;
        border-bottom: 1px solid #ffffff79;
    }
    .list li::before{
        display: none;
    }
    .footer-col h2::before {
        display: none;
    }
}