:root{
    --primary-color:#ff4d29;
}


.bg-prime{
    background-color: var(--primary-color);
}
.color-prime{
    color: var(--primary-color);
}
.logo-img {
    width: 100px;
}

/* Mobile screens */
@media (max-width: 768px) {
   
    .bg-img-adjust{
        position:static;
         padding-bottom: 0px;
    }
   
}

@media (min-width: 500px) {

    .bg-img-adjust{
        height: 100vh;
       padding-bottom: 30px;
    }
}
@media (max-width: 450px) {

   .contact-card{
    padding: 20px !important;
   }
   .founder-image img{
       min-height: 270px !important;
   }
     .bg-img-adjust{
        height: 60vh;
        position:static;
         padding-bottom: 0px;
    }
  
}


.nav-li  a{
    font-weight: 600;
    font-size: 16px;
    color: black;
}

.custom-header{
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: white;
    backdrop-filter: blur(10px);

    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.header-contact{
    display:flex;
    align-items:center;
    gap:20px;
}

.contact-details{
    display:flex;
    flex-direction:column;
 
}

.contact-details div{
    font-size:18px;
    color:#1c2d3f;
    font-weight:500;
}

.contact-details i{
    margin-right:12px;
    color:#1c2d3f;
}

.header-btn{
    background:var(--primary-color);
    color:#fff;
    text-decoration:none;
    padding:10px 12px;
    border-radius:12px;
    font-size:15;
    font-weight:600;
    white-space:nowrap;
    transition:.3s;
    &:hover{
        color: wheat;
    }
}

.header-btn:hover{
    background:#ea7d54;
}

.header-btn i{
    margin-left:10px;
}

/* =========================
   Small Laptop
   Hide Contact Details
========================= */

@media(max-width:1200px){

    .contact-details{
        display:none;
    }

    .header-contact{
        gap:0;
    }
}

/* =========================
   Mobile
   Hide Everything
========================= */

@media(max-width:991px){

    .header-contact{
        display:none;
    }
}

.header-btn{
    font-size: 15px;
}

@media (min-width: 992px) {
  .menu .nav {
    display: flex;
    width: 93%;
  }
}
@media (min-width: 1200px) {
  .menu .nav {
    display: flex;
    width: 80%;
  }
}
.menu-btn{
      width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .8);
    cursor: pointer;
}

.menu-btn span{
    width: 23px;
    height: 2px;
    background: #222;
    border-radius: 2px;
}
.cross{
        color: black;
    font-weight: 700;
}

@media(max-width:768px){

  .masthead__image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

}

@media (max-width: 767px){
      .pt-service{
            padding-top: 100px;
        }
}
.header-btn:hover {
    transform: scale(1.08);
    color: white;
}
.fade-primary{
    background-color: #FCF7F4;
    border-bottom: 1px solid #f4c2a5;
    border-top: 1px solid #f4c2a5;
}
.team-section{
    padding:100px 0;
}

/* Founder Section */

.founder-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    margin-bottom:60px;
}

.founder-image img{
    width:100%;
    height:100%;
    min-height:340px;
    object-fit:cover;
}

.founder-content{
    padding:50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.founder-tag{
    color:#f47c52;
    font-weight:700;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:15px;
}

.founder-content h3{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.founder-content p{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/* Experts Heading */

.experts-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-bottom:40px;
}

.experts-heading span{
    width:80px;
    height:2px;
    background:#f47c52;
}

.experts-heading h4{
    margin:0;
    color:#f47c52;
    font-size:20px;
    font-weight:700;
}

/* Expert Cards */

.experts-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.expert-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    display:flex;
    gap:25px;
    align-items:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.expert-card:hover{
    transform:translateY(-8px);
}

.expert-img img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #f47c52;
}

.expert-content h3{
    margin:0 0 8px;
    font-size:28px;
    font-weight:700;
}

.expert-content span{
    color:#f47c52;
    font-weight:600;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:1px;
    display:block;
    margin-bottom:15px;
}

.expert-content p{
    margin:0;
    color:#666;
    line-height:1.8;
}

/* Tablet */

@media(max-width:991px){

    .founder-box{
        grid-template-columns:1fr;
    }

    .founder-content{
        padding:35px;
    }

    .founder-content h3{
        font-size:32px;
    }

    .experts-grid{
        grid-template-columns:1fr;
    }
}

/* Mobile */

@media(max-width:768px){

    .team-section{
        padding:80px 0;
    }

    .expert-card{
        flex-direction:column;
        text-align:center;
    }

    .expert-img img{
        width:120px;
        height:120px;
    }

    .founder-content h3{
        font-size:28px;
    }
}

@media(max-width:480px){

    .team-section{
        padding:60px 0;
    }

    .founder-content{
        padding:25px;
    }

    .founder-content h3{
        font-size:24px;
    }

    .expert-content h3{
        font-size:22px;
    }

    .experts-heading span{
        width:40px;
    }
}
.border-top-0{
    border-top: 0;
}
.font-black{
    color: black !important;
}
.contact-details a:hover{
    color: var(--primary-color) !important;
}

.footer__item a:hover{
    color: var(--primary-color);
}

@media(min-width:700px) {
    .master-head-padding{
    padding: 10rem;
}
}

.contact-section{
    padding:100px 0;
    background:#f8f8f8;
}

.container-form{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#f47c52;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
    font-weight:700;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#666;
}

.contact-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:60px;
}

.contact-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-8px);
}

.contact-card i{
    font-size:34px;
    color:#f47c52;
    margin-bottom:20px;
}

.contact-card h4{
    margin-bottom:15px;
    font-weight:700;
}

.contact-card a{
    color:#222;
}

.contact-form-box{
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-form-box h3{
    margin-bottom:30px;
    font-size:32px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    border:1px solid #ddd;
    border-radius:12px;
    padding:15px 18px;
    outline:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#f47c52;
}

.contact-btn{
    background:#f47c52;
    color:#fff;
    border:none;
    padding:15px 40px;
    border-radius:10px;
    font-weight:600;
    cursor:pointer;
}

.contact-btn:hover{
    opacity:.9;
}

.map-section{
    margin-top:60px;
}

.map-section iframe{
    width:100%;
    height:500px;
    border:none;
    border-radius:20px;
}

.contact-cta{
    margin-top:60px;
    background:#111827;
    color:#fff;
    text-align:center;
    padding:70px 40px;
    border-radius:25px;
}

.contact-cta h2{
    font-size:38px;
    margin-bottom:15px;
}

.contact-cta p{
    max-width:650px;
    margin:auto;
    color:#ddd;
}

.cta-btn{
    display:inline-block;
    margin-top:25px;
    background:#f47c52;
    color:#fff;
    padding:15px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:991px){

    .contact-cards{
        grid-template-columns:1fr;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:32px;
    }

    .contact-form-box{
        padding:30px;
    }
} 

.contact-card a{
background-color: unset;
}
.contact-card a:hover{
background-color: unset;
color: var(--primary-color);
font-weight: 500;
}

.lower{
    text-transform: lowercase !important;
}

.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37,211,102,.35);
    z-index: 4800;
    transition: all .3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform: translateY(-4px) scale(1.08);
    color: #fff;
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:768px){
    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:30px;
        bottom:20px;
        right:20px;
    }
}