/* -----------------------------
   Global Reset
----------------------------- */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif;

    /* Brand Colors */
    --primary-color: #ff8800;
    --secondary-color: #1A9EA7;
    --accent-color: #252525;
}

/* -----------------------------
   Links
----------------------------- */
a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-color);
}

/* -----------------------------
   Lists
----------------------------- */
li {
    list-style: none;
}

/* -----------------------------
   Desktop
----------------------------- */
.desktop-header{
    display: flex;
    justify-content: space-between;
    margin-left: 60px;
    margin-right: 60px;
    align-items:center;
}
.desktop-links a{
    padding: 30px;
}
.desktop-chats {
  background: #fafafa;
  padding: 10px 23px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.chat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.chat-item i {
  font-size: 22px;
  color: var(--primary-color);
}
.chat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.chat-text a {
  color: var(--primary-color);
  font-size: 15px;
  text-decoration: none;
  margin-top: 2px;
}
.chat-text a:hover {
  color: var(--primary-color);
}
.badge {
  font-size: 13px;
  font-weight: 500;
  color: #000000;
}
.one-line{
    border: 0.5px solid #e9e9e9ff;
}
/* -----------------------------
   Second Desktop
----------------------------- */
.second-desktop{
    display: flex;
    justify-content: space-between;
    margin-left: 60px;
    margin-right: 60px;
    align-items:center !important;
    padding-bottom: 10px;
    padding-top: 10px;
}
.second-desktop-quote a{
    padding: 10px 17px;
  border-radius: 50px;   
  border: 2px solid transparent;
  background-image:
    linear-gradient(to right, var(--primary-color), var(--secondary-color)),
    linear-gradient(#ffffff, #ffffff);

  background-origin: border-box;
  background-clip: border-box, padding-box;

  color: #ffffff;
  text-decoration: none;
  margin-top: -20px;
  font-weight: 600;
}
.second-desktop-quote a:hover{
    background-color: #057981ff;
}
.second-desktop-links{
    display: flex;
    justify-content: space-between;
    gap: 30px;
   
    
}
.second-desktop-links a{
    font-size: 16px;
    padding: 7px 16px;
}
.second-desktop-links a:hover{
    background-image:
    linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    color: #ffffff;
}
@media (max-width:768px){
    .desktop-header{
        display: none;
    }
    .second-desktop{
         display: none;
    }
    .one-line{
         display: none;
    }
    .mobile-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 10px;
    margin-right: 10px;
    background-color: white;
    position: relative;
    }
    .mobile-header::after{
        content:"";
        position: absolute;
        bottom: 0;
        width: 100vw;
        border-bottom: 1px solid #e4e4e4ff;
        left: -20px;
    }
    .menu-icons i{
    font-size: 22px;
    cursor: pointer;
    }
}
@media (min-width:768px){
    .mobile-header{
        display: none;
    }
    .mobile-menu {
    display: none;
}
}
/* -----------------------------
            Mobile 
----------------------------- */
.mobile-menu {
    display: none;
    flex-direction: column;
    top: 70px; 
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.mobile-menu a {
    display: block;
    padding: 12px 0;
    color: var(--accent-color);
    font-weight: 500;
    border-bottom: 1px solid #eee;
}
.mobile-menu a:hover {
    color: var(--primary-color);
}
.mobile-menu-toggle {
    cursor: pointer;
    color: var(--accent-color);
}
.menu-images img{
    border-radius: 5px;
}
/* -----------------------------
           Hero Section 
----------------------------- */
.hero-banner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding-left: 100px;
    padding-right: 0px;
    padding-top:20px;
    gap: 40px;
}
.hero-banner h1{
    color: #242424ff;
    font-size: 70px;
    font-weight:900;
    line-height: 1;
    margin-top: -15px;
}
.hero-left{
  width: 50%;
}
.hero-left p{
    padding-top: 15px;
    font-size: 25px;
    padding-bottom: 35px;
    padding-right: 30px;
}
.hero-left a{
  padding: 10px 26px;
  border-radius: 50px;   
  border: 2px solid transparent;
  background-image:
    linear-gradient(to right, var(--primary-color), var(--secondary-color)),
    linear-gradient(#ffffff, #ffffff);
  background-origin: border-box;
  background-clip: border-box, padding-box;
  color: #ffffff;
  text-decoration: none;
  margin-top: -20px;
  font-weight: 600;
}
.hero-left a:hover{
  background-color: var(--secondary-color);
}
.hero-right{
  width: 70%;
}
.hero-right img{
    border-radius: 7px;
    margin-top: 10px;
    text-align: center;
}
.hero-left,
.hero-right {
    opacity: 0;
}
/* Left side entrance */
.hero-left {
    animation: heroLeftIn 0.8s ease-out forwards;
}
/* Right side entrance */
.hero-right {
    animation: heroRightIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
}
/* Keyframes */
@keyframes heroLeftIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes heroRightIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* -----------------------------
   TABLETS (max-width: 992px) 
----------------------------- */
@media (max-width: 992px) {
    .hero-banner {
        padding-left: 35px;
        padding-right: 35px;
        gap: 30px;
    }
    .hero-left {
        width: 55%;
    }
    .hero-banner h1 {
        font-size: 48px;
    }
    .hero-left p {
        font-size: 20px;
    }
    .hero-right {
        width: 45%;
    }
}
/* -----------------------------
   MOBILE (max-width: 768px) 
----------------------------- */
@media (max-width: 768px) {

    .hero-banner {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 20px;
    }
    .hero-left {
        width: 100%;
        padding-right: 0;
    }
    .hero-banner h1 {
        font-size: 38px;
        margin-top: 0;
        margin-bottom: 0px;
    }
    .hero-left p {
        font-size: 18px;
        padding-right: 0;
    }
    .hero-left a {
    display: inline-block;
    font-size: 19px;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 50px;   
    border: 2px solid transparent;
    background-image:
        linear-gradient(to right, var(--primary-color), var(--secondary-color)),
        linear-gradient(#ffffff, #ffffff);
    background-origin: border-box;
    background-clip: border-box, padding-box;
    color: #ffffff;
    text-decoration: none;
    margin-top: -20px;
    }
    .hero-right {
        width: 100%;
    }
    .hero-right img {
        width: 100%;
        margin-top: 0;
    }
}
/* -----------------------------
   SMALL MOBILE (max-width: 480px) 
----------------------------- */
@media (max-width: 480px) {

    .hero-banner h1 {
        font-size: 40px;
    }
    .hero-left p {
        font-size: 20px;
        margin-bottom: 0px;
    }
}
/* -----------------------------
            UNDER HERO 
----------------------------- */
.quote-img{
 margin: 70px;
 margin-top: 30px;
}
.quote-img img{
    border-radius: 5px;
}
@media (max-width:768px) {
    .quote-img{
        margin: 17px;
        margin-top: -10px;
    }
    .service-head h1{
        font-size: 15px;
        margin-top: -20px;
    }
    .service-head{
    margin: 0px;
    margin-top: 30px !important;
    }
}
    .service-head{
    margin: 60px;
    text-align: center;
    margin-top: -40px;
}
/* -----------------------------
        SERVICES SECTION
----------------------------- */
@media (max-width:768px) {
    .service-head h1{
        font-size: 15px;
        margin-top: -20px;
    }
    .service-head{
    margin: 0px;
    margin-top: 30px !important;
    margin-bottom: -10px !important;
    }
}
    .service-head{
    margin: 60px;
    text-align: center;
    margin-top: -40px;
}
.line-one{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px;
  margin-top: -40px;
  cursor: pointer;
}
@media (max-width:768px) {
    .line-one{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px;
}}
.line-one-item p{
    font-size: 13px;
    padding-left: 10px;
}
.line-one img{
    border-radius: 5px;
}
.line-one-item:hover{
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 5px;
}

/* ======ABOUT PAGE =======*/
.about-img{
margin: 60px;
margin-top: 20px;
margin-bottom: 20px;
}

.about-img img{
   border-radius: 5px; 
}
@media (max-width:768px) {
    .about-img{
    margin: 10px;
    }
    .about-section{
      margin: 5px !important;
      display: grid;
      flex-wrap: wrap; 
       
    }
    .about-titles{
    width: 100% !important;
    padding-bottom: 0px;
}
.about-description{
    width: 100% !important;
    padding-top: 0px !important;
}
.about-titles h4{
    margin-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 15px !important;
}
.about-tab{
    padding: 0px;
}
}
.about-section{
    display: flex;
    justify-content: space-between;
    margin: 45px;
    margin-top: 20px;
    gap: 10px;
    margin-bottom: 20px;
}

.about-titles{
    width: 40%;
    padding: 15px;
}

.about-titles h4{
    margin-bottom: 15px;
    padding: 10px 20px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 18px;
}


.about-titles h4:hover{
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
}
.about-titles h4.active {
    color: #000000;
    background-color: #0087912f;
    border-left: 5px solid var(--primary-color);
}
.about-description{
    margin-top: 0px;
    width: 80%;
     padding: 15px;
}
.about-description p{
    font-size: 17px;
}

/* Mobile: stack + make toggles */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        margin: 20px;
    }

    .about-titles {
        width: 100% !important;
        padding: 0;
    }

    .about-description {
        width: 100% !important;
        padding: 0;
        margin-top: 10px;
    }

    .about-tab {
        display: block;
        width: 100%;
        background: #f7f7f7;
        padding: 12px 15px;
        border-radius: 5px;
        margin-bottom: 8px;
        font-size: 15px !important;
    }

    .about-tab.active {
        background: var(--secondary-color);
        color: white;
        border-left: none;
    }

    .tab-content {
        background: white;
        padding: 15px;
        border-left: 3px solid var(--primary-color);
        margin-bottom: 10px;
        display: none; 
        border-radius: 5px;
    }

    .tab-content p {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* ====== HELP PAGE =======*/
.help-section{
    display: flex;
    justify-content: space-between;
    margin: 60px;
    margin-top: 20px;
    gap: 10px;
    margin-bottom: 20px;
    margin-left: -20px;
}
.faqs-section{
    width: 70%;
    padding-left: -10px;
    max-width: 800px;
    margin: 50px auto;
    padding: 0 20px;
    margin-top: 0px;
}
.fixed-tab{
    width: 30%;
}
.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;

}
.faq-question {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}
.faq-answer {
   padding: 0 20px;
   margin-bottom: 10px;
}
@media (max-width: 991px) {
    .help-section {
        flex-direction: column;
        margin: 30px;
        gap: 25px;
    }

    .faqs-section,
    .fixed-tab {
        width: 100%;
    }

    .faqs-section {
        margin: 0 auto;
        padding: 0;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .help-section {
        margin: 10px;
        gap: 10px;
    }

    .faqs-section {
        width: 100%;
        padding: 0;
    }

    .faq-question {
        font-size: 15px;
        padding: 12px 16px;
    }

    .faq-question::after {
        right: 15px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.5;
    }

    .fixed-tab {
        width: 100%;
    }
}
.faqs-para{
    padding: 65px;
    margin-top: -80px;
    padding-bottom: 30px;
}
.faqs-para h3{
    padding-bottom: 30px;
}
@media (max-width:768px) {
    .faqs-para{
    padding: 20px;
    margin-top: 0px;
    padding-bottom: 30px;
}
}

/* =========== QUOTE ========== */
.quote-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 20px;
    padding-left: 60px; 
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 10000;
}
.qoute-form{
    display: flex;
    justify-content: space-between;

    margin-top: 70px;
    margin-bottom: 0px;
}
.box-one-quote{
    width: 50%;
    margin-left: 60px;
}
.box-two-quote{
    width: 50%;
    position: fixed;
    right: 0px;
}
.qoute-form h1{
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 40px;
    margin-right: 200px;
    font-weight:900
}
.qoute-form p{
    margin-bottom: 20px;
}

.fj-form {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    background: #fff;
    font-family: "montserrat";
    padding-top: 5px;
    margin-bottom: 30px;
}
.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--accent-color);
}

