/*======================================
        GOOGLE FONT & RESET
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#F8F6F2;
    color:#2B2B2B;
    overflow-x:hidden;
    line-height:1.7;
}

/*======================================
            ROOT COLORS
======================================*/

:root{

    --primary:#0B6E4F;
    --secondary:#1F2937;
    --accent:#C6A15B;
    --light:#F8F6F2;
    --white:#ffffff;
    --text:#2B2B2B;
    --shadow:0 20px 45px rgba(0,0,0,.08);

}

/*======================================
        GLOBAL SECTION
======================================*/

section{
    padding:110px 0;
}

.section-tag{

    display:inline-block;
    background:rgba(11,110,79,.12);
    color:var(--primary);
    padding:8px 22px;
    border-radius:50px;
    font-size:.85rem;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;

}

.section-heading{

    font-size:2.8rem;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:18px;

}

.section-heading span{

    color:var(--accent);

}

.section-subtitle{

    max-width:700px;
    margin:auto;
    color:#666;

}

/*======================================
            NAVBAR
======================================*/

.custom-navbar{

    background:rgba(255,255,255,.88);
    backdrop-filter:blur(18px);
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    padding:15px 0;
    transition:.4s;

}

.logo{

    width:220px;
    height:auto;
    display:block;

}

.navbar-nav .nav-link{

    color:var(--secondary);
    font-weight:500;
    margin-left:22px;
    position:relative;
    transition:.3s;

}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{

    color:var(--primary);

}

