html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'calibri-light';
}

body {
    line-height: 1.5;
    /* margin: 0; */
    padding-top: 105px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    font-size: 1.1rem;
}

.sticky {
    width: 100%;
    height: 105px;
    background-color: #0a0a0ac3;
    top: 0;
    z-index: 1000 !important;
    position: fixed;
    transition: all 0.4s ease;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

/* Navbar */
#FirstHeader {
    display: flex;
    justify-content: right;
    align-items: center;
    position: absolute;
    z-index: 1000;
    width: 100%;
}


#FirstHeader .nav_socialLinks {
    display: flex;
    flex-direction: row;
    margin: 20px 10vw 0PX 10px;
    width: auto;
}

#FirstHeader .nav_socialLinks a i {
    margin: 0 10px;
    color: rgb(255, 255, 255);
    font-size: clamp(15px, 3vw, 15px);
}


#FirstHeader .nav_socialLinks  #insta i:hover {
    transform: scale(1.2);
    color: #f22c95;
}
#FirstHeader .nav_socialLinks #fb i:hover {
    transform: scale(1.2);
    color: #1877F2;
}
#FirstHeader .nav_socialLinks #x i:hover {
    transform: scale(1.2);
    color: #000000;
}
#FirstHeader .nav_socialLinks #lkdn i:hover {
    transform: scale(1.2);
    color: #0077B5;
}
#FirstHeader .nav_socialLinks #yt i:hover {
    transform: scale(1.2);
    color: #FF0000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vh 10vw 0vh 10vw;
    width: 100%;
    position: absolute;
    top: 0px;
    z-index: 999;
    height: 100%;
}


#logo img {
    /* position: relative; */
    margin-top: 5px;
    height: 130px;
    transition: all 0.4s ease;
    /* left: 5px; */
}


.nav-list {
    display: flex;
    list-style: none;
    /* background-color: #0a0a0ac3; */
    padding: 25px 1px;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.nav-list li {
    margin-left: 20px;
    margin-top: 15px;
}

.nav-list a {
    color: rgb(255, 255, 255);
    font-family: sans-serif;
    font-size: clamp(13px, 1.2vw, 16px);
    padding: 12px 15px;
    transition: background 0.3s;
    position: relative;
    align-items: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    transition: all 0.4s ease;
}

/* #home {
    color: #f2ff00;
} */

/* --- SHRINKED Navbar when scrolling --- */
.shrink {
    height: 70px !important;    /* smaller navbar */
    background-color: #000000d8;
    backdrop-filter: blur(5px); /* optional */
}

/* Shrink logo */
.shrink #logo img {
    height: 70px !important;   /* reduced */
}

/* Shrink nav links */
.shrink .nav-list a {
    font-size: 0.8rem !important;
    padding: 6px 14px !important;
}

.nav-list li a:hover {
    color: #f2ff00;
    transition: color 0.3s ease-out;

}

.sticky nav ul li a.active {
    color: yellow;
    /*font-weight: bold;  optional, makes it stand out */
}

.menu-toggle {
    display: none;
    cursor: pointer;
    margin-top: 3px;
    background-color: #0d0d0dc1;
    padding: 7px;
    transition: all 0.4s ease;
}

.shrink .menu-toggle {
    font-size: 0.5rem !important;
    padding: 4px 10px !important;
}

.nav-list.show {
    display: flex;
}

#getQuote {
    position: fixed;
    right: -20px;
    top: 280px;
    z-index: 99999;
}

#getQuote a {
    padding: 12px 35px 12px 25px;
    background-color: #ffffff;
    color: #413c99;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-family: Archivo;
    border-radius: 30px;
    box-shadow: 0px 5px 5px #2323238e;
}

#getQuote a:hover {
    background-color: rgb(251, 251, 9);
    color: rgb(0, 0, 0);
    transform: scale(1.02);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide:not(.active) {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}


.hero_ss {
    position: relative;
    width: 100%;
    height: 250px; /* Adjust as needed */
    overflow: hidden;
    margin-top: 28px;
    margin-bottom: 20px;
    z-index: 999;
    box-shadow: 10px 10px 10px  #29292977;
    box-sizing: border-box;
}

.ss_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slideShow 15s infinite;
}