input, textarea {
    width: 90%;
    border-radius: 6px;
    outline: none;
    transition: 0.2s;
    padding: 13px 20px;
    border-radius: 5px;
    border: 1px solid #3a3a3a;
    font-size: 16px;
    margin-bottom: 10px ;
}
select{
    width: 90%;
    padding: 13px 20px;
    border-radius: 5px;
    border: 1px solid #3a3a3a;
    font-size: 16px;
    margin-bottom: 10px;  
}

input:focus, select:focus, textarea:focus {
    border-color: var(--secondary-color);
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload {
    width: 90%;
    display: inline-block;
    background: var(--secondary-color);
    color: #fff !important;
    padding: 17px 12px !important;
    padding-right: 10px !important;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}

.file-upload:hover {
    background: var(--primary-color);
}

input[type="color"] {
    width: 45px;
    height: 45px;
    padding: 0;
    border: 2px solid var(--secondary-color);
    border-radius: 6px;
    cursor: pointer;
}
.submit-btn {
    width: 90%;
    padding: 18px;
    padding-right: 12px;
    border: none;
    border-radius: 50px;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.submit-btn:hover {
    background: var(--secondary-color);
}
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 50px;
}

.checkbox-group input[type="checkbox"] {
    width: 35px;
    height: 35px;
    cursor: pointer;
}
.privacy-box{
    margin: 30px;
    margin-right: 100px;
}
.quote-last{
    margin-left: 30px;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .qoute-form {
        flex-direction: column;
        margin-top: 20px;
        margin-right: 5px;
    }

    .box-one-quote {
        width: 100%;
        margin-left: 0;
        padding: 0 20px;
    }

    .box-two-quote {
        position: relative;
        width: 100%;
        margin-top: 30px;
    }

    .qoute-form h1 {
        margin-right: 0px;
        font-size: 35px;
    }

    input, textarea {
        width: 80%;
    }

    select {
        width: 91%;
    }

    .file-upload {
        width: 85%;
    }

    .submit-btn {
        width: 90%;
    }

    .checkbox-group label {
        margin-right: 80px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .quote-header {
        display: none;
    }

    .desktop-chats {
        display: none; 
    }

    .box-two-quote img {
        width: 100%;
        height: auto;
    }

    .qoute-form h1 {
        font-size: 35px;
    }

    .fj-form {
        max-width: 100%;
    }

    input[type="checkbox"] {
        width: 25px;
        height: 25px;
    }
}



@media (max-width: 480px) {
    .quote-header img {
        width: 110px;
    }

    .qoute-form h1 {
        font-size: 35px;
        margin-right: 100px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 14px;
    }

    .checkbox-group label {
        font-size: 13px;
        gap: 6px;
    }
    .box-two-quote{
        display: none;
    }

    input, textarea {
        width: 100%;
    }

    select{
    width: 100%;
    }

.file-upload {
    width: 100%;
}

.submit-btn {
    width: 100%;
}

.privacy-box{
    margin: 30px;
}

}

.quote-mobile-header{
    background-color: #f3f3f3;
    margin-left: 10px;
    margin-right: 20px;
    border-radius: 50px;
    padding: 10px 20px;
}
.quote-mobile-header:hover{
    background-color: var(--secondary-color);
    color: white !important;
}

.mobile-header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 2px; 
    background-color: white;
    top:0%;
}
@media (min-width:768px) {
    .mobile-header {
        display: none;
    }
    
}
.quote-mobile-header a{
    font-weight: 600;
}


/*===== Privacy ======*/

.privacy-header {
    background-image: url("../images/Untitled-11-04.png");
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.privacy-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#1a9ea77a, #ff88007c);
    z-index: 0;
}

.privacy-header h1 {
    position: relative;
    z-index: 1; 
}

.privacy-open{
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.privacy{
             max-width: 900px;
            margin: 40px auto;
            padding: 0 20px;
}

.privacy h2{
    margin-bottom: 20px;
    margin-top: 20px;
}
.privacy p{
   margin-bottom: 10px; 
}


@media (max-width:768px){
    .services-title{
    margin-left: 20px;
    margin-right: 20px;
}
}
@media (min-width:768px) {
   .services-title{
    margin-left: 70px;
    margin-right: 70px;
} 

}

.services-title h2{
    margin-bottom: 10px;
    margin-top: 10px;
}
.product-section{
    display: flex;
    gap: 15px;
    margin-top: 30px;
    margin-left: 70px;
    margin-right: 70px;
}
@media (max-width:768px) {
    .product-section{
        flex-wrap: wrap;
        margin-left: 20px;
        margin-right: 20px;
    }
    .work-uniform{
        padding: 20px;
    }
    .desktop-space{
        display: none;
    }
}

.work-uniform{
    display: flex;
    justify-content: space-between;
    border: 1px solid #dadada;
    gap: 10px;
    background-color: #f0efef;
    padding: 20px;
    padding-right: 0px;
    padding-bottom: 0px;
    border-radius: 5px;
    cursor: pointer;
}
.work-uniform a{
    position: relative;
  padding: 7px 14px;
  border-radius: 50px;   
  border: 2px solid transparent;
  background-image:
    linear-gradient(to right, var(--primary-color), var(--secondary-color)),
    linear-gradient(#ffffff, #ffffff);

  background-origin: border-box;
  background-clip: border-box, padding-box;

  color: #ffffff;
  text-decoration: none;
  margin-top: -20px;
  font-weight: 600;
  font-size: 12px;
  margin-top: -30px;
  top: 20px;
}
.work-uniform:hover{
    box-shadow: 5px 5px 5px #22151552;
}

.work-uniform h3{
    font-size: 30px;
    line-height: 30px;
    font-weight: 300;
}
.work-uniform-one{
    padding: 20px; 
    background-color: #ffffffff;
    border: 1px solid #dadada;
    border-radius: 5px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    cursor: pointer;
}
.work-uniform-one:hover{
    box-shadow: 5px 5px 5px #22151552;
}

.work-uniform-one h3{
   font-weight: 400;
   text-align: center;
}

.gallery-container{
    /*display: flex;
    gap: 10px;
    overflow-y: auto;
    margin-left: 40px;
    margin-right: 40px !important;
    white-space: nowrap;
    
    margin-top: -10px !important;
    width: 300px;*/
    display: flex;
    scrollbar-width: none;
    overflow-y: auto;
    gap: 10px;
    margin-left: 60px;
    white-space: nowrap;
}

.gallery-container img{
    width: 40%;
    height: 40%;
    object-fit: cover;
    border-radius: 10px;
}
.item-img{
    display: inline-block;
    width: 320px;
}

@media (max-width:768px) {
    .gallery-container{
    display: flex;
    gap: 10px;
    padding: 10px;
    width: 300px;
    margin-left: 10px;

}
    .gallery-container img{
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.scrollBtns{
    width: 100px !important;
    font-size: 15px !important;
}
}
.button-container{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.scrollBtns{
    padding: 6px 18px;
    border-radius: 50px;
    width: 150px;
    cursor: pointer;
    background: linear-gradient(#1a9ea7, #ff8800);
    border: none;
    font-size: 20px;
    color: white;
}
.scrollBtns:active{
    background: linear-gradient(#004449, #f35b04);
}




















/* -----------------------------
        FOOTER SECTION
----------------------------- */
.footer-quote-img{
    margin: 60px;
    margin-top: 20px !important;
}
.footer-quote-img img{
    border-radius: 6px;
}
@media (max-width:768px) {
    .footer-quote-img{
    margin: 20px;
    margin-top: -20px;
    }
}
 /*====== Contact Box ======*/ 
.contant-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background-color: #f5f5f5;
    padding: 65px; 
}
.contact-box-one{
    background-color: #ffffff;
    width: 65%;
    padding: 20px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
}
.contact-box-para{
    margin-top: 5px;
    margin-bottom: 15px; 
    font-size: 18px;
}
.contact-help {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3px;
}
.contact-help p {
    flex: 0 0 30%;  
    box-sizing: border-box;
    padding: 4px 0; 
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-help i{
    font-size: 20px !important;
    color: var(--primary-color);
}
.contact-help-one-box{
    margin-top: 20px !important;
}
.contact-help-box{
    padding: 7px 14px;
    width: 100%;
    border: 1px solid var(--secondary-color);
    border-radius: 6px;
    color: var(--secondary-color);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}
.contact-help-box:hover{
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: white;
}
.contact-help-img{
   margin-bottom: 10px;
    border-radius: 6px;
}
.contact-help-img img{
    border-radius: 6px;
}
.contact-box-two{
    background-color: #ffffff;
    width: 35%;
    padding: 20px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
}
.contact-list{
    margin-top: 10px;
     margin-bottom: 12px;
     
}
.contact-list i{
    color: var(--primary-color);
    font-size: 16px !important;
}

.contant-box i{
    font-size: 15px;
}
.contact-head{
    margin-bottom: 10px;
}
.contact-box h3{
    font-size: 35px;
}
.contact-button{
    display: inline-block;
    margin-top: 20px;
    padding: 7px 14px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
}


/* ==========================
   TABLET (max-width: 992px)
========================== */
@media (max-width: 992px) {
    .contant-box {
        flex-wrap: wrap;
        padding: 40px;
    }

    .contact-box-one,
    .contact-box-two {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-help p {
        flex: 0 0 45%; /* 2 items per row on tablet */
    }
}

/* ==========================
   MOBILE (max-width: 768px)
========================== */
@media (max-width: 768px) {
    .contant-box {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .contact-box-one,
    .contact-box-two {
        width: 100%;
    }

    .contact-help {
        flex-direction: column;
    }

    .contact-help p {
        flex: 1 1 100%; 
        margin-bottom: 10px;
    }

    .contact-help-box {
        font-size: 13px;
        padding: 8px 12px;
    }

    .contact-box h3 {
        font-size: 28px;
    }

    .contact-box-para {
        font-size: 16px;
    }
}

/* ==========================
   SMALL MOBILE (max-width: 480px)
========================== */
@media (max-width: 480px) {
    .contact-box h3 {
        font-size: 24px;
    }

    .contact-box-para {
        font-size: 14px;
    }

    .contact-help-box {
        font-size: 12px;
        padding: 7px 10px;
    }

    .contact-list {
        font-size: 14px;
    }
    #email-contact{
    display: none;
}
}


/* ==========================
              LINE
========================== */


.full-width {
    border: 6px solid transparent;  
    border-radius: 6px;           
    border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)) 1;
    margin-bottom: 30px;
}


/*==============FOOTER============*/
.footer{
    display: flex;
    gap: 20px;
    padding: 30px 5%;
    background-color: #fdfdfdff;
    color: #fff;
   
}
.footer1{
    width: 25%;
    padding-right: 30px;
    padding-left: -30px;
}
.footer2{
    width: 25%;
}
.footer3{
    width: 25%;
}
.footer4{
    width: 25%;
}
.footer4 p{
        padding-bottom: 5px;
        color: var(--accent-color)
}
.footer li{
    padding-bottom: 10px;
}
.footer h4{
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #000000;
}
.footer-four{
 margin-top: 10px;
}
.footer3 li{
    font-weight: 300;
}
.footer2 li{
    font-weight: 300;
}
.footer-line{
    width: 30%;
    margin-top: 13px;
    margin-bottom: 13px;
}
.footer-four li{
    padding-top: 10px;
}
.footer-links{
    font-weight: 300;
}
@media(max-width:768px){
    .footer{
        display:grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .footer1{
    width: 100%;
    }
    .footer2{
    width: 100%;
    }
    .footer3{
    width: 100%;
    }
    .footer4{
    width: 100%;
    }
        .footer li{
        padding-bottom: 10px;
    }
    .footer p{
        padding-bottom: 10px;
    }
    .last-section{
        display:flex;
        flex-wrap: wrap;
        text-align: center;
    }
    .last-section p{
        text-align: center !important;
        align-items: center;
        align-content: center;
        align-self: center;
    }
    .rate-text {
    margin-left: 20px;
    margin-bottom: 10px;
}

}
.last-section{
    display:flex;
    justify-content: space-between;
    background-color: #ebebebff;
    font-size: 12px;
    padding: 20px;
    padding-right: 70px;
    padding-left: 70px;
}
ul li a i {
  margin-right: 8px;
  font-size: 25px; 
  vertical-align: middle;
  color: var(--primary-color);
}
.social-links i{
    margin-right: 8px;
    font-size: 25px;
    color: var(--primary-color);
    cursor: pointer;
}
@media (min-width:768px) {
    .rate-text {
    margin-left: 70px;
    margin-bottom: 10px;
}
}

.rate-text a{
    color: #1100ffff !important;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}
#second{
    text-align: center !important;
    padding-left: 38px;
}
