/**********************************/
/********** General CSS ***********/
/**********************************/
body {
    color: #555555;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    background: #ffffff;
}

a {
    color:#f19933;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #333333;
    outline: none;
    text-decoration: none;
}

p {
    color: #555555;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #333333;
    font-family: 'Oswald', sans-serif;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #ffffff;
    color: #333333;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #333333;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #333333;
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
#nav {
    position: absolute;
    width: 100%;
    top: 30px;
    z-index: 1;
}

#nav.nav-sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .95) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
    
}

#nav .navbar {
    margin: 0 auto;
    padding: 0 15px;
    background: transparent !important;
}

/* #nav .navbar .navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000000;
} */

#nav .navbar-light .nav-link {
    position: relative;
    color: #757575;
    font-size: 14px;
    font-weight: bolder;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
    gap: 10px;
    margin-right: 50px;
}

#nav .navbar-light .nav-link::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    left: 9px;
    bottom: 0;
    background: #555555;
    opacity: 0;
}

#nav .navbar-light .nav-link:hover::after,
#nav .navbar-light .nav-link.active::after {
    opacity: 1;
}

#nav .navbar-light .nav-link:focus,
#nav .navbar-light .nav-link:hover,
#nav .navbar-light .nav-link.active {
    color: #000000;
}

@media(min-width: 992px) {
    #nav .navbar {
        max-width: 1140px;
    }
}

@media(max-width: 767.98px) {
    #nav {
        top: 0;
    }
    #nav .navbar {
        background: #ffffff !important;
    }
    
    #nav .navbar-light .nav-link:hover::after,
    #nav .navbar-light .nav-link.active::after {
        opacity: 0;
    }
}



/* Default logo size for desktop */
.logo {
    height: 100px;
    width: 150px;
}


@media (max-width: 700px) {
  .navbar-brand img {
    width: auto;      /* ya max-width: 120px; */
    height: 70px;     /* desired height */
    object-fit: contain; /* ensure image scales properly */
  }
}


/* Mobile specific */
@media (max-width: 480px) {
  .navbar-brand img {
    width: auto;      /* ya max-width: 120px; */
    min-height: 50px;     /* desired height */
    object-fit: contain; /* ensure image scales properly */
  }
}



/**********************************/
/*********** Header CSS ***********/
/**********************************/
#header {
    position: relative;
    padding: 200px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 5% , rgba(255, 255, 255, .5)), url(../img/backgrond1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}



#header .header-content {
    width: 100%;
    text-align: left;
}

#header .header-content h2 {
    font-size: 70px;
    font-weight: 700;
}

#header .header-content h2 span {
    color: #000000;
    text-transform: uppercase;
}

#header .header-content p {
    color: #333333;
    font-size: 22px;
}

#header .header-content .btn {
    padding: 7px 30px 8px 30px;
    font-size: 22px;
    color: #333333;
    letter-spacing: 3px;
    border: 2px solid #333333;
    transition: .3s;
}

#header .header-content .btn:hover {
    color: #333333;
    border-color:#f19933 ;
    background: #f19933;
}

#header .header-img {
    position: relative;
    overflow: hidden;
    text-align: right;
}

#header .header-img img {
    width: 600px;
    height:500px;
}



@media (max-width: 991.98px) {  
    #header .header-content h2 {
        font-size: 45px;
    }

    #header .header-content h2 span {
        font-size: 55px;
    }
}

@media (max-width: 767.98px) {
    #header .header-content {
        text-align: center;
    }

    #header .header-img {
        text-align: center;
        margin-bottom: 45px;
    }
    .header-img img {
    width: auto;        /* Let width adjust automatically */
    max-width: 100%;    /* Prevent overflow */
    height: 150px;      /* Set desired height */
    object-fit: contain; /* Keep aspect ratio without cropping */
    display: block;
    margin: 0 auto;     /* Center the image */
  }

  .header-img {
    padding: 10px 0;
    text-align: center;
  }
}
@media (max-width: 480px) {  
    #header .header-content h2 {
        font-size: 35px;
    }

    #header .header-content h2 span {
        font-size: 45px;
    }
    
    #header .header-content p {
        font-size: 18px;
    }
    .header-img img {
    width: auto;        /* Let width adjust automatically */
    max-width: 100%;    /* Prevent overflow */
    height: 120px;      /* Set desired height */
    object-fit: contain; /* Keep aspect ratio without cropping */
    display: block;
    margin: 0 auto;     /* Center the image */
  }

  .header-img {
    padding: 10px 0;
    text-align: center;
  }
}

@media (min-width: 768px) and (min-width: 768px)  and (max-width: 1024px) {
    .header-img img {
        width: auto !important;       /* Allow width to adjust */
        max-width: 90%;               /* Prevent overflow */
        height: 180px !important;     /* Control height */
        object-fit: contain;          /* Maintain aspect ratio */
        display: block;
        margin: 0 auto;
    }
}




