*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Jost", sans-serif;
}
html{
    scroll-behavior: smooth;
}
/* ================= LOADER ================= */
#loader-wrapper{
    position: fixed;
    width:100%;
    height:100vh;
    background:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:9999;
    transition:0.5s;
}
.loader-logo img{
    width:120px;
    animation:flip 6s infinite;
}
@keyframes flip{
    0%{transform:rotateY(0)}
    50%{transform:rotateY(180deg)}
    100%{transform:rotateY(0)}
}
.loader-dots{
    display:flex;
    gap:10px;
}
.loader-dots span{
    width:10px;
    height:10px;
    border-radius:50%;
    animation: bounce 1s infinite alternate;
}
.loader-dots span:nth-child(1){
    background-color: blue; 
    animation-delay: -0.25s; 
}
.loader-dots span:nth-child(2){
    background-color: rgb(255, 85, 0); 
    animation-delay: -0.5s; 
}
.loader-dots span:nth-child(3){ 
    background-color: rgb(0, 145, 255);
    animation-delay: -0.75s; 
}
.loader-dots span:nth-child(4){ 
    background-color: rgb(255, 191, 0);
    animation-delay: -1s; 
}
@keyframes bounce{
    from{transform:translateY(-8px)}
    to{transform:translateY(6px)}
}
/* ================= PAGE CONTENT ================= */
#page-content{
    opacity:0;
    visibility:hidden;
    transition:0.6s;
}
body.loaded{
    overflow:auto;
}
/* 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: rgb(241, 145, 0);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
}
/*styling top-footer */
.top-footer{
    background: black;
    height: 40px;
}
.top-footer .box{
    position: relative;
    padding: 10px 0;
    display: flex;
    
}
.top-footer .box .icon{
    min-width: 40px;
    height: 20px;
    color: rgb(255, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
.top-footer .box .text{
    display: flex;
    font-size: 14px;
    color: #fff;
    height: 10px;
    text-overflow: ellipsis;
}
.social-link-list{
    display: flex;
    margin-left: 540px;
    align-items: center;
    gap: 20px;
}
.social-link-list .social-link{
    color: rgb(255, 255, 255);
    font-size: 15px;
}
.social-link-list .social-link:hover{
    color: orange;
}
/*styliing the header*/
header{
    width: 100%;
    min-height: 60px;
    background-color: #2111cf;
    background-position: bottom;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    position: sticky;
    top: 0;
}
header .logo{
    width: 85px;
}
header ul{
    position: relative;
}
header ul li{
    position: relative;
    list-style: none;
    float: left;
}
header ul li a{
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    display: flex;
    text-decoration: none;
    justify-content: space-between;
}
header ul li a:hover{
    background: orange;
    color: black;
}
header ul .consultation{
    background-color: orange;
    border-radius: 10px;
    left: 50px;
}
header ul .consultation a{
    font-size: 18px;
}
header ul .consultation a:hover{
    background-color: transparent;
    color: white;
}
header ul .consultation:hover{
    background-color: transparent;
    border: 1px solid white;
}
/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    align-items: center;
    text-decoration: none;
}
/* icon */
.whatsapp-float i {
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
    /* Pulse effect */
    animation: pulse 2s infinite;
}
/* Hover effect */
.whatsapp-float i:hover {
    transform: scale(1.1);
}
/* Pulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* TEXT */
.whatsapp-text {
    left: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    background: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
}
/* Small speech bubble arrow */
.whatsapp-text::after {
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #25D366 transparent transparent;
}
/* SHOW */
.whatsapp-float.show .whatsapp-text {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
/* Caption text */
.hero-section{
    height: 100vh;
    background-image: url(Images/Untitled.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    animation: bgchange 20s linear infinite;
}

@keyframes bgchange{
    0% {
        background-image: url(../Images/Untitled.png);
    }
    25% {
        background-image: url(../Images/pexels-divinetechygirl-1181467.jpg);
    }
    50% {
        background-image: url(../Images/glenn-carstens-peters-npxXWgQ33ZQ-unsplash.jpg);
    }
    75%{
        background-image: url(../Images/pexels-divinetechygirl-1181467.jpg);
    }
    100% {
        background-image: url(../Images/imag.png);
    }
}
.content{
    text-align: center;
    position: absolute;
    top: 76%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 100%;
}
.content span{
    display: block;
}
.caption1{
    color: orange;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 5px 5px 5px rgba(20, 20, 20, 0.8);
    background: transparent;
    position: relative;
    animation: text 5s 1;
    animation-iteration-count: infinite;
}
.caption2{
    color: rgb(255, 255, 255);
    text-shadow: 5px 5px 5px rgba(20, 20, 20, 0.8);
    font-size: 19px;
    letter-spacing: normal;
    margin-bottom: 30px;
}
.button-Contact{
    padding: 10px 26px;
    border: 2px solid transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background: orange;
}
.button-Contact:hover{
    color: white;
    border-color: white;
    background: transparent;
}
/* styling hello section */
.hello{
    padding: 70px;
    border: 50px;
    background: #2111cf;
    
}
@keyframes appear{
    from{
        opacity: o;
        transform: translateX(-100px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}
.container{
    display: flex;
    gap: 140px;
    
}
.open-text{
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    text-align: left;
}
.hello-image{
    max-width: 95%;
    height: auto;
}
.info{
    text-align: left;
}
.info .text{
    color: #fff;
    font-size: 16px;
    text-align: justify;
    margin-top: 30px;
}
/* counter up */
.counter-up{
    background-position: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}
.counter{
    position: relative;
    display: flex;
    margin: 50px;
    gap: 150px;
}
.digits{
    font-size: 28px;
    color: rgb(0, 0, 0);
    font-weight: 500;
}
.texts{
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-weight: 400;
}
.fig{
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 200px;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}
.prof{
    width: 50px;
}
.fig:hover{
    width: 220px;
}
/* what resides */
.service-title{
    text-align: center;
    margin-bottom: 40px;
}
.service-title h2{
    font-size: 30px;
    color: #000;
}
.service-title .pl-text{
    text-align: center;
    padding-bottom: 30px;
    font-size: 18px;
}
.resides{
    padding: 15px 3%;
    padding-bottom: 80px;
    padding-top: 80px;
    background-color: #ffffff;
}
.box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
a{
    text-decoration: none;
}
.box-content{
    box-shadow: 0px 1px 2px rgb(10, 10, 10);
    background: rgb(255, 255, 255);
    text-align: center;
    border-radius: 6px;
    padding: 10px 5px;
    cursor: pointer;
    transition: 0.3s ease;
}
.box-content:hover{
    transform: translateY(-10px);
}
.box-content h3{
    color: rgb(0, 0, 0);
    font-size: 19px;
    padding: 10px 0;
}
.box-content p{
    font-size: 16px;
    line-height: 20px;
    color: black;
}
.box-content .pic{
    width: 65px;
    padding: 10px;
    border-radius: 10px;
}
.read{
    margin-top: 5px;
    text-decoration: underline;
}
.animated{
    transform: translateY(30px);
    opacity: 0;
    animation: slide-in 1s ease forwards;
    animation-delay: 1s;
}
@keyframes slide-in{
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
/*problems*/
.impact-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
.impact-image {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}
.impact-image img {
    width: 100%;
    border-radius: 0px;
}
.impact-content {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}
.impact-content h2 {
    font-size: 28px;
    margin-bottom: 2px;
}
.impact-content h3 {
    font-size: 17px;
    text-align: center;
    margin-bottom: 5px;
}
.impact-content p {
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
}
.impact-content ul{
    list-style: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 16px;
}
.impact-content ul li{
    display: flex;
    padding: 5px 0;
    align-items: center;
}
.impact-content ul i{
    color: orange;
    margin-right: 8px;
}
/* WHY US */
.why-us-section{
  padding:3rem 2rem;
  text-align:center;
  color:var(--white);
  background-color: #2111cf;
}
.why-us-section h2{
  font-size: 30px;
  margin-bottom:1.5rem;
  font-weight:700;
  color: rgb(255, 255, 255);
}
.why-us-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem;
  justify-items:center}
.why-box{
  background:white;
  border-radius:12px;
  padding:1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  text-align:center;
  transition:transform .25s,box-shadow .25s
}
.why-box i{font-size:1.6rem;color:#000000;margin-bottom:.75rem}
.why-box h3{font-size:1.05rem;color:#000;margin-bottom:.5rem}
.why-box p{font-size:.95rem;color:#333}
.why-box:hover{transform:translateY(-8px);box-shadow:0 10px 22px rgba(0,0,0,0.15)}
.why-box:hover i{color:var(--accent-dark)}
/* Projects */
.graphic{
    padding: 60px 20px;
    background-color: #ffffff;
}
h2 { 
    font-size: 2.5rem; 
    color: #000000; 
    margin-bottom: 50px; 
    text-align: center; 
}
.projects-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* increased min width */
    gap: 30px;
}
.project-card, .design-card {
    background: #ffffff;
    border-radius: 1px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.project-card img, .design-card img {
    width: 100%;
    max-width: 600px; /* increase max size */
    height: auto;
    object-fit: cover;
}
.project-card h3, .design-card h3 {
    margin-top: 10px;
    color: #000000;
    text-align: center;
}
.project-card p {
    color: #000000;
    text-align: center;
    margin: 10px 0;
}
.project-card .btn {
    display: block;
    margin: 15px auto 0 auto; /* centers button */
    text-align: center;
    padding:6px 20px;
    border: 2px solid #000000;
    border-radius: 5px;
    color: #000000;
    transition: 0.3s;
    margin-bottom: 10px;
}
.project-card .btn:hover {
    background-color: orange;
    color: #000;
}
/*styling packages*/
.pricing-header {
    text-align: center;
    padding: 60px 20px;
}
.pricing-header h1 {
    font-size: 38px;
    font-weight: bold;
    margin: 0;
}
.pricing-header p {
    font-size: 18px;
    max-width: 750px;
    margin: 15px auto;
    color: #666;
}
/* Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
    padding: 40px;
}
/* Cards */
.price-card {
    background: white;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    border: 2px solid #ffffff;
    transition: 0.3s;
}
.price-card:hover {
    transform: translateY(-5px);
}
.featured {
    border: 3px solid rgb(30, 24, 108);
    box-shadow: 0 8px 30px rgba(140, 82, 255, 0.25);
}
.price-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
.price-card h3 {
    font-size: 28px;
    color: rgb(30, 24, 108);
    margin-top: 5px;
    margin-bottom: 20px;
}
.price-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}
/* Features List */
.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}
.price-card ul li {
    margin: 10px 0;
    font-size: 15px;
    padding-left: 25px;
    position: relative;
    color: #444;
}
.price-card ul li::before {
    content: "✔";
    color: rgb(30, 24, 108);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}
/* Button */
.cta-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, #1500ff, #000000);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.cta-btn:hover {
    opacity: 0.85;
}
.more-pack{
    text-align: center;
    margin-bottom: 50px;
}
.more-work{
    text-align: center;
    margin-top: 30px;
}
.more-work a{
    background: linear-gradient(to right, #1500ff, #000000);
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    font-size: 16px;
}
.more-pack a{
    width: 50%;
    padding: 14px;
    background: linear-gradient(to right, #1500ff, #000000);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    margin-top: 30px;
}
/* Slideshow container */
.slideshow-container {
    position: relative;
    background: rgb(226, 239, 255);
}
.mySlides .image{
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
}
.mySlides p{
    margin-top: 20px;
    padding: 0 100px;
    font-weight: 400;
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}
.mySlides .detail{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.detail .name{
    font-weight: 400;
}
.detail .job{
    font-style: italic;
    color: rgba(1, 3, 30, 0.584);
}
.mySlides {
    display: none;
    text-align: center;
}
.slideshow-container .core-heading{
    text-align: center;
    padding-bottom: 30px;
    padding-top: 30px;
    color: black;
    font-size: 30px;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: #000000;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.next {
    position: absolute;
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: white;
}
.dot-container {
    text-align: center;
    padding: 5px;
    background: rgb(226, 239, 255);
}
.dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: rgb(0, 0, 0);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
.active, .dot:hover {
    background-color: #717171;
}
/*styling news*/
.faq-section {
  padding: 30px 20px;
  background: #ffffff;
}
.faq-section h2{
    font-size: 38px;
}
.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}
/* Sidebar */
.faq-sidebar{
  flex: 1;
  min-width: 200px;
  padding: 5px;
}
.faq-sidebar h2 {
  font-size: 2.0rem;
  margin-bottom: 20px;
  color: #000000;
}
.accordion {
    background-color: orange;
    color: rgb(0, 0, 0);
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 18px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.accordion::before {
    content: "\002B"; /* plus sign */
    font-weight: bold;
    margin-right: 10px;
    transition: transform 0.3s;
}
.accordion.active::before {
    content: "\2212"; /* minus sign */
}
.accordion.active {
    background-color: rgb(253, 207, 121);
}
.panel {
    max-height: 0;
    overflow: hidden;
    background-color: #f7f7f7;
    transition: max-height 0.4s ease;
    padding: 0 15px;
}
.panel p {
    padding: 10px 0;
    margin: 0;
    color: black;
}
/* News Content */
.faq-content {
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.faq-content img {
  width: 90%;
  height: auto;
}
/* ✅ Responsive Layout */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-sidebar, .faq-content {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .faq-sidebar a {
    font-size: 0.9rem;
    padding: 10px 12px;
  }
}
/* news letter */
.newsletter {
  background: #f5f5f5;
  padding: 60px 20px;
}

.newsletter-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 10px;
}

.newsletter p {
  color: #000000;
  margin-bottom: 25px;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.newsletter-form button {
  padding: 14px;
  font-size: 16px;
  background-color: #2111cf;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #2111cfa9;
}

.newsletter-note {
  display: block;
  margin-top: 15px;
  color: #000000;
  font-size: 14px;
}
/* styling footer */
footer{
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
    background: black;
    padding: 70px 10px;
}
ul{
    list-style: none;
    text-align: center;
    
}
.list{
    padding: 7px;
}
.list li{
    width: auto;
    text-align: center;
    list-style-type: none;
    padding: 7px;
    position: relative;
}
.list li::before{
    content: "";
    position: absolute;
    transform: translate(-50px -50px);
    left: 50%;
    top: 100%;
    width: 0;
    height: 2px;
    background: #0004f8;
    transition-duration: .5s;
}
.list li:hover::before{
    width: 70px;
}
.footer-col{
    width: 25%;
    padding: 7px;
}
.footer-col h2 {
    position: relative; /* Required for ::before to position properly */
    font-size: 23px;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffffb0;
}
.footer-col h2::before {
    content: "";
    position: absolute;
    left: 50%; /* Center the line */
    transform: translateX(-50%);
    bottom: -6px;
    background-color: #c7bbbb;
    height: 2px;
    width: 40px;
}
 .footer-col p{
    color: #fff;
    width: 260px;
    margin: auto;
    padding: 7px;
 }
 .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: 20px;
 }
 a{
    text-decoration: none;
    color: #ffffff;
 }
 a:hover{
    color: #f87800;
 }
 .social-icons i:hover{
    color: #f87800;
 }
 .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: #f87400;
}
.craft a:hover{
    color: red;
}
/*responsiveness*/
@media (max-width: 1115px){
    .social-link-list{
        margin-left: 300px;
    }
    .content{
        width: 85%;
    }
    header .logo{
        width: 80px;
        left: 20%;
    }
    header ul li a{
        font-size: 15px;
        padding: 10px 13px;
    }
    header ul .consultation a{
        font-size: 15px;
    }
    .service-section{
        height: 130vh;
    }
    .hello-image{
        max-width: 100%;
        height: auto;
    }
}
@media (max-width: 1000px){
    .social-link-list{
        margin-left: 250px;
    }
}
@media (max-width: 980px){
    .social-link-list{
        margin-left: 250px;
    }
    .top-footer {
        display: none;
    }
}
@media (max-width: 900px){
    .top-footer {
        display: none;
    }

    header{
        padding: 10px 20px;
    }

    header.active {
        background-color: #2111cf !important;
    }

    header .logo{
        width: 75px;
    }

    /* CENTER THE MENU CONTAINER */
    header nav{
        position: absolute;
        width: 100%;              /* give it nicer width */
        top: 93px;
        left: 50%;               /* move to center */
        transform: translateX(-50%); /* perfect centering */
        background: #2111cf;
        display: none;
        z-index: 1000;    /* smoother look */
        padding: 20px 0;         /* vertical spacing */
    }

    header.active nav{
        display: block;
    }

    /* STACK + CENTER MENU ITEMS */
    header nav ul{
        display: flex;
        flex-direction: column;
        align-items: center;     /* center items */
        gap: 15px;               /* spacing between items */
        padding: 0;
        margin: 0;
    }

    header nav ul li{
        width: auto;             /* stop full width stretch */
        text-align: center;
    }

    header nav ul li a{
        display: block;
        padding: 10px 20px;      /* better click area */
    }

    /* FIX CONSULT BUTTON */
    header ul .consultation{
        border-radius: 20px;
        margin-top: 10px;
        left: 0%;
        background: transparent;
    }
    header ul .consultation:hover{
        border: none;
        background: orange;
        border-radius: 0;
        color: black;
    }
    /* MENU TOGGLE */
    .menuToggle{
        position: relative;
        width: 40px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menuToggle::before{
        content: '';
        position: absolute;
        width: 70%;
        height: 1.5px;
        background: white;
        transform: translateY(-12px);
        box-shadow: 0 12px white;
    }

    .menuToggle::after{
        content: '';
        position: absolute;
        width: 70%;
        height: 1.5px;
        background: white;
        transform: translateY(12px);
    }

    header.active .menuToggle::before{
        transform: rotate(45deg);
        box-shadow: 0 0 white;
    }

    header.active .menuToggle::after{
        transform: rotate(315deg);
    }
    .content{
        text-align: center;
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -70%);
        width: 100%;
    }
    .content span{
        display: block;
    }
    .caption1{
        color: rgb(255, 115, 0);
        font-size: 38px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 20px;
        background: transparent;
        position: relative;
        animation: text 3s 1;
        animation-iteration-count: infinite;
    }
    .caption2{
        color: bisque;
        font-size: 14px;
        text-align: center;
    }
    .container{
        display: inline;
        gap: 140px;
    }
    .hello-image{
        max-width: 100%;
        height: auto;
    }
    .open-text{
        font-size: 28px;
        margin-bottom: 30px;
    }
    .owner{
        margin-left: 80px;
        margin-bottom: 40px;
    }
    .hello{
        padding: 20px;
    }
    .text.sec-text{
        font-size: 23px;
        text-align: left;
    }
    .counter{
        display: inline;
        margin: 10px;
        gap: 1px;
    }
    .prof{
        width: 50px;
        margin-top: 50px;
    }
    .impact-section {
        flex-direction: column;
        padding: 10px;
    }
    .mySlides p{
        padding: 10px;
    }
    .contact-section {
        padding: 40px 4%;
    }
    .contract{
        display: inline;
    }
    .contract .contact-info{
        margin-bottom: 40px;
        font-family: 17px;
    }
    .contract .contact-info{
        width: 100%;
    }
    .Contactform{
        width: 100%;   
    }
    .contact-section .open-text{
        font-size: 19px;
    }
    footer{
        flex-direction: column;
    }
    .footer-col {
        width: 100%;
    }
    .footer-col p {
        width: 100%;
    }
    .footer-col h2 {
        text-align: left;
    }
    .footer-col h2::before {
        left: 5%; /* Center the line */
    }
    .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;
    }
}