.ss_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Show each slide one by one */
.ss_slide:nth-child(1) {
    animation-delay: 0s;
}
.ss_slide:nth-child(2) {
    animation-delay: 5s;
}
.ss_slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes slideShow {
    0% { opacity: 0; }
    5% { opacity: 1; }
    30% { opacity: 1; }
    35% { opacity: 0; }
    100% { opacity: 0; }
}




/* Overlay over image */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.371);
    z-index: 2;
}

/* Text Layer */
.hero-text {
    z-index: 3;
    color: rgb(211, 203, 203);
    padding: 0 80px;
    top: 120px;
    width: 100%;
    position: relative;
}


.hero-text h1 {
    font-size: clamp(1rem, 5vw, 3.2rem);
    color: rgb(230, 223, 219);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-style: italic;
}



.hero-text p {
    font-size: clamp(0.7rem, 2vw, 1.3rem);
    padding-top: 20px;
    /* padding-right: 100px; */
    line-height: 1.5;
    width: 60%;
    font-family: monospace;
    color: rgb(230, 223, 219);
}

.hero-buttons {
    display: flex;
    gap: 10px 150px;
    margin-top: 75px;
    flex-wrap: wrap;
}

.hero-buttons a {
    padding: 12px 30px;
    border: 1px solid #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    border-radius: 30px;
}

#hero_btn1 {
    color: #ffffff;
    font-size: clamp(0.7rem, 2vw, 1rem);

}

#hero_btn1:hover {
    background-color: #ffffff;
    color: #000000;
}

#hero_btn2 {
    background-color: #ffffff;
    color: #000000;
    font-size: clamp(0.7rem, 2vw, 1rem);

}

#hero_btn2:hover {
    background-color: transparent;
    color: #ffffff;
}

/* Responsive tweak */

@media (max-width: 1240px) and (min-width: 150px) {
    .hero-text p {
        width: 70%;
   }
}
@media (max-width: 1100px) and (min-width: 680px) {
    .hero-buttons {
        flex-direction: row;
        align-items: flex-start;
    }

    .hero-buttons a {
        text-align: center;
    }
}




/* Mobile Navigation */


.nav-list.desktop-visible {
    display: flex !important;
}

@media (max-width: 985px) {
    .menu-toggle {
        display: inline-block;
        cursor: pointer;

    }

    #getQuote a {
    padding: 12px 25px 12px 18px;
    font-size: clamp(1rem, 2vw, 1rem);
   }

    #logo img {
    /* position: relative; */
    height: 130px;
    top: 0px;
   }


   #FirstHeader .nav_socialLinks {
    margin-top: 40px;
   }
    

    .menu-toggle .bar {
        width: 30px;
        height: 3px;
        background-color: #ffffff;
        margin: 5px;
        transition: 0.4s;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 0;
        width: 100%;
        background-color: #000000;
        padding: 0;
        margin: 0;
        z-index: 999;
        border-radius: 0;
    }

    .shrink .nav-list {
        top: 70px !important;
    }

    .nav-list.show {
        display: flex !important;
    }

    .nav-list li {
        width: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
        border-radius: 0;
        border-bottom: 1px solid #57aa6e;
    }

    .nav-list a {
        color: rgb(255, 255, 255);
        display: block;
        width: 100%;
        padding: 15px;
        text-align: center;
        text-decoration: none;
        border-radius: 0 !important;
    }

    #home {
        background-color: #57aa6e;
        color: rgb(5, 5, 5);
    }

    .nav-list li a:hover {
        color: #57aa6e;
        transform: none;
        border-radius: 0 !important;
        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;

    }

    /* Fix the menu icon */
    .menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* home page responsive*/

 @media (max-width: 570px) and (min-width: 440px) {
 .hero-slider {
        height: 75vh;
    }
    .hero-text {
        top: 90px;
    }
} 