/**********************************/
/******** Mini Feature CSS ********/
/**********************************/
#feature-mini {
    position: relative;
    background: transparent;
    margin-top: -80px;
}

#feature-mini .container {
    max-width: 992px;
    background: #f19933;
}

#feature-mini .col-md-3 {
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
}

@media (max-width: 575.98px) {
    #feature-mini .col-md-3:nth-child(1n) {
        border-right: none;
    }
    
    #feature-mini .col-md-3:last-child {
        border-bottom: none;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    #feature-mini .col-md-3:nth-child(2n) {
        border-right: none;
    }
    
    #feature-mini .col-md-3:nth-child(3n),
    #feature-mini .col-md-3:nth-child(4n) {
        border-bottom: none;
    }
}

@media (min-width: 768px) {
    #feature-mini .col-md-3 {
        border-bottom: none;
    }
    
    #feature-mini .col-md-3:nth-child(4n) {
        border-right: none;
    }
}

#feature-mini .feature-item {
    padding: 30px 0;
    text-align: center;
}

#feature-mini .feature-item i {
    color: #ffffff;
    font-size: 35px;
    margin-bottom: 10px;
}

#feature-mini .feature-item h3 {
    font-size: 22px;
    font-weight: 400;
}

#feature-mini .feature-item p {
    margin: 0;
    font-size: 18px;
}



/**********************************/
/******* Section Header CSS *******/
/**********************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 45px auto;
    padding-bottom: 20px;
}

.section-header::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    left: calc(50% - 25px);
    bottom: 10px;
    background: #f19933;
}

.section-header::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #333333;
}

.section-header p {
    margin: 0;
    color:#f19933;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
}

.section-header h1 {
    margin: 0;
    color: #000000;
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}

@media (max-width: 575.98px) {
    .section-header h1 {
        font-size: 45px;
    }
}




/**********************************/
/********** Feature CSS ***********/
/**********************************/
#feature {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
}

#feature .col-md-4:first-child .product-feature {
    text-align: right;
}

#feature .product-feature {
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

#feature .product-feature:last-child {
    margin: 0;
}

#feature .product-icon {
    position: relative;
    width: 60px;
    height: inherit;
    float: left;
}

#feature .product-icon i {
    color:#f19933;
    font-size: 40px;
    margin-top: 5px;
}

#feature .product-content {
    position: relative;
    width: calc(100% - 60px);
    float: left;
}

#feature .product-feature h2 {
    font-size: 18px;
    font-weight: 400;
}

#feature .product-feature p {
    font-size: 16px;
    margin-bottom: 0;
}

#feature .product-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#feature .product-img img {
    width: 100%;
}

@media (max-width: 767.98px) {
    #feature .col-md-4:first-child .product-feature {
        text-align: left;
    }
    
    #feature .col-md-4:first-child .product-feature .product-icon {
        float: left;
    }
    
    #feature .col-md-4:first-child .product-feature .product-content {
        float: right;
    }
    
    #feature .product-img img {
        margin: 45px 0;
    }
}








/**********************************/
/********** Products CSS **********/
/**********************************/
#products {
    position: relative;
    padding: 90px 0 60px 0;
    background: #ffffff;
}

#products .product-single {
    position: relative;
    width: 100%;
    padding: 30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #080808;
    border-radius: 5px;
    margin-bottom: 30px;
    transition: .3s;
}

#products .product-single:hover {
    background: #f19933;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

#products .product-title {
    position: relative;
    margin-bottom: 30px;
}

#products .product-title h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
}

#products .product-title p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
}

#products .product-single .product-img {
    position: relative;
    width: 150px;
    height: 200px;
    /* overflow: hidden; */
    margin-bottom: 30px;
}

#products .product-img img {
    max-width: 150px;
}

#products .product-footer {
    position: relative;
}

/* #products .product-footer:hover {
  color:#FFD662 ;
  background-color:#FFD662 ;
    
} */



@media (max-width: 767.98px) {
    #products .product-single {
        margin-bottom: 45px;
    }
    
    #products .col-md-3:last-child .product-single {
        margin-bottom: 0;
    }
}



/**********************************/
/******** Testimonial CSS *********/
/**********************************/
#testimonial {
    position: relative;
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url(../img/header-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#testimonial .container {
    max-width: 720px;
}




/**********************************/
/************ FAQs CSS ************/
/**********************************/
#faqs {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
}

#faqs .faqs-text {
    position: relative;
    width: 100%;
}

@media(max-width: 767.98px) {
    #faqs .faqs-text {
        margin-bottom: 30px;
    }
}