.navbar-nav .nav-link::after{

    content:"";
    position:absolute;
    width:0;
    height:2px;
    left:0;
    bottom:-5px;
    background:var(--accent);
    transition:.4s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*======================================
            HERO
======================================*/

.hero-section{

    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#F8F6F2 0%,#EDF3F0 100%);
    overflow:hidden;

}

.hero-tag{

    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:rgba(198,161,91,.15);
    color:var(--accent);
    font-weight:600;
    margin-bottom:20px;

}

.hero-section h1{

    font-size:3.6rem;
    font-weight:800;
    color:var(--secondary);
    line-height:1.2;
    margin-bottom:20px;

}

.hero-section p{

    font-size:1.05rem;
    color:#666;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.btn-main{

    background:var(--primary);
    color:#fff;
    padding:15px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    border:none;

}

.btn-main:hover{

    background:var(--accent);
    color:#fff;
    transform:translateY(-5px);

}

.btn-outline-custom{

    border:2px solid var(--primary);
    color:var(--primary);
    padding:15px 38px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;

}

.btn-outline-custom:hover{

    background:var(--primary);
    color:#fff;

}

/* Hero Icon */

.hero-icon-box{

    width:460px;
    height:460px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#0B6E4F,#1F2937);
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    box-shadow:var(--shadow);

}

.hero-icon{

    font-size:10rem;
    color:#fff;

}

.floating-icon{

    position:absolute;
    width:70px;
    height:70px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2rem;
    color:var(--primary);
    box-shadow:var(--shadow);
    animation:float 4s ease-in-out infinite;

}

.one{

    top:20px;
    left:40px;

}

.two{

    right:30px;
    top:60px;

}

.three{

    bottom:40px;
    left:40px;

}

.four{

    bottom:40px;
    right:40px;

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

/*======================================
            ABOUT SECTION
======================================*/

.about-section{

    background:#ffffff;

}

.about-section h2{

    font-size:2.7rem;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:20px;

}

.about-section h2 span{

    color:var(--primary);

}

.about-section p{

    color:#666;
    margin-bottom:18px;

}

.about-card{

    background:#fff;
    border-radius:20px;
    padding:30px 25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;

}

.about-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.about-icon{

    width:75px;
    height:75px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:2rem;

}

.about-card h5{

    font-weight:600;
    margin-bottom:12px;
    color:var(--secondary);

}

.stats-box{

    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;

}

.stats-box:hover{

    transform:translateY(-8px);

}

.stats-box h3{

    color:var(--primary);
    font-size:2.3rem;
    font-weight:700;

}

.stats-box p{

    margin:0;
    color:#666;

}

/*======================================
            SERVICES
======================================*/

.services-section{

    background:#F8F6F2;

}

.service-card{

    background:#fff;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    height:100%;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border:1px solid rgba(198,161,91,.15);

}

.service-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.service-icon{

    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:22px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:2.3rem;

}

.service-card h5{

    font-weight:600;
    margin-bottom:15px;
    color:var(--secondary);

}

.service-card p{

    color:#666;
    font-size:.95rem;

}

/*======================================
        DIGITAL DIVISION
======================================*/

.digital-section{

    background:linear-gradient(135deg,#0B6E4F,#1F2937);

}

.digital-card{

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:25px;
    padding:60px 40px;
    color:#fff;
    box-shadow:0 25px 60px rgba(0,0,0,.25);

}

.digital-icon{

    width:100px;
    height:100px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:3rem;
    color:var(--accent);

}

.digital-card h2{

    font-size:2.8rem;
    font-weight:700;
    margin-bottom:20px;

}

.digital-card p{

    color:#f2f2f2;

}

.digital-box{

    background:rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px 20px;
    transition:.4s;
    height:100%;

}

.digital-box:hover{

    transform:translateY(-10px);
    background:rgba(255,255,255,.15);

}

.digital-box i{

    font-size:2.5rem;
    color:var(--accent);
    margin-bottom:18px;
}

.digital-box h4{

    margin-bottom:15px;
    font-weight:600;

}

.digital-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

/*======================================
        CONTACT
======================================*/

.contact-section{

    background:#fff;

}

.contact-info,
.contact-form{

    background:#fff;
    padding:35px;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.contact-item{

    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;

}

.contact-icon{

    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:1.4rem;
    flex-shrink:0;

}

.contact-item h5{

    margin-bottom:6px;
    font-weight:600;
    color:var(--secondary);

}

.contact-item p{

    color:#666;
    margin:0;

}

.form-control{

    border-radius:14px;
    padding:15px;
    border:1px solid #ddd;

}

.form-control:focus{

    border-color:var(--primary);
    box-shadow:none;

}

/*======================================
            FOOTER
======================================*/

.footer{

    background:#1F2937;
    color:#fff;
    padding:80px 0 25px;

}

.footer-logo{

    width:220px;
    margin-bottom:20px;

}

.footer h5{

    color:var(--accent);
    margin-bottom:20px;
    font-weight:600;

}

.footer p{

    color:#d8d8d8;

}

.footer-links{

    list-style:none;
    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#d8d8d8;
    text-decoration:none;
    transition:.3s;

}

.footer-links a:hover{

    color:var(--accent);
    padding-left:5px;

}

.social-icons{

    display:flex;
    gap:15px;
    margin-top:20px;

}

.social-icons a{

    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.1);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:1.1rem;
    transition:.4s;
    text-decoration:none;

}

.social-icons a:hover{

    background:var(--accent);
    transform:translateY(-5px);

}

.footer-bottom{

    margin-top:30px;

}

.footer hr{

    border-color:rgba(255,255,255,.15);
}

/*======================================
            TOAST
======================================*/

.toast{

    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

.hero-section{

text-align:center;
padding-top:140px;

}

.hero-buttons{

justify-content:center;

}

.hero-icon-box{

width:340px;
height:340px;
margin-top:50px;

}

.hero-icon{

font-size:7rem;

}

.logo{

width:180px;

}

.section-heading{

font-size:2.2rem;

}

}

@media(max-width:768px){

.hero-section h1{

font-size:2.5rem;

}

.hero-icon-box{

width:280px;
height:280px;

}

.hero-icon{

font-size:5.5rem;

}

.floating-icon{

width:55px;
height:55px;
font-size:1.4rem;

}

.about-card,
.service-card,
.stats-box,
.contact-info,
.contact-form{

margin-bottom:20px;

}

.footer{

text-align:center;

}

.social-icons{

justify-content:center;

}

.digital-card{

padding:40px 25px;

}

.digital-card h2{

font-size:2rem;

}

}

@media(max-width:576px){

.hero-section h1{

font-size:2rem;

}

.section-heading{

font-size:1.8rem;

}

.hero-buttons{

flex-direction:column;

}

.btn-main,
.btn-outline-custom{

width:100%;

}

.hero-icon-box{

width:230px;
height:230px;

}

.hero-icon{

font-size:4.5rem;

}

}

/*======================================
            LOADER
======================================*/

#loader{

    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:#F8F6F2;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:opacity .8s ease,
               visibility .8s ease;

}

#loader.hide{

    opacity:0;
    visibility:hidden;

}

.loader-content{

    text-align:center;

}

.loader-logo{

    width:220px;
    max-width:80%;
    margin-bottom:25px;
    animation:logoFloat 2s ease-in-out infinite;

}

.loader-spinner{

    width:60px;
    height:60px;
    margin:25px auto;
    border:5px solid rgba(11,110,79,.15);
    border-top:5px solid var(--primary);
    border-radius:50%;
    animation:spin 1s linear infinite;

}

.loader-content h3{

    color:var(--secondary);
    font-weight:700;
    margin-top:10px;

}

.loader-content p{

    color:#666;
    margin-top:8px;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

@keyframes logoFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

}