@media (max-width: 440px) and (min-width: 150px) {
    .menu-toggle {
    padding: 3px;
    }
    .menu-toggle .bar {
        width: 25px;
        height: 2px;
    }
    #logo img {
    height: 100px;
    left: 10px;
    }

    #getQuote a {
    padding: 8px 20px 8px 15px;
    font-size: clamp(0.7rem, 2vw, 0.2rem);
    } 

    .hero-slider {
        height: 60vh;
    }

    .hero-text {
        top: 90px;
        width: 100%;
        padding: 0 60px;
    }
    .hero-text p{
        width: 70%;
        padding-top: 10px;
    }
    .hero-buttons {
        width: 100%;
        gap: 10px 30px;
        flex-direction: row;
        margin-top: 40px;
    }

    .hero-buttons a {
    padding: 10px 7px;
    min-width: 50px;
   }

    #hero_btn1 {
    font-size: 7px;

   }

    #hero_btn2 {
    font-size: 7px;

   }
}

@media (max-width: 292px) and (min-width: 150px) {
    .hero-slider{
        height: 80vh;
    }
}


/* About Us Section */
#about {
    padding: 60px 20px;
    background-color: #f8f8f8;
    scroll-margin-top: 50px;
}

.about-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    /* margin-right: 10px; */
}

.about-image-container {
    flex: 1;
    /* min-width: 400px; */
    max-width: 600px;
}


.about-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    transition: transform 0.3s, box-shadow 0.3s;
    transition: filter 0.5s ease-in-out;
}
.stat:hover {
    box-shadow: 0px 10px 10px #29292977;
    filter: grayscale(0%);
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(to right, #2c3e50, #32a3ee);
    border-radius: 1rem;
    height: 150px;
    width: 100%;           /* full width of parent */
    max-width: 300px;
    height: auto;              /* allow flexible height */
    min-height: 120px;         /* optional: keeps uniform look */
    word-wrap: break-word;     /* break long words */
    overflow-wrap: break-word; /* modern support */
}

.stat h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.stat p {
    color: white;
}


.about-content {
    flex: 1;
    max-width: 600px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

.about-content ul {
    list-style: none;
}

.about-content h2  {
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1.8;
    font-family: 'Trebuchet MS', sans-serif;
    color: #333;
    margin-bottom: 20px;
    animation: slideInFromRight 2s ease-out ;
    text-align: center;
}

.about {
    animation: slideInFromRight 2.5s ease-out ;
}


.about-content p {
    margin-bottom: 2rem;
    text-align: justify;
    font-family: 'Tahoma', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    color: #555;
    line-height: 1.6;
}


@media (max-width: 1000px) and (min-width: 770px){
.about-content {
    margin-top: 10px;
}
}

@media (max-width: 770px) {

    #about {
        padding-bottom: 25px;
    }

    .about-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-stats{
        width: 100%;
    }

    .about-content {
        margin-top: 20px;
        max-width: 100%;
    }
     .about-content h2 {
        font-size: 35px;
        text-align: center;
        line-height: 1.4;
    }
     .about-content p {
       justify-content: center;
        align-items: center;
    }
}




/* Services Section */

#services {
    padding: 30px;
    font-size: 1.8rem;
    background-color: #e9ecef;
    text-align: center;
    scroll-margin-top: 50px;
}

.services {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.services h2 {
    /* margin-left: 5vw; */
    font-size: 60px;
    font-family: 'Trebuchet MS', sans-serif;
    color: #333;
}



#services_viewAll :hover {
    color: rgb(43, 43, 43);
    background-color: white;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.service {
    width: 350px;
    margin: 22px;
    background: #ffffff;
    padding: 25px;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s, box-shadow 0.3s;
    transition: filter 0.5s ease-in-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    flex: 0 1 350px;        /* shrink when needed, base width ~320px */
    min-height: 380px;      /* ensures equal height baseline */
    display: flex;
    flex-direction: column; /* stack img, title, text */
    justify-content: flex-start;
    box-sizing: border-box; /* padding doesn’t push content out */
    overflow: hidden;       /* prevent spillover */
}

.service:hover {
     transform: translateY(-8px);
    border-color: #cbd5e1;
    box-shadow: 0px 15px 15px #29292977;
    filter: grayscale(0%);
}

.service img {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.service h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 5px 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom: 1rem;
    color: #0A2342;
}

.service p {
    color: #697ba6;
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: Arial, sans-serif;
}


@media (max-width: 900px) {
    #services h2{
        font-size: 40px;
    }
}
@media (max-width: 1500px) {
    .slide-left { animation: slideInFromBottom 0.8s ease-out forwards; }
    .slide-right { animation: slideInFromBottom 0.8s ease-out forwards; }
}