#faqs .faqs-text h2 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 15px;
    
}

#faqs .faqs-text h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #333333;
}

#faqs .faqs-text p:last-child {
    margin: 0;
}

#faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

#faqs .card:last-child {
    margin-bottom: 0;
}

#faqs .card-header {
    padding: 0;
    border: none;
}

#faqs .card-header a {
    display: block;
    width: 100%;
    padding: 10px 15px 12px 15px;
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    background: #ffffff;
    border: 1px solid #eeeeee;
}

#faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #000000;
    font-size: 14px;
    font-weight: 900;
    transition: .3s;
}

#faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #000000;
    font-size: 14px;
    font-weight: 900;
    transition: .3s;
}

#faqs .card-body {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid;
    border-color: transparent #eeeeee #eeeeee #eeeeee;
}



/**********************************/
/********** Contact CSS ***********/
/**********************************/




/**********************************/
/********** Footer CSS ************/
/**********************************/
#footer {
    position: relative;
    padding: 30px 0;
    background: #222222;
}

#footer .col-md-6:first-child p {
    text-align: left;
}

#footer .col-md-6:last-child p {
    text-align: right;
}

@media (max-width: 767.98px) {
    #footer .col-md-6:first-child p,
    #footer .col-md-6:last-child p {
        text-align: center;
    }
}

#footer p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

#footer p a {
    font-weight: 700;
}

#footer p a:hover {
    color: #ffffff;
}




@media (max-width: 480px) {
.back-to-top{
  margin-right: 5px;
}
}


.why-us{
    margin-top: 60px;
}


 
.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(219, 217, 217);
  background-color:white;
  padding: 30px;
  gap: 50px; /* ✅ visible space between logos */
}

/* Logo style */
.p-img {
  height: 200px;
  width: 170px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

/* Hover effect */
.p-img:hover {
  transform: translateY(-5px);
}

/* Tablet view */
@media (max-width: 992px) {
  .partners {
    gap: 30px;
  }
  .p-img {
    height: 80px;
    width: 110px;
  }
}

/* Mobile view */
@media (max-width: 576px) {
  .partners {
    gap: 20px;
    padding: 15px;
  }
  .p-img {
    height: 60px;
    width: 90px;
  }
}

.img-why{
     margin-left: 20px;
     margin-top: 10px;
}
/* Popup background overlay */



/* Popup background overlay */
/* .popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.popup-content {
  position: relative;
  background: #fff;
  color: #333;
  padding: 25px 20px;
  width: 450px;
  margin: 8% auto;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  animation: fadeIn 0.6s ease;
  font-family: "Poppins", sans-serif;
  height: 650px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  color: #555;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s ease;
}
.close-btn:hover {
  color: #e74c3c;
}


.popup-content button {
  background-color:#f19933;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 15px;
  font-size: 15px;
  transition: background 0.3s ease;
}
.popup-content button:hover {
  background-color: #f19933;
}


@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.8);}
  to {opacity: 1; transform: scale(1);}
}



 
@media (max-width: 768px) {
  .popup-content {
    width: 90%;
    margin-top: 20%;
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .popup-content {
    width: 94%;
    margin: 15% auto;          
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;

    max-height: 85vh;          
    overflow-y: auto;          
  }

  .popup-content h2 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 12px;
  }

  .popup-content form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .popup-content input,
  .popup-content select,
  .popup-content textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }

  .popup-content button {
    font-size: 14px;
    padding: 10px;
    width: 100%;
    background: #f19933;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }
}


.get-query{
  margin: 5px auto;
  height: 380px;
  width: 400px;

}

.get-query .form-group {
    margin-bottom: 5px;
}

.get-query label {
    display: block;
    margin-bottom: 5px;
    font-weight: 650;
    color: #333;
    text-align: start;
}

.get-query input,
.get-query textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
    outline: none;
    transition: border 0.3s;
}

.get-query input:focus,
.get-querytextarea:focus {
    border-color:#f19933;
}

.get-query textarea {
    resize: vertical;
}

.get-query button {
    background-color: #f19933;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.get-query button:hover {
    background-color: #0ea50e;
}

.get-query center {
    text-align: center;
}
.get-query select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border 0.3s;
    background-color: #fff;
    cursor: pointer;
}

.get-query select:focus {
    border-color:#f19933;
} */

/* .popup {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0; 
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  overflow-x: hidden; 
  transition: all 0.3s ease;
}


.popup-content {
  background: #fff;
  margin: 8% auto;
  padding: 25px 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px; 
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.4s ease;
  box-sizing: border-box;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #f19933;
}


.popup-content h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 8px;
}

.popup-content p {
  text-align: center;
  color: #555;
  font-size: 14px;
  margin-bottom: 18px;
}


.get-query form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f19933;
}


button[type="submit"] {
  background-color: #f19933;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #e68a2e;
}


.popup-content::-webkit-scrollbar {
  width: 5px;
}
.popup-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}



@media (min-width: 768px) and (max-width: 1024px) {
  .popup-content {
    width: 80%;
    margin-top: 10%;
    padding: 25px;
  }

  .popup-content h2 {
    font-size: 24px;
  }

  .popup-content p {
    font-size: 15px;
  }
}


@media (min-width: 1025px) {
  .popup-content {
    width: 40%;
    max-width: 500px;
    margin-top: 5%;
    padding: 30px;
  }

  .popup-content h2 {
    font-size: 26px;
  }
}
 */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0; /* shorthand for top, right, bottom, left = 0 */
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  overflow-x: hidden; /* prevent horizontal scroll */
  transition: all 0.3s ease;
}