@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-150%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#services h2 {
    animation: slideInFromLeft 2s ease-out ;
}



@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure elements start hidden */
.service {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}


/* Animation classes to be added dynamically */
.slide-left { animation: slideInFromLeft 1s ease-out forwards; }
.slide-right { animation: slideInFromRight 1s ease-out forwards; }
.slide-bottom { animation: slideInFromBottom 1s ease-out forwards; }






/* Products Section */
.products {
    background: var(--bg-color);
    padding: 30px;
    text-align: center;
    /* margin: 50px; */
    scroll-margin-top: 60px;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


.section-header {
    margin-bottom: 40px;
}

.section-header p {
    animation: slideInFromRight 2s ease-out ;
    /* margin-left: 6vw; */
    font-family: Arial, Helvetica, sans-serif;
    color: #6b7280;
}

.section-header h2 {
    /* margin-left: 5vw; */
    font-size: 60px;
    /* margin-left: 50px; */
    font-family: 'Trebuchet MS', sans-serif;
    color: #333;
    animation: slideInFromLeft 2s ease-out ;
}

.product-card {
    width: 350px;
    /* height: 450px; */
    margin: 22px;
    background: #ffffff;
    padding: 20px;
    border-radius: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    transition: filter 0.5s ease-in-out;
    flex: 0 1 340px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    min-height: 450px;      /* ensures equal height baseline */
    display: flex;
    flex-direction: column; /* stack img, title, text */
    justify-content: flex-start;
    box-sizing: border-box; /* padding doesn’t push content out */
    overflow: hidden;       /* prevent spillover */
}

.product-card img {
    width: 100%;      /* fills card */
    height: 200px;    /* fixed height */
    object-fit: cover; /* crop properly */
    margin-bottom: 1rem;
    border-radius: 8px;
}


.product-card:hover {
    transform: translateY(-8px);
    border-color: #cbd5e1;
    box-shadow: 0px 15px 15px #29292977;
    filter: grayscale(0%);

}
.product-card h3 {
    color: #0A2342;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.product-card p {
    color: #697ba6;
    margin-bottom: 2rem;
    font-family: Arial, sans-serif;
}


@media (max-width: 768px) {
    .section-header h2 {
        font-size: 45px;
        margin-top: 30px;
    }
    .products-container {
        justify-content: center;
        justify-items: center;
        /* margin-right: 44px; */
    }
    .products {
        margin-bottom: 10px;
        padding: 1px;
    }
}


/* Gallery Section */
#gallery-section {
  scroll-margin-top: 40px;
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, #2c3e50, #669cc0);
  padding: 40px 20px;
  text-align: center;
  padding-bottom: 100px;
  overflow: hidden;
}

.corner-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 1;
}
.corner-circle1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 1;
}
.corner-circle2 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 1;
}

.corner-circle3 {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 1;
}

.corner-circle4 {
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 1;
}

.gallery-heading {
  font-size: 3rem;
  font-weight: bold;
  font-family: 'Trebuchet MS', sans-serif;
  color: #ffffff;
  text-decoration: underline;
  margin-bottom: 30px;
}

/* Wrapper */
.wrapper {
  position: relative;
  max-width: 800px;
  width: 100%;
  height: 450px;
  background: #858d98;
  /* border-radius: 12px; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.wrapper i.button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  background-color: #343f4f;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}

#prev {
  left: 15px;
  opacity: 50%;
}
#prev:hover {
    opacity: 80%;
}

#next {
  right: 15px;
  opacity: 50%;
}

#next:hover {
    opacity: 80%;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel img {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: fill;      /* ✨ keeps entire image inside */
  object-position: center; /* ✨ centers image correctly */

  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel img.active {
  opacity: 1;
}


/* Responsive */
@media (max-width: 600px) {
  .wrapper {
    height: 260px;
  }
  .gallery-heading {
    font-size: 2.2rem;
  }
}





/* Contact Us Section */

#contact {
    scroll-margin-top: 140px;
}

.section-wrapper {
    position: relative;
    width: 100%;
    height: 440px;
    background-image: url('images/13.PNG');
    background-size: cover;
    background-position: center;
    color: white;
    z-index: 1;
}

.section-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(65, 92, 78, 0.712);
    z-index: 2;
}

.left-container {
    position: absolute;
    top: -60px;
    left: 10%;
    width: 32%;
    height: calc(100% + 220px);
    background: white;
    box-shadow: 0 0px 12px rgba(6, 6, 6, 0.414);
    z-index: 5;
    color: #333;
    padding: 10px;
    box-sizing: border-box;
}

#contact form h2 {
    font-size: clamp(1.2rem, 2vw, 2rem);
    padding-bottom: 20px;
    font-family: 'Trebuchet MS', sans-serif;
    color: #434343bd;
}

#contact-form {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    max-width: 90%;
    margin: 0 auto;
    scroll-margin-top: 100px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    color: #444;
    font-size: clamp(0.7rem, 2vw, 1rem);

}

.form-group span {
    color: red;
}

#contact input,
#contact textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    resize: vertical;
    border: 2px solid #ddd;
    transition: border-color 0.3s;
}

#contact input:focus,
#contact textarea:focus {
    border-color: #ababab;
    outline: none;
}

#contact-form button {
    padding: 12px 20px;
    margin-top: 10px;
    background-color: #57aa6e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background 0.3s ease;
}

#contact-form button:hover {
    background-color: #303030;
    color: #fff;
}

.right-content {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 15%;
    box-sizing: border-box;
}

.inquiry-box {
    text-align: left;
    max-width: 40%;
    animation: slideInFromRight 2s ease-out ;
}

.inquiry-box i {
    font-size: 2.2rem;
}

.inquiry-box h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.inquiry-box .phone {
    font-size: clamp(1.8rem, 3vw, 3.5rem);
    line-height: 1.2;
    font-weight: 550;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: #FEFAE0;
}

.inquiry-box p {
    font-size: 1em;
    color: #e0e0e0;
}



@media (max-width: 1250px) {
    .section-wrapper {
        height: auto;
        padding-bottom: 50px;
        margin-bottom: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #contact input,
    #contact textarea {
        padding: 8px;
    }

    .left-container {
        position: relative;
        width: 40%;
        height: 620px;
        top: 0;
        left: 0;
        margin-top: 30px;
        z-index: 5;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .right-content {
        justify-content: center;
        padding-right: 0;
        padding-top: 20px;
    }

    .inquiry-box {
        max-width: 90%;
        text-align: center;
    }

    .inquiry-box .phone {
        font-size: 1.5rem;
    }

    .inquiry-box h3 {
        font-size: 1.4rem;
    }

    .inquiry-box p {
        font-size: 0.95rem;
    }
}

@media (max-width: 800px) {
    .left-container {
        width: 70vw;
    }

    #contact form h2 {
        font-size: 1.5rem;
    }

    .inquiry-box .phone {
        font-size: 1.8rem;
    }

    .inquiry-box h3 {
        font-size: 1.2rem;
    }

    .inquiry-box p {
        font-size: 0.9rem;
    }

    #contact input,
    #contact textarea {
        font-size: 14px;
    }

    #contact-form button {
        font-size: 15px;
    }
}

@media (max-width: 700px) and (min-width: 415px) {
    .left-container {
        width: 70vw;
        height: 590px;
    }
}
@media (max-width: 415px) {
    .left-container {
        width: 70vw;
        height: 630px;
    }
}


#addresses {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 80px;
}

#address1,
#address2 {
    display: flex;
    flex-direction: column;
    text-wrap: wrap;
    justify-content: center;
    width: 350px;
}

#address1 {
    margin-right: 30vw;
    padding-left: 30px;
    animation: slideInFromLeft 2s ease-out ;
}

#address2 {
    padding-right: 30px;
    animation: slideInFromRight 2s ease-out ;
}

#address1 h3,
#address2 h3 {
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-family: Verdana, sans-serif;
    font-weight: 100;
}

#address1 p,
#address2 p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin-top: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media (max-width: 1250px) {
    #addresses {
        margin-top: 50px;

    }
}

@media (max-width: 1250px) {
    #addresses {
        margin-top: 60px;

    }

    #address1 {
        margin-right: 15vw;
    }
}

@media(max-width:850px) {
    #addresses {
        flex-direction: column;
        align-items: center;
    }

    #address1 {
        margin-right: 0vw;
        padding-left: 0px;
    }

    #address2 {
        padding-right: 0px;
    }
}