/* ====== Popup Box ====== */
.popup-content {
  background: #fff;
  margin: 8% auto;
  padding: 25px 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px; /* limits width even on large screens */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 0.4s ease;
  box-sizing: border-box;
}

/* ====== Animation ====== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== Close Button ====== */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #f19933;
}

/* ====== Heading & Text ====== */
.popup-content h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 8px;
}

.popup-content p {
  text-align: center;
  color: #555;
  font-size: 14px;
  margin-bottom: 18px;
}

/* ====== Form Styling ====== */
.get-query form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f19933;
}

/* ====== Button ====== */
button[type="submit"] {
  background-color: #f19933;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #e68a2e;
}

/* ====== Scrollbar for Long Forms on Small Screens ====== */
.popup-content::-webkit-scrollbar {
  width: 5px;
}
.popup-content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 5px;
}

/* ====== Responsive Design ====== */

/* ---- Tablets (768px to 1024px) ---- */
@media (min-width: 768px) and (max-width: 1024px) {
  .popup-content {
    width: 80%;
    margin-top: 10%;
    padding: 25px;
  }

  .popup-content h2 {
    font-size: 24px;
  }

  .popup-content p {
    font-size: 15px;
  }
}

/* ---- Desktops (above 1024px) ---- */
@media (min-width: 1025px) {
  .popup-content {
    width: 40%;
    max-width: 500px;
    margin-top: 5%;
    padding: 30px;
  }

  .popup-content h2 {
    font-size: 26px;
  }
}

/* Mobile View: max-width 480px */
@media (max-width: 480px) {
  
  #contact .contact-container {
    display: flex;
    flex-direction: column; /* Stack form and map vertically */
    gap: 20px;
    padding: 10px;
    margin-right: 10px;
  
  }

  /* Form styling */
  #contact .contact-form {
    width: 80%;
    margin: 0 auto;
    height: 60%;
    
  }

  #contact .contact-form input,
  #contact .contact-form select,
  #contact .contact-form textarea,
  #contact .contact-form button {
    width: 80%;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
  }

  #contact .contact-form button {
    margin-top: 10px;
  }

  /* Contact info & map styling */
  #contact .contact-info {
    width: 90%;
    align-items: center;
   
  }

  #contact .contact-info h2,
  #contact .contact-info h3,
  #contact .contact-info p {
    font-size: 14px;
  }

  #contact .contact-map iframe {
    width: 90%;
    height: 300px; /* Adjust height for mobile */
    border: 0;
  }

  /* Social icons */
  #contact .social a {
    font-size: 20px;
    margin: 0 5px;
  }
}

/* General styles */
#contact {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Arial', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
}

.section-header h1 {
  font-size: 36px;
  color: #222;
  font-weight: 700;
}

/* Contact row */
#contact .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Form styles */
.contact-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  resize: none;
}

.contact-form button {
  padding: 12px 30px;
  background-color: #f19933;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color:#f19933;
}

/* Contact info */
.contact-info {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 600px;
}

.contact-info h2 {
  margin-bottom: 15px;
  font-size: 28px;
}

.contact-info p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #555;
}

.contact-info h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.contact-info h3 i {
  margin-right: 10px;
  color:#070707;
}

.contact-info .social a {
  display: inline-block;
  margin-right: 10px;
  color: #070707;
  font-size: 20px;
  transition: 0.3s;
}

.contact-info .social a:hover {
  color: #f19933;
}

/* Map */
.contact-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
  margin-top: 20px;
}

/* Responsive Styles */

/* Tablets */
@media (max-width: 991px) {
  #contact .row {
    flex-direction: column;
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .section-header h1 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px;
    font-size: 13px;
  }

  .contact-form button {
    width: 100%;
    font-size: 15px;
  }

  .contact-info h2 {
    font-size: 22px;
  }

  .contact-info h3 {
    font-size: 14px;
  }

  .contact-map iframe {
    height: 250px;
  }
}