@media(max-width:500px) {
    #address2 {
        padding-left: 40px;
        padding-right: 0px;
    }
}



/* Footer */
footer {
    background-color: #191b2d;
    color: white;
    padding: 20px 20px 1px 20px;
    border-top: 7px solid #57aa6e;
    position: relative;
}



.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    top: 20px;
    gap: 30px;

}

.footer-section {
    display: flex;
    flex-direction: column;
    flex: 1 1 20%;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    padding-bottom: 10px;
    color: #ffffff;
    font-weight: bolder;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-section a {
    color: #ffffff;
    padding: 5px 0px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: color 0.3s, transform 0.3s;
}

#footer_sec1 img {
    width: 100px;
    position: relative;
}

#footer_sec1 h4 i {
    font-size: 0.8rem;
    color: #E2E0C8;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#footer_sec1 #para {
    display: flex;
    text-wrap: wrap;
    font-size: 0.9rem;
    width: 220px;
    margin-top: 20px;
    font-family: monospace;
    color: white;
    /* text-align: justify; */
}

#footer_sec1 p {
    margin-top: 20px;
    color: #f2ff00;
}


#footer_sec2 a:hover {
    color: #ffcc00;
    transform: translateX(10px);
}

#footer_sec3 p {
    font-family: monospace;
    font-size: 1rem;
}

#footer_sec3 a {
    font-family: monospace;
    font-size: 1.1rem;
}


/* Social Media Icons */
.footer_socialLinks {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: row;
    font-size: 27px;
    width: 250px;
    margin-top: 30px;
    padding: 5px 10px;
    background-color: white;
}

.footer_socialLinks a {
    margin: 0 10px;
    display: flex;
}

.footer_socialLinks a:hover {
    transform: scale(1.3);

}



/* Admin Login */

.admin-login a {
    color: #ffffff;
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

    padding: 10px 15px;
    border: 1px solid #ffffff;
    transition: background 0.3s, color 0.3s;
}

.admin-login a:hover {
    background-color: #ffcc00;
    color: #121736;
    border: 1px solid #ffcc00;
}

/* Copyright and Designer Link */

.footer_sec5 {
    padding-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    border-top: 1px solid white;
    margin: 6vh 150px 2vh 140px;
}

.footer_sec5 b {
    font-size: 0.7rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


/* Make Footer Responsive */
@media (max-width: 1250px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 1 1 calc(32%);
        padding: 0vw 10vw 2vw 8vw;
    }

}



@media (max-width: 820px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        top: 20px;
    }

    .footer-section {
        width: 100%;
        max-width: 500px;
        margin-bottom: 20px;
        padding: 0 20px;
        align-items: center;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        border-bottom: 1px solid white;
    }

    #footer_sec1 img {
        margin: 0 auto;
    }

    .footer-section:nth-child(1) {
        flex: 1 1 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;

    }

    .footer_sec5 {
        flex-direction: column;
        margin-top: 32px;
        margin-left: 30%;
        margin-right: 30%;
    }


    .admin-login {
        margin: 30px 0;
    }

     .admin-login a {
        font-size: 15px;
    }

    #copyright {
        font-size: 0.75rem;
    }
}

@media (max-width: 500px) { 
    .footer_sec5 {
        flex-direction: column;
        margin-top: 32px;
        margin-left: 20%;
        margin-right: 20%;
    }
    .admin-login a {
        font-size: 12px;
        padding: 8px 12px;
    }
}







#backToTop {
    display: inline-block;
    position: sticky;
    top: 78%;
    left: 1500px;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

#backToTop a {
    position: relative;
    right: 18px;
    font-size: 2.5rem;
}



#whatsapp img {
    position: fixed;
    bottom: 25px;
    right: 30px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    object-fit: cover;
}

#whatsapp img:hover {
    transform: scale(1.1);
}

/* PopUp */
#toast {
  display: flex;
  align-items: center;
  gap: 12px;
  visibility: hidden;
  opacity: 0;
  min-width: 300px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 16px;
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#toast.show {
  visibility: visible;
  opacity: 1;
}

.toast-icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.toast-message {
  flex: 1;
  color: #fff;
}

/* Success */
.toast-success {
  background-color: #28a745;
}

/* Error */
.toast-error {
  background-color: #dc3545;
}

