@charset "utf-8";

/* ==========================
   GOOGLE FONT
========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
    background:#fff;
}






/* SUCCESS POPUP */

.success-popup{
    border:none;
    border-radius:20px;
    overflow:hidden;
}

.success-icon{
    font-size:70px;
    color:#28a745;
    margin-bottom:15px;
    animation:popupIcon .8s ease;
}

.success-popup h3{
    font-weight:700;
    margin-bottom:10px;
}

/* ERROR POPUP */

.error-popup{
    border:none;
    border-radius:20px;
}

.error-icon{
    font-size:70px;
    color:#dc3545;
    margin-bottom:15px;
    animation:popupIcon .8s ease;
}

@keyframes popupIcon{

    0%{
        transform:scale(0);
    }

    80%{
        transform:scale(1.2);
    }

    100%{
        transform:scale(1);
    }

}






/* ==========================
   TOP BAR
========================== */

.top-bar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#000;
    color:#fff;
    padding:10px 0;
    font-size:14px;
    z-index:9999;
}

/* Mail & Phone Links */

.top-left a{
    color:#fff;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-right:20px;
    transition:.3s;
}

.top-left a:hover{
    color:#c0c0c0;
}

.top-left a i{
    font-size:14px;
    min-width:16px;
}

/* Social Icons */

.top-right a{
    color:#fff;
    text-decoration:none;
    margin-left:8px;
    transition:.3s;
}

.top-right a:hover{
    color:#c0c0c0;
}

.top-right a i{
    font-size:14px;
}
/* ==========================
   HEADER
========================== */


.main-header{
    position:fixed;
    top:40px;
    left:0;
    width:100%;
    background:#fff;
    z-index:9998;
    transition:.4s;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    padding:5px 0;
}

.navbar{
    padding:0;
}

.logo-area img{
    height:75px;
    width:auto;
    display:block;
	margin-top:10px;
}




.logo-area{
    display:flex;
    align-items:center;
    text-decoration:none;
}


.logo-text h5{
    font-size:18px;
    color:#000;
    font-weight:700;
    margin-bottom:2px;
}

.logo-text p{
    margin:0;
    color:#666;
    font-size:13px;
}

.navbar-nav .nav-link{
    color:#222 !important;
    font-weight:500;
    margin:0 10px;
    position:relative;
}

.navbar-nav .nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#c0c0c0;
    transition:.4s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

.enquiry-btn{
    background:#000;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    font-weight:600;
    margin-left:20px;
    transition:.4s;
}

.enquiry-btn:hover{
    background:#c0c0c0;
    color:#000;
    transform:translateY(-3px);
}

@media (max-width:768px){

    .main-header{
        top:0;
    }

    .navbar{
        padding:8px 0;
    }

    .logo-area{
        align-items:center;
    }

    .logo-area img{
        height:55px;
        max-height:none;
        width:auto;
        margin-right:10px;
        object-fit:contain;
        display:block;
		margin-top:10px;
    }

    .logo-text h5{
        font-size:14px;
        margin-bottom:2px;
    }

    .logo-text p{
        font-size:10px;
        line-height:1.2;
    }

}

/* ==========================
   CUSTOM DROPDOWN
========================== */

.dropdown-custom{
    position:relative;
}

.dropdown-menu-custom{

    position:absolute;
    top:100%;
    left:0;

    min-width:260px;

    background:#fff;

    padding:10px 0;

    list-style:none;

    border-radius:8px;

    border:1px solid #ececec;

    box-shadow:
        0 8px 20px rgba(0,0,0,.12),
        0 20px 45px rgba(0,0,0,.18);

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:.35s ease;

    z-index:9999;
}
.dropdown-menu-custom li{
    border-bottom:1px solid #ececec;
}

.dropdown-menu-custom li:last-child{
    border-bottom:none;
}

.dropdown-menu-custom li a{
    display:block;
    padding:12px 20px;
    color:#222;
    text-decoration:none;
    font-size:14px;
    transition:all .3s ease;
}

.dropdown-menu-custom li a:hover{
    background:#f8f8f8;
    padding-left:28px;
    color:#000;
}

/* Hover Open */

.dropdown-custom:hover .dropdown-menu-custom{

    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

/* Arrow Rotate */

.dropdown-custom .fa-angle-down{
    transition:.3s;
}

.dropdown-custom:hover .fa-angle-down{
    transform:rotate(180deg);
}







/* ==========================
   HERO SLIDER
========================== */

.hero-slider{
    margin-top:118px;
}

.carousel-item{
    height:100vh;
    min-height:700px;
    position:relative;
}

.carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 7s ease;
}

.carousel-item.active img{
    transform:scale(1.1);
}

.slider-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.35);
	 pointer-events:none;
}

.carousel-caption{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;

    width: 90%;
    max-width: 850px;

    padding: 35px 40px;

    text-align: center;
    z-index: 99;

    /* Gray transparent box */
    background: rgba(80, 80, 80, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
}

.carousel-caption h1{
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    animation: slideUp 1s ease;
}

.carousel-caption p{
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
}


.slider-btn{
    display:inline-block;
    margin-top:25px;
    background:#fff;
    color:#000;
    text-decoration:none;
    padding:15px 35px;
    font-weight:600;
    transition:none;
}





.slider-btn:hover{
    background:#c0c0c0;
    color:#000;
}






.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:#000;
    border-radius:50%;
    padding:20px;
}




.carousel-item{
    position:relative;
}

.slider-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.35);
    pointer-events:none;
    z-index:1;
}

.carousel-caption{
    position:absolute;
    z-index:10 !important;
    pointer-events:auto;
}

.slider-btn{
    position:relative;
    z-index:9999 !important;
    pointer-events:auto;
}










/* ==========================
   SLIDER BULLETS
========================== */

.carousel-indicators{
    bottom:30px;
}

.carousel-indicators button{

    width:14px !important;
    height:14px !important;

    border-radius:50%;

    background:#000 !important;

    border:2px solid #000 !important;

    margin:0 6px !important;

    opacity:1 !important;

    transition:.4s;
}

/* Active Bullet */

.carousel-indicators .active{

    background:#fff !important;

    border:2px solid #fff !important;

    transform:scale(1.3);

    box-shadow:
        0 0 10px rgba(255,255,255,.7);

}

/* ==========================
   SLIDER BULLETS HOVER
========================== */

.carousel-indicators button:hover{

    background:#fff !important;

    border:2px solid #fff !important;

    transform:scale(1.25);

    box-shadow:
        0 0 10px rgba(255,255,255,.6),
        0 0 20px rgba(255,255,255,.4);

}




/* ==========================
   FLOATING BUTTONS
========================== */

.floating-buttons{
    position:fixed;
    right:20px;
    top:250px;
    z-index:99999;
}

.whatsapp-btn,
.call-btn{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:28px;
    border-radius:8px;
    margin-bottom:12px;
}

.whatsapp-btn{
    background:#25D366;
    animation:pulse 2s infinite;
}

.call-btn{
    background:#000;
}

.call-wrapper{
    position:relative;
}

.call-number{
    position:absolute;
    right:75px;
    top:12px;
    background:#000;
    color:#fff;
    padding:10px 15px;
    border-radius:5px;
    white-space:nowrap;
    opacity:0;
    visibility:hidden;
    transition:.4s;
}

.call-wrapper:hover .call-number{
    opacity:1;
    visibility:visible;
}


/* ==========================
   FEATURES SECTION
========================== */

.features{
    background:#f4f4f4;
    padding:50px 0;
}

.feature-column{

    position:relative;
}

/* Vertical Separator Line */

.feature-column::after{
    content:'';
    position:absolute;
    top:10%;
    right:0;
    width:1px;
    height:80%;
    background:rgba(0,0,0,.25);
}

/* Last Column Line Remove */

.feature-column:last-child::after{
    display:none;
}

.feature-box{
    text-align:center;
    padding:20px 30px;
    transition:.4s ease;
}

.feature-icon{
    width:75px;
    height:auto;
    margin-bottom:20px;
    transition:.4s ease;
}

.feature-box h3{
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
    color:#000;
}

.feature-box p{
    font-size:15px;
    line-height:1.8;
    color:#333;
    margin:0;
}

/* Hover Effect */

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box:hover .feature-icon{
    transform:scale(1.12);
    filter:drop-shadow(0 0 12px rgba(192,192,192,.7));
}

.feature-box:hover h3{
    color:#777;
}

/* Mobile */

@media(max-width:991px){

    .feature-column::after{
        display:none;
    }

    .feature-box{
        margin-bottom:30px;
    }

}

/* ==========================
   ANIMATIONS
========================== */

@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.1);}
    100%{transform:scale(1);}
}

/* ==========================
   STICKY EFFECT
========================== */

.main-header.scrolled{
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}





/* ==========================
   MOBILE RESPONSIVE
========================== */





/* ==========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:991px){

    /* Top Bar */

    .top-bar{
        display:block;
        padding:6px 0;
        font-size:11px;
    }

    .top-left{
        text-align:center;
    }

    .top-left a{
        margin-right:10px;
        display:inline-block;
    }

    .top-right{
        display:none;
    }

    /* Header */

    .main-header{
        top:35px;
        padding:0;
    }

    .navbar{
        padding:8px 0;
    }

    /* Logo */

    .logo-area{
        display:flex;
        align-items:center;
        width:auto;
    }

    .logo-area img{
        width:60px;
        height:auto;
        margin-right:10px;
    }

    .logo-text{
        display:block !important;
    }

    .logo-text h5{
        font-size:13px;
        line-height:18px;
        font-weight:700;
        margin-bottom:2px;
    }

    .logo-text p{
        font-size:10px;
        line-height:14px;
        margin:0;
    }

    /* Hero */

    .hero-slider{
        margin-top:120px;
    }

    .carousel-item{
        height:80vh;
        min-height:500px;
    }

    .carousel-caption h1{
        font-size:36px;
    }

    .carousel-caption p{
        font-size:18px;
    }

    

    .enquiry-btn{
        display:inline-block;
        margin:15px 0;
        width:100%;
        text-align:center;
    }



}

/* Small Mobile */

@media(max-width:576px){

    .logo-area img{
        width:50px;
        margin-right:8px;
    }

    .logo-text h5{
        font-size:11px;
        line-height:15px;
    }

    .logo-text p{
        font-size:9px;
        line-height:12px;
    }

    .top-bar{
        font-size:10px;
    }

}

/* Extra Small Mobile */

@media(max-width:400px){

    .logo-area img{
        width:45px;
    }

    .logo-text h5{
        font-size:10px;
    }

    .logo-text p{
        font-size:8px;
    }

    .top-left a{
        display:block;
        margin:2px 0;
    }

    .hero-slider{
        margin-top:135px;
    }

}
















.carousel-item.active .carousel-caption h1{
    animation:slideUp 1s ease forwards;
}

.carousel-item.active .carousel-caption p{
    animation:slideLeft 1.2s ease forwards;
}

.carousel-item.active .slider-btn{
    animation:pulseButton 1.5s ease forwards;
}

@keyframes pulseButton{
    0%{
        opacity:0;
        transform:scale(.7);
    }
    100%{
        opacity:1;
        transform:scale(1);
    }
}




/* ==========================
   ENQUIRY MODAL POPUP
========================== */

/* ==========================================
   ENQUIRY MODAL POPUP
========================================== */

.modal{
    z-index:99999;
}

.modal-backdrop{
    z-index:99990;
}

.modal-backdrop.show{
    opacity:.85;
}

.modal-dialog{
    max-width:550px;
    display:flex;
    align-items:center;
    min-height:100vh;
    margin:0 auto;
    padding:20px;
}

.modal.fade .modal-dialog{
    transform:none;
}

.modal.show .modal-dialog{
    transform:none;
}

/* ==========================================
   MODAL BOX
========================================== */

.enquiry-modal{
    position:relative;
    z-index:100000;

    border:none;
    border-radius:20px;
    overflow:hidden;
    background:#fff;

    box-shadow:
        0 25px 80px rgba(0,0,0,.35),
        0 0 25px rgba(192,192,192,.30);

    animation:popupZoom .4s ease;
}

/* ==========================================
   MODAL HEADER
========================================== */

.enquiry-modal .modal-header{
    background:linear-gradient(135deg,#999,#2a2a2a);
    color:#fff;
    border:none;
    padding:25px;
    position:relative;
    justify-content:center;
}

.enquiry-modal .modal-header::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;

    background:linear-gradient(
        90deg,
        #8f8f8f,
        #ffffff,
        #8f8f8f
    );
}

.enquiry-modal .modal-title{
    width:100%;
    text-align:center;
    font-size:24px;
    font-weight:700;
    letter-spacing:.5px;
}

/* ==========================================
   CLOSE BUTTON
========================================== */

.enquiry-modal .btn-close{

    filter:invert(1);
    opacity:1;

    position:absolute;
    top:18px;
    right:18px;

    width:38px;
    height:38px;

    border-radius:50%;

    transition:all .35s ease;
}

/* Hover */

.enquiry-modal .btn-close:hover{

   
    filter:invert(1);

   

    transform:rotate(180deg) scale(1.15);

    box-shadow:
        0 0 15px rgba(255,255,255,.25);

}
/* Click */

.enquiry-modal .btn-close:active{

    transform:scale(.90);

}

/* ==========================================
   MODAL BODY
========================================== */

.enquiry-modal .modal-body{
    background:#fff;
    padding:35px;
}

/* ==========================================
   FORM FIELDS
========================================== */

.enquiry-modal .form-control{
    height:55px;
    border:1px solid #dcdcdc;
    border-radius:10px;

    box-shadow:none;

    padding:12px 15px;

    font-size:15px;

    transition:all .3s ease;
}

.enquiry-modal textarea.form-control{
    height:140px;
    resize:none;
    padding-top:15px;
}

.enquiry-modal .form-control::placeholder{
    color:#888;
}

.enquiry-modal .form-control:focus{

    border-color:#c0c0c0;

    box-shadow:
        0 0 0 3px rgba(192,192,192,.15),
        0 0 20px rgba(192,192,192,.30);

}


/* Input Animation */

.enquiry-modal .form-control{
    transition:all .35s ease;
}

/* Placeholder Animation */

.enquiry-modal .form-control::placeholder{
    color:#888;
    transition:all .35s ease;
}

/* Focus Effect */

.enquiry-modal .form-control:focus::placeholder{

    opacity:0;

    transform:translateX(20px);

}




/* ==========================================
   SUBMIT BUTTON
========================================== */

.submit-btn{

    width:100%;
    height:55px;

    border:none;
    border-radius:10px;

    background:linear-gradient(135deg,#999,#2a2a2a);
    color:#fff;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:.4s;
}

.submit-btn:hover{

    background:#c0c0c0;
    color:#000;

    transform:translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.15);

}

/* ==========================================
   POPUP ANIMATION
========================================== */

@keyframes popupZoom{

    from{
        opacity:0;
        transform:scale(.85);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .modal-dialog{
        margin:15px;
        padding:10px;
    }

    .enquiry-modal .modal-body{
        padding:20px;
    }

    .enquiry-modal .modal-title{
        font-size:20px;
    }

    .enquiry-modal .form-control{
        height:50px;
        font-size:14px;
    }

    .enquiry-modal textarea.form-control{
        height:120px;
    }

    .submit-btn{
        height:50px;
        font-size:15px;
    }

    .enquiry-modal .btn-close{
        width:34px;
        height:34px;
    }

}





/* =====================================
   FEATURE SCROLL ANIMATION
===================================== */

/* =====================================
   FEATURE WAVE ANIMATION
===================================== */

.feature-box{
    opacity:0;
    transform:translateY(80px) scale(.9);
    will-change:transform, opacity;
}

/* Active */

.feature-box.show{
    animation:waveUp .9s cubic-bezier(.175,.885,.32,1.275) forwards;
}

/* Icon */

.feature-icon{
    width:75px;
    height:auto;
    margin-bottom:20px;
    transition:.5s;
}

.feature-box.show .feature-icon{
    animation:iconFloat 1s ease forwards;
}

.feature-box:hover .feature-icon{
    transform:scale(1.12);
}

/* Heading */

.feature-box h3{
    transition:.4s;
}

.feature-box:hover h3{
    color:#777;
}

/* Main Wave Animation */

@keyframes waveUp{

    0%{
        opacity:0;
        transform:translateY(80px) scale(.9);
    }

    60%{
        opacity:1;
        transform:translateY(-10px) scale(1.02);
    }

    100%{
        opacity:1;
        transform:translateY(0) scale(1);
    }

}

/* Icon Float */

@keyframes iconFloat{

    0%{
        opacity:0;
        transform:translateY(25px) rotate(-10deg);
    }

    100%{
        opacity:1;
        transform:translateY(0) rotate(0deg);
    }

}


/* ==========================
   FLOATING BUTTONS
========================== */

.floating-buttons,
.scroll-top-btn{
    opacity:0;
    animation:fadeInButtons 1.2s ease forwards;
}


.floating-buttons{

    position:fixed;
    right:20px;
    top:250px;
    z-index:99999;

    opacity:0;

    animation:fadeInButtons 1.2s ease forwards;
    animation-delay:.5s;
}



/* Delay Effects */

.floating-buttons{
    animation-delay:.5s;
}

.scroll-top-btn{
    animation-delay:1s;
}

/* Fade In Animation */

@keyframes fadeInButtons{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ==========================
   SCROLL TO TOP
========================== */

.scroll-top-btn{

    position:fixed;

    right:20px;
    bottom:20px;

    width:55px;
    height:55px;

    background:#000;
    color:#fff;

    border-radius:8px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:24px;

    z-index:99999;

    box-shadow:
        0 10px 25px rgba(0,0,0,.25);

    transition:.4s;
}

/* Hover */

.scroll-top-btn:hover{

    background:#999;
    color:#fff;

    transform:translateY(-5px);

}

/* Icon Animation */

.scroll-top-btn i{

    animation:upBounce 1.5s infinite;

}

@keyframes upBounce{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-5px);
    }

}


/* ==========================
   ABOUT SECTION
========================== */

.about-section{

    position:relative;

    background:#fff;

    

    box-shadow:
        0 10px 30px rgba(0,0,0,.08),
        0 20px 60px rgba(0,0,0,.12);

}
.about-image{
    height:100%;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.about-content{
    padding:60px;
}

/* Heading */

.about-title{

    position:relative;

    display:inline-block;

    font-size:25px;
    font-weight:300;

    letter-spacing:2px;

    color:#000;

    margin-bottom:40px;
}

/* Animated Line */

.about-title::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-12px;

    width:110px;
    height:2px;

    background:#000;

    transform:scaleX(0);
    transform-origin:left;

    transition:1.2s ease;
}

.about-title.animate::after{
    transform:scaleX(1);
}

/* Paragraph */

.about-content p{

    font-size:14px;

    line-height:2;

    color:#333;

    margin-bottom:20px;
}

/* Info Area */

.about-info{

    display:flex;

    justify-content:space-between;

    gap:40px;

    margin-top:40px;
}

.info-box{

    text-align:center;

    flex:1;
}

.info-box img{

    width:65px;

    margin-bottom:15px;

    transition:.4s;
}

.info-box:hover img{

    transform:translateY(-8px) scale(1.08);
}

.info-box h4{

    font-size:15px;

    font-weight:700;

    margin-bottom:15px;

    text-decoration:underline;
}

.info-box p{

    font-size:14px;

    line-height:1.8;
}

/* ==========================
   READ MORE BUTTON
========================== */

.read-more-btn{

    position:absolute;

    left:-60px;     

    bottom:100px;

    background:#000;
    color:#fff;

    text-decoration:none;

    padding:18px 38px;

    font-size:14px;
    font-weight:600;

    letter-spacing:1px;

    overflow:hidden;

    z-index:10;

    transition:.4s ease;
}
/* Shine Effect */

.read-more-btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );

    transition:.8s;
}

.read-more-btn:hover::before{
    left:120%;
}

.read-more-btn:hover{

    color:#fff;

    background:#222;

    transform:translateY(-5px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.25);
}

.about-content{
    padding:60px;
    position:relative;
}


.info-box img{
    width:38px;
    height:38px;
}


/* ==========================
   IMAGE HOVER EFFECT
========================== */

.about-image{
    overflow:hidden;
}

.about-image img{
    transition:1.5s ease;
}

.about-image:hover img{
    transform:scale(1.08);
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

    .about-content{
        padding:40px 30px;
    }

    .about-title{
        font-size:40px;
    }

    .about-info{
        flex-direction:column;
        gap:25px;
    }
	
	

    .read-more-btn{

        position:relative;

        left:0;
        bottom:0;

        margin-top:25px;

        display:inline-block;
    }


	

}

@media(max-width:768px){

    .about-title{
        font-size:34px;
    }

    .about-content p{
        font-size:15px;
        line-height:1.9;
    }

}




.services-section{
    padding:80px 0 0;
    background:#fff;
}

.service-heading{
    text-align:center;
    margin-bottom:50px;
}

.service-heading h2{
    font-size:25px;
    font-weight:600;
    letter-spacing:2px;
    position:relative;
    display:inline-block;
    margin-bottom:20px;
}

.service-heading p{
    
    margin:20px auto 0;
    line-height:1.9;
    text-align:center;
	font-size:14px;
}

.service-heading h2::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:-15px;

    width:0;
    height:2px;

    background:#000;

    transform:translateX(-50%);
    transition:1.2s ease;
}

/* Animate when visible */

.service-heading.animate h2::after{
    width:120px;
}



.services-bg{
    background: url(../images/services-bg.jpg) center center/cover;
    position:relative;
    padding:60px 0;
}

.services-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.services-slider{
    position:relative;
    min-height:820px;
}

.service-slide{
    position:absolute;
    width:100%;
    opacity:0;
    visibility:hidden;
    transform:translateY(100px);
    transition:.8s ease;
}

.service-slide.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.service-box{
    background:#fff;
    padding:25px 20px;
    border-radius:15px;
    text-align:center;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-icon{
    width:55px;
    height:55px;
    object-fit:contain;
    display:block;
    margin:0 auto 15px;
}

.service-box h4{
    font-size:16px;
	font-weight:bold;
    
    line-height:1.4;
    margin-bottom:10px;
    min-height:60px; /* പഴയ 85px ന് പകരം */
}

.service-box p{
    font-size:14px;
    line-height:1.7;
    color:#666;
    margin-bottom:12px;
    min-height:auto; /* പഴയ 80px remove */
}

.service-readmore{
    display:inline-flex;
    align-items:center;
    gap:0;
     color:#222;
    
    text-decoration:none;
    transition:.3s;
}

.service-readmore span{
    opacity:0;
    margin-left:-8px;
    transition:.3s ease;
}

.service-readmore:hover{
    color:#666;
}

.service-readmore:hover span{
    opacity:1;
    margin-left:8px;
}


@media(max-width:991px){

    .services-slider{
        min-height:auto;
    }

    .service-slide{
        position:relative;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
    }

    .service-slide.active{
        display:block;
    }

    .service-arrows{
        position:relative;
        right:auto;
        top:auto;
        transform:none;
        text-align:center;
        margin-top:20px;
    }

    .service-arrows button{
        display:inline-block;
        margin:0 5px;
    }

}



/* =========================
   COUNTER SECTION
========================= */

.counter-section{
    background:#e8ebe8;
    padding:90px 0;
}

.counter-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

/* LEFT BOX */

.counter-contact{
    background:#000;
    color:#fff;
    padding:45px;
    width:420px;
    min-height:280px;
}

.counter-contact h2{
    font-size:20px;
    margin-bottom:20px;
    font-weight:500;
}

.counter-contact p{
    line-height:1.9;
    margin-bottom:30px;
}

.counter-btn{
    display:inline-block;
    background:#d9d9d9;
    color:#000;
    padding:14px 28px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.counter-btn:hover{
    background:#fff;
    transform:translateY(-5px);
}

/* COUNTERS */

.counter-box{
    flex:1;
    text-align:center;
    position:relative;
}

.counter-box:not(:last-child)::after{
    content:'';
    position:absolute;
    right:0;
    top:20px;
    width:1px;
    height:180px;
    background:#ddd;
}

.counter-icon{
    font-size:50px;
    margin-bottom:10px;
    animation:blinkZoom 2s infinite;
}

.counter-box h3{
    font-size:50px;
    font-weight:400;
    margin-bottom:10px;
    font-family:serif;
}

.counter-box span{
    display:block;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

/* ICON ANIMATION */

@keyframes blinkZoom{

    0%{
        transform:scale(1);
        opacity:1;
    }

    50%{
        transform:scale(1.25);
        opacity:.5;
    }

    100%{
        transform:scale(1);
        opacity:1;
    }

}

/* NUMBER GLOW */

.counter-box h3{
    animation:numberPulse 2s infinite;
}

@keyframes numberPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}

/* MOBILE */



@media(max-width:991px){

    .counter-wrapper{
        display:flex;
        flex-wrap:wrap;
        gap:20px;
    }

    .counter-contact{
        width:100%;
        margin-bottom:20px;
    }

    .counter-box{
        width:calc(50% - 10px);
        flex:none;
        padding:20px 10px;
    }

    .counter-box h3{
        font-size:42px;
    }

    .counter-icon{
        font-size:45px;
    }

    .counter-box span{
        font-size:12px;
        letter-spacing:1px;
    }

    .counter-box::after{
        display:none;
    }
}
@media(max-width:480px){

    .counter-contact{
        padding:25px;
    }

    .counter-contact h2{
        font-size:24px;
    }

    .counter-box{
        width:calc(50% - 10px);
    }

    .counter-box h3{
        font-size:34px;
    }

    .counter-icon{
        font-size:38px;
    }

}






/* ===========================
WHY CHOOSE SECTION
=========================== */

.why-choose-section{
    background:#efefef;
    padding:90px 0 220px;
    position:relative;
    z-index:1;
}




.why-content-wrapper{
   
	background:#fff;
    position:relative;
    z-index:2;
}




/* Heading */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:25px;
    font-weight:500;
    letter-spacing:2px;
    position:relative;
    display:inline-block;
    padding-bottom:15px;
}

.section-title h2::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:0;

    width:0;
    height:2px;

    background:#000;

    transform:translateX(-50%);
    transition:width 1.2s ease;
}

/* Active */

.section-title.animate-line h2::after{
    width:120px;
}

@keyframes lineGrow{
    from{width:0;}
    to{width:120px;}
}

.section-title p{
    max-width:1100px;
    margin:20px auto 0;
    line-height:1.9;
    font-size:18px;
}

/* Background Area */

.why-bg{
    background:url('../images/why-bg.jpg') center center;
    background-size:cover;
    position:relative;

    padding:40px;

    margin-top:-170px;   /* overlap amount */

    box-shadow:0 25px 60px rgba(0,0,0,.25);

    z-index:10;

    border-radius:4px;
}
.why-bg::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);
}

.why-top,
.why-points{
    position:relative;
    z-index:2;
}

/* Top Cards */

.why-top{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:60px;
}

.why-card{
    background:#f4f4f4;
    padding:30px;
    display:flex;
    align-items:center;
    gap:25px;
    min-height:180px;
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card img{
    width:80px;
}

.why-card h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.why-card p{
    margin:0;
    line-height:1.8;
    color:#444;
}

/* Bottom Points */

.why-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px 60px;
}

.point{
    display:flex;
    align-items:flex-start;
    gap:20px;
    color:#fff;
    font-size:18px;
    line-height:1.9;
}

.point i{
    font-size:46px;
    color:#fff;
    margin-top:3px;
}

/* Scroll Animation */

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* Mobile */

@media(max-width:991px){

    .why-choose-section{
        padding:70px 0 100px;
    }

    .why-top{
        grid-template-columns:1fr;
    }

    .why-points{
        grid-template-columns:1fr;
    }

    .why-card{
        flex-direction:column;
        text-align:center;
    }

    .why-card img{
        width:65px;
    }

    .point{
        font-size:16px;
    }

    .point i{
        font-size:36px;
    }

    .why-bg{
        padding:25px;
    }
	
.why-bg{
    padding:25px;
    margin-top:-60px;
}	
	
}


/* ==========================
CLIENT SECTION
========================== */

.clients-section{
    background:#efefef;
    padding:80px 0;
}

.client-heading{
    text-align:center;
    margin-bottom:50px;
}

.client-heading h2{
    font-size:25px;
    font-weight:500;
    letter-spacing:2px;
    display:inline-block;
    position:relative;
    padding-bottom:15px;
}

.client-heading h2::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:2px;
    background:#000;
    transform:translateX(-50%);
    transition:1.2s;
}

.client-heading.active h2::after{
    width:120px;
}

/* Logo Slider */

.client-slider{
    overflow:hidden;
    width:100%;
}

.client-track{
    display:flex;
    width:max-content;
    animation:logoMove 25s linear infinite;
}

.client-slider:hover .client-track{
    animation-play-state:paused;
}

.logo-box{
    width:190px;
    height:100px;

    background:#efefef;

    border:1px solid #d8d8d8;

    display:flex;
    justify-content:center;
    align-items:center;

    margin:0 12px;
}

.logo-box img{
    max-width:160px;
    max-height:75px;
}

/* ==========================
FOOTER
========================== */

.footer-section{

    background:linear-gradient(
    90deg,
    #232323,
    #2e2e2e,
    #232323);

    color:#fff;

    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1.2fr;
    gap:60px;
}
.footer-column{
    opacity:0;
    transform:translateY(50px);
    transition:1s;
}

.footer-column.show{
    opacity:1;
    transform:translateY(0);
}

.footer-title{

    font-size:22px;
    font-weight:400;
    letter-spacing:2px;

    display:inline-block;
    position:relative;

    margin-bottom:30px;
    padding-bottom:10px;
}

.footer-title::after{

    content:'';
    position:absolute;

    left:0;
    bottom:0;

    width:0;
    height:1px;

    background:#fff;

    transition:1s;
}

.footer-column.show .footer-title::after{
    width:90px;
}

.footer-column p{
    color:#e0e0e0;
    line-height:2;
}

.footer-column ul{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-column ul li{
    margin-bottom:14px;
}

.footer-column ul li a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-column ul li a:hover{
    padding-left:8px;
}

/* Newsletter */

.newsletter{

    display:flex;
    margin-top:30px;
}

.newsletter input{

    flex:1;

    border:none;
    outline:none;

    background:#000;

    color:#fff;

    padding:18px;
}

.newsletter button{

    width:70px;

    border:none;

    background:#000;

    color:#fff;

    font-size:28px;

    cursor:pointer;
}

/* Copyright */

.copyright{

    margin-top:60px;

    background:#000;

    text-align:center;

    padding:25px;

    font-size:16px;
}






/* Slider Animation */

@keyframes logoMove{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* Mobile */

@media(max-width:991px){

  

    .logo-box{
        width:180px;
        height:100px;
    }

    .logo-box img{
        max-width:120px;
    }

    .footer-title{
        font-size:20px;
    }

}

@media (max-width:991px){

    .footer-grid{
        grid-template-columns:1.2fr 1fr 1.2fr;
        gap:20px;
    }

    .footer-title{
        font-size:18px;
        margin-bottom:15px;
    }

    .footer-column p,
    .footer-column li a,
    .contact-info p{
        font-size:13px;
        line-height:1.6;
    }

  

.newsletter{
        max-width:220px;
    }

    .newsletter input{
        height:40px;
        padding:0 12px;
        font-size:13px;
    }

    .newsletter button{
        width:40px;
        height:40px;
        font-size:14px;
    }



}
@media (max-width:575px){
 .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:15px;
		margin-top:-50px;
    }

    .footer-column{
        margin-bottom:0;
    }

    .footer-title{
        font-size:16px;
        margin-bottom:10px;
    }

    .footer-column p,
    .footer-column li a,
    .contact-info p{
        font-size:12px;
        line-height:1.5;
    }

   


   .newsletter{
        max-width:200px;
		 margin-top:5px;
    }

    .newsletter input{
        height:36px;
        padding:0 10px;
        font-size:12px;
    }

    .newsletter button{
        width:36px;
        height:36px;
        font-size:12px;
    }




    /* Subscribe column മുകളിലേക്ക് */
    .footer-column:last-child{
        margin-top:-10px;
    }

}
/* Address Section */
.address-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:50px;
}

.address-box{
    padding:25px;
    border:1px solid rgba(255,255,255,0.25);
    border-radius:15px;
    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(8px);
    transition:all .4s ease;
    text-align:center;
}

.address-box i{
    font-size:23px;
    margin-bottom:15px;
    color:#fff;
}

.address-box h5{
    color:#fff;
    margin-bottom:12px;
    font-size:16px;
	text-transform:uppercase;
}

.address-box p{
    color:#cfcfcf;
    font-size:14px;
    line-height:1.8;
    margin:0;
}

.address-box:hover{
    transform:translateY(-10px);
    border-color:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
    background:rgba(255,255,255,0.08);
}

/* Tablet */
@media(max-width:991px){
    .address-row{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:576px){
    .address-row{
        grid-template-columns:1fr;
    }
}

.contact-info p{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
    color:#ddd;
}

.contact-info i{
    color:#fff;
    font-size:16px;
    width:20px;
}




/* over view page */

/* ======================
BANNER
====================== */

.page-banner{

    height:280px;

    background:url('../images/overview-banner.jpg')
    center center/cover no-repeat;

    position:relative;

    margin-top:120px;
}

.banner-overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.55);
}

.banner-content{

    position:relative;
    z-index:2;

    height:280px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.banner-content h1{

    color:#fff;

    font-size:42px;

    font-weight:500;

    letter-spacing:3px;
}

/* ======================
HEADINGS
====================== */

.overview-heading{

    text-align:center;

    margin-bottom:60px;
}

.overview-heading h2{

    font-size:25px;

    font-weight:500;

    letter-spacing:2px;

    display:inline-block;

    position:relative;

    padding-bottom:15px;
}

.overview-heading h2::after{

    content:'';

    position:absolute;

    left:50%;
    bottom:0;

    width:120px;
    height:2px;

    background:#000;

    transform:translateX(-50%);

    animation:lineGrow 1.2s ease;
}

@keyframes lineGrow{

    from{width:0;}

    to{width:120px;}
}

/* ======================
OVERVIEW
====================== */

.overview-section{

    padding:90px 0;
}

.overview-wrapper{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:50px;

    align-items:center;
}

.overview-image img{

    width:100%;

    display:block;

    border-radius:6px;
}

.overview-content p{

    line-height:2;

    color:#444;

    margin-bottom:20px;

    font-size:15px;
}

/* ======================
VALUES
====================== */

/* ==========================
   VALUE SECTION
========================== */

.value-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;
}



.value-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-top:40px;
}

.value-card{

    background:#fff;

    padding:20px;

    border-radius:12px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:0 5px 15px rgba(0,0,0,.06);

    transition:.3s ease;
}

.value-card:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.value-icon{

    width:45px;

    height:45px;

    flex-shrink:0;

    border-radius:50%;

    background:#f3f3f3;

    display:flex;

    align-items:center;

    justify-content:center;
}

.value-icon i{

    font-size:18px;

    color:#444;
}

.value-card h4{

    margin:0;

    font-size:16px;

    line-height:1.5;

    color:#222;
}

@media(max-width:991px){

    .value-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .value-grid{
        grid-template-columns:1fr;
    }

}



/* ======================
MOBILE
====================== */

@media(max-width:991px){

    .overview-wrapper{

        grid-template-columns:1fr;
    }

   
    .page-banner{

        height:220px;
    }

    .banner-content{

        height:220px;
    }

    .banner-content h1{

        font-size:32px;
    }
}

/* over view page end */





 
/* Intro */

.team-intro{

    padding:70px 0 30px;

    text-align:center;
}

.team-intro h2{

    font-size:30px;

    margin-bottom:20px;
}

.team-intro p{

    max-width:950px;

    margin:auto;

    line-height:2;
}

/* Team Cards */

/* ==========================
   TEAM SECTION
========================== */

.team-section{
    padding:80px 0 100px;
    background:#fff;
}

.team-card{

    text-align:center;

    padding:25px 15px;

    height:100%;

    transition:.4s ease;
}

.team-card:hover{
    transform:translateY(-8px);
}

/* Circular Photo */

.team-card img{

    width:180px;
    height:180px;

    border-radius:50%;

    object-fit:cover;

    display:block;

    margin:0 auto 25px;

    border:8px solid #efefef;

    box-shadow:
        0 8px 25px rgba(0,0,0,.12);
}

/* Name */

.team-content h3{

    font-size:20px;

    font-weight:600;

    color:#000;

    margin-bottom:10px;
}

/* Position */

.team-content span{

    display:block;

    font-size:14px;

    line-height:1.8;

    color:#666;
}

/* Grid Gap */

.team-section .row{
    row-gap:50px;
}

/* Mobile */

@media(max-width:768px){

    .team-card img{

        width:140px;
        height:140px;
    }

    .team-content h3{
        font-size:18px;
    }

    .team-content span{
        font-size:13px;
    }

}




/* contact*/


.map-section iframe{
    width:100%;
    height:420px;
    border:0;
}

.contact-intro{
    padding:70px 0 20px;
    text-align:center;
}

.contact-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
}

.contact-details{
    padding:50px 0;
}

.office-card{
    background:#fff;
    padding:30px;
    height:100%;
    border-radius:12px;
    border:1px solid #eee;

    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.office-card h4{
    margin-bottom:15px;
}

.contact-card{
    background:#f8f8f8;
    padding:35px;
    border-radius:12px;
    height:100%;
}



.contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:25px;
}

.contact-icon{
    width:50px;
    height:50px;
    background:#f1f1f1;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#999;
    font-size:18px;
}



.contact-form-section{
    padding:70px 0;
    background:#f8f9fa;
}

.form-box{
    
    padding:40px;
   
    
    transition:.4s;
	text-align:center;
}

.form-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.form-box h3{
    position:relative;
    display:inline-block;
    font-size:25px;
    font-weight:500;
    letter-spacing:2px;
    padding-bottom:15px;
    margin-bottom:40px;
}

.form-box h3::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:0;
    width:120px;
    height:2px;
    background:#000;
    transform:translateX(-50%);
    animation:lineGrow 1.2s ease;
}

@keyframes lineGrow{
    from{
        width:0;
    }
    to{
        width:120px;
    }
}
.form-control{
    height:55px;
    border-radius:10px;
    border:1px solid #ddd;
    transition:.35s;
}

textarea.form-control{
    height:140px;
    resize:none;
}

.form-control:hover{
    border-color:#999;
}

.form-control:focus{
    border-color:#000;
    box-shadow:0 0 0 4px rgba(0,0,0,.08);
    transform:translateY(-2px);
}

.enquiry-btn-submit{
    background:#000;
    color:#fff;
    border:none;
    padding:12px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.enquiry-btn-submit:hover{
    transform:translateY(-3px);
    background:#222;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}











/* ==========================================
   NU TESTIMONIAL SECTION
========================================== */

.nu-testimonial-section{
    padding:100px 0;
    background:#2b2b2b 80%;
    overflow:hidden;
}

.nu-testimonial-heading{
    text-align:center;
    margin-bottom:70px;
}

.nu-testimonial-heading h2{
    font-size:42px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:15px;
}

.nu-testimonial-heading p{
    max-width:700px;
    margin:auto;
    color:#b5b5b5;
    line-height:1.8;
}

/* SWIPER */

.nu-testimonial-swiper{
    overflow:hidden !important;
    position:relative;
    padding:40px 0 70px;
    max-width:800px;
    margin:0 auto;
}
.nu-testimonial-swiper .swiper-slide{
    opacity:1;
    transform:none;
}
/* CARD */

.nu-testimonial-card{
    max-width:700px;
    margin:0 auto;

    position:relative;
    background:#1e1e1e;
    border:1px solid #333333;
    border-radius:25px;
    padding:45px;
    min-height:320px;
}
.nu-testimonial-card:hover{

    transform:translateY(-6px);

    border-color:#555;

}

/* CLIENT ICON */

.nu-client-icon{

    width:75px;
    height:75px;

    border-radius:50%;

    background:#2d2d2d;

    border:2px solid #444;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    color:#ffffff;

    margin-bottom:25px;

}

/* QUOTE ICON */

.nu-quote-icon{

    position:absolute;

    top:20px;
    right:25px;

    font-size:60px;

    color:#444;

    opacity:.6;

}

.nu-testimonial-card h4{

    color:#ffffff;

    font-size:24px;

    font-weight:700;

    margin-bottom:8px;

}

.nu-testimonial-card span{

    display:block;

    color:#999999;

    margin-bottom:20px;

    font-size:14px;

    letter-spacing:1px;

    text-transform:uppercase;

}

.nu-testimonial-card p{

    color:#d4d4d4;

    font-size:17px;

    line-height:1.9;

    margin:0;

}

/* ARROWS */

.nu-testimonial-prev,
.nu-testimonial-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border-radius:50%;

    background:#2a2a2a;

    border:1px solid #444;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    z-index:100;

    transition:.3s ease;

}

.nu-testimonial-prev:hover,
.nu-testimonial-next:hover{

    background:#ffffff;

    color:#111111;

}

.nu-testimonial-prev{
    left:10px;
}

.nu-testimonial-next{
    right:10px;
}
/* BULLETS */

.nu-testimonial-pagination{

    text-align:center;

    margin-top:40px;

}

.nu-testimonial-pagination .swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#666666;

    opacity:1;

    margin:0 5px !important;

}

.nu-testimonial-pagination .swiper-pagination-bullet-active{

    width:32px;

    border-radius:30px;

    background:#ffffff;

}

/* TABLET */

@media (max-width:991px){

    .nu-testimonial-heading h2{
        font-size:34px;
    }

    .nu-testimonial-prev{
        left:0;
    }

    .nu-testimonial-next{
        right:0;
    }

}

/* MOBILE */

@media (max-width:768px){

    .nu-testimonial-section{
        padding:70px 0;
    }

    .nu-testimonial-heading h2{
        font-size:28px;
    }

    .nu-testimonial-card{
        padding:30px;
        min-height:auto;
    }

    .nu-client-icon{
        width:60px;
        height:60px;
        font-size:22px;
    }

    .nu-quote-icon{
        font-size:45px;
    }

    .nu-testimonial-card p{
        font-size:15px;
        line-height:1.8;
    }

    .nu-testimonial-prev,
    .nu-testimonial-next{
        width:45px;
        height:45px;
    }
}




/* =========================
   servicess
========================= */


/* ==========================
   SERVICES BANNER
========================== */






.services-banner{
   
    height:280px;              /* Banner height */
    background:url("../images/serv-baner.jpg") center center/cover no-repeat;
 center center/cover no-repeat;

    position:relative;

    margin-top:120px;
}




.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.50);
}

.banner-content{
    position:relative;
    z-index:2;
    text-align:center;
    width:100%;
}

.banner-content h1{
    position:relative;
    display:inline-block;

    margin:0;

    color:#fff;
    font-size:34px;          /* മുമ്പ് 48px ആയിരുന്നു */
    font-weight:600;

    line-height:1.3;

    padding-bottom:12px;
}

/* Underline Animation */

.banner-content h1::after{
    content:"";

    position:absolute;

    left:50%;
    bottom:0;

    width:0;
    height:3px;

    background:#fff;

    transform:translateX(-50%);

    animation:underline 0.8s ease forwards;
}

@keyframes underline{
    from{
        width:0;
    }
    to{
        width:200px;
    }
}

/* Mobile */

@media(max-width:768px){

    .services-banner{
        height:220px;
    }

    .banner-content h1{
        font-size:26px;
    }

    .banner-content h1::after{
        width:70px;
    }

}



/* =========================
PAYROLL OVERVIEW
========================= */

.service-overview{
padding:80px 0;
}

.payroll-image{
width:100%;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.payroll-image:hover{
transform:scale(1.02);
}

/* =========================
PAYROLL TABLE
========================= */
/* =========================
PAYROLL ACCORDION
========================= */

.payroll-services{
    padding:80px 0;
    background:#fff;
}

.payroll-accordion{
    max-width:1100px;
    margin:50px auto 0;
}

.accordion-item{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:12px;
    margin-bottom:15px;
    overflow:hidden;
    transition:all .4s ease;
}

.accordion-item:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.accordion-header{
    width:100%;
    border:none;
    background:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 25px;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    text-align:left;
}

.accordion-header span{
    display:flex;
    align-items:center;
    gap:15px;
}

.accordion-header span i{
    font-size:20px;
    color:#444;
    min-width:24px;
}

.arrow{
    color:#666;
    transition:all .4s ease;
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .5s ease;
}

.accordion-content p, .accordion-content ul li{
    padding:0 15px 15px;
    margin:0;
    color:#000;
    line-height:1.8;
    font-size:15px;
}

.accordion-item.active{
    border-color:#d9d9d9;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.accordion-item.active .accordion-content{
    max-height:100%;
}

.accordion-item.active .arrow{
    transform:rotate(180deg);
}

/* =========================
TABLET
========================= */

@media(max-width:991px){

    .payroll-services{
        padding:60px 0;
    }

    .accordion-header{
        font-size:16px;
        padding:18px 20px;
    }

    .accordion-header span i{
        font-size:18px;
    }

    .accordion-content p{
        font-size:14px;
        line-height:1.7;
        padding:0 20px 20px;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:575px){

    .payroll-services{
        padding:50px 0;
    }

    .accordion-header{
        font-size:14px;
        padding:15px;
    }

    .accordion-header span{
        gap:10px;
    }

    .accordion-header span i{
        font-size:16px;
    }

    .accordion-content p{
        font-size:13px;
        line-height:1.6;
        padding:0 15px 15px;
    }

    .arrow{
        font-size:13px;
    }

}
/* =========================
MOBILE
========================= */

@media(max-width:768px){

```
.service-overview,
.payroll-services,
{
    padding:60px 0;
}



.no-border{
    border-bottom:none;
}
```

}








/* =========================
COMMON IMAGE
========================= */

.hr-service-img{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.hr-service-img:hover{
    transform:scale(1.03);
}

/* =========================
CONTENT SECTION
========================= */

.hr-service-section,
.employee-support-section{
    padding:80px 0;
}

.hr-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
	text-align:center;
	margin-top:50px;
}






/* =========================
SECTION HEADING
========================= */

.hr-heading{
    margin-bottom:20px;
}

.hr-heading h3{

    display:inline-block;

    position:relative;

    font-size:24px;

    font-weight:600;

    color:#111;

    padding-bottom:12px;
}

.hr-heading h3::after{

    content:'';

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:2px;

    background:#000;

    transform:scaleX(0);

    transform-origin:left;

    animation:drawHrLine 1.2s ease forwards;
}

@keyframes drawHrLine{

    from{
        transform:scaleX(0);
    }

    to{
        transform:scaleX(1);
    }
}


/* =========================
HR LIST
========================= */

.hr-solution-list{

    list-style:none;

    padding:0;

    margin:0;
}

.hr-solution-list li{

    position:relative;

    padding:18px 20px 18px 55px;

    margin-bottom:12px;

    background:#ececec;

    border-radius:8px;

    transition:.35s;

    font-size:16px;

    color:#444;

    border-left:3px solid transparent;
}
.hr-solution-list li::before{

    content:'✓';

    position:absolute;

    left:20px;

    top:50%;

    transform:translateY(-50%);

    width:24px;

    height:24px;

    border-radius:50%;

    background:#f1f1f1;

    color:#000;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:13px;
}

.hr-solution-list li:hover{

    transform:translateX(10px);

    background:#f5f5f5;

    border-left:3px solid #000;

    box-shadow:0 5px 15px rgba(0,0,0,.06);
}


/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .hr-heading h3{
        font-size:21px;
    }

    .hr-solution-list li{
        font-size:15px;
        padding:16px 15px 16px 50px;
    }

}
@media(max-width:768px){

    .hr-service-section,
    .employee-support-section,
    .hr-solutions,
    .why-hr-section{
        padding:60px 0;
    }

    .hr-content h2,
    .section-title h2{
        font-size:28px;
    }

    .why-hr-box h2{
        font-size:28px;
    }

}







/* =========================
GST INTRO SECTION
========================= */

.gst-intro-section{
    padding:80px 0;
}

.gst-image{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.gst-image:hover{
    transform:scale(1.03);
}


/* =========================
GST HEADING
========================= */

.gst-heading{
    margin-bottom:25px;
}

.gst-heading h3{
    display:inline-block;
    position:relative;
    font-size:24px;
    font-weight:600;
    color:#111;
    padding-bottom:12px;
}

.gst-heading h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:#000;

    transform:scaleX(0);
    transform-origin:left;

    animation:gstLine 1.3s ease forwards;
}



.gst-para p{
	text-align:justify;}
@keyframes gstLine{

    from{
        transform:scaleX(0);
    }

    to{
        transform:scaleX(1);
    }

}



/* =========================
WHAT WE OFFER
========================= */

.gst-offer-section{
    padding:80px 0;
    background:#f8f9fa;
}

.gst-offer-card{

    background:#fff;

    padding:25px;

    border-radius:10px;

    text-align:center;

    font-weight:500;

    min-height:100px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

    transition:.35s;
}

.gst-offer-card:hover{

    transform:translateY(-8px);

    background:#333;

    color:#fff;
	

}



/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .gst-intro-section,
    .gst-flow-section,
    .gst-feature-section,
    .gst-offer-section,
    .gst-banner-section{

        padding:60px 0;
    }

    .gst-flow-wrapper{

        flex-direction:column;
    }

    .gst-arrow{

        transform:rotate(90deg);
    }

    .gst-step{

        width:100%;
        max-width:250px;
    }

   
}









/* =========================
COMPLIANCE PAGE
========================= */

.legal-compliance-section{
    padding:80px 0;
}

.compliance-img{
    width:100%;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.compliance-title h3{

    display:inline-block;

    position:relative;

    font-size:24px;

    font-weight:600;

    padding-bottom:12px;

    margin-bottom:25px;
}

.compliance-title h3::after{

    content:'';

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:2px;

    background:#000;

    transform:scaleX(0);

    transform-origin:left;

    animation:drawComplianceLine 1.2s ease forwards;
}

@keyframes drawComplianceLine{

    from{
        transform:scaleX(0);
    }

    to{
        transform:scaleX(1);
    }
}

.legal-compliance-section p{
    color:#555;
    line-height:1.9;
}



/* =========================
MIDDLE NOTE
========================= */

.business-compliance-section{

    padding:70px 0;

    background:#f5f5f5;
}

.compliance-note{

   

    margin:auto;

    
	margin-top:20px;
}

.compliance-note p{

    font-size:17px;

    line-height:2;

    color:#444;
}



/* =========================
STATUTORY LIST
========================= */

.statutory-compliance-section{
    padding:80px 0;
}

.compliance-list{
    list-style:none;
    padding:0;
    margin:0;
}

.compliance-list li{

    position:relative;

    padding:14px 15px 14px 45px;

    margin-bottom:12px;

    background:#efefef;

    border-radius:6px;

    transition:.3s;
}

.compliance-list li::before{

    content:'✓';

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    font-weight:bold;

    color:#000;
}

.compliance-list li:hover{

    background:#e0e0e0;

    transform:translateX(8px);
}

@media(max-width:768px){

    .legal-compliance-section,
    .business-compliance-section,
    .statutory-compliance-section{

        padding:60px 0;
    }

}




.other-services-section{
    padding:80px 0;
    background:#f8f9fa;
}

.custom-accordion{
    max-width:1000px;
    margin:auto;
}

.accordion-item-custom{

    background:#fff;

    border-radius:12px;

    margin-bottom:18px;

    overflow:hidden;

    border-left:4px solid transparent;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

    transition:.35s;
}

.accordion-item-custom:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.accordion-item-custom.active{

    border-left:4px solid #000;

    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.accordion-btn{

    width:100%;

    border:none;

    background:#fff;

    padding:22px 25px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-align:left;

    font-size:18px;

    font-weight:600;

    transition:.3s;
}

.accordion-btn:hover{

    background:#fafafa;
}

.accordion-icon{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#f1f1f1;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    font-weight:600;

    transition:.3s;
}

.accordion-item-custom.active .accordion-icon{

    background:#111;

    color:#fff;
}

.accordion-content{

    max-height:0;

    overflow:hidden;

    transition:max-height .5s ease;
}

.accordion-inner{

    padding:0 25px 25px;
}

.accordion-inner p{

    color:#555;

    line-height:1.9;

    margin-bottom:15px;
}

.accordion-inner ul{

    list-style:none;

    padding:0;

    margin:15px 0;
}

.accordion-inner ul li{

    position:relative;

    padding-left:28px;

    margin-bottom:10px;

    color:#555;
}

.accordion-inner ul li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:0;

    font-weight:700;

    color:#000;
}

@media(max-width:768px){

    .other-services-section{
        padding:60px 0;
    }

    .accordion-btn{
        font-size:16px;
        padding:18px 20px;
    }

    .accordion-inner{
        padding:0 20px 20px;
    }

}






/* =========================
index page scroling clients logos
========================= */
/* ==========================================
   CLIENT LOGO SECTION
========================================== */

.nu-client-showcase{
    padding:80px 0;
    background:#f8f9fb;
    overflow:hidden;
}

.nu-client-heading{
    text-align:center;
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.nu-client-line{
    width:90px;
    height:4px;
    background:#111;
    margin:0 auto 50px;
    border-radius:50px;
}

.nu-client-slider-wrapper{
    position:relative;
    padding:0 60px;
}

/* ==========================================
   CARD
========================================== */

.nu-client-card{
    background:#fff;
    border-radius:12px;
    height:110px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
    border:1px solid #ececec;
    transition:.3s;
}

.nu-client-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.nu-client-card img{
    max-width:100%;
    max-height:90px;
    object-fit:contain;

   filter:grayscale(20%) saturate(1.25) contrast(1.08);
    opacity:1;

    transition:.4s;
}

.nu-client-card:hover img{
    filter:grayscale(0%) saturate(1.4) contrast(1.1);
    transform:scale(1.05);
}
/* ==========================================
   SWIPER
========================================== */

.nuClientSwiper{
    overflow:hidden;
}



/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .nu-client-heading{
        font-size:30px;
    }

    .nu-client-slider-wrapper{
        padding:0 45px;
    }

}

@media(max-width:767px){

    .nu-client-showcase{
        padding:60px 0;
    }

    .nu-client-heading{
        font-size:26px;
    }

    .nu-client-slider-wrapper{
        padding:0 35px;
    }

    .nu-client-card{
        height:90px;
        padding:10px;
    }

    .nu-client-card img{
        max-height:50px;
    }

}

/* =========================
end index page scroling clients logos
========================= */


/* =========================
our-clients-section
========================= */

.our-clients-section{
    padding:100px 0;
    background:#f8f8f8;
}

.clients-content-box{
    max-width:1100px;
    margin:auto;
}

.clients-intro,
.clients-description{
    font-size:14px;
    line-height:1.9;
    color:#555;
    text-align:center;
}

.clients-description b{
    font-size:20px;
	font-family:safari;
	font-weight:bold;
    
}


.client-category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin:50px 0;
}

.client-category{
    background:#fff;
    padding:22px 25px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:15px;
    transition:.3s;
}

.client-category:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.client-category i{
    font-size:20px;
    color:#444;
    min-width:30px;
}

.client-category span{
    font-size:16px;
    color:#333;
}


@media(max-width:768px){

    .client-category-grid{
        grid-template-columns:1fr;
    }

 
}
.clients-heading{
    text-align:center;
    margin-bottom:50px;
}

.clients-heading h2{
    position:relative;
    display:inline-block;
    font-size:25px;
    font-weight:600;
    letter-spacing:2px;
    
    padding-bottom:15px;
}

.clients-heading h2::after{

    content:'';
    position:absolute;

    left:50%;
    bottom:0;

    width:100px; /* underline width */
    height:2px;

    background:#000;

    transform:translateX(-50%) scaleX(0);
    transform-origin:center;

    transition:1.2s ease;
}

.clients-heading.show h2::after{
    transform:translateX(-50%) scaleX(1);
}


.social-title{
    margin-top:25px;
    margin-bottom:15px;
    font-size:18px;
    color:#fff;
}

.footer-social{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.footer-social a{
    width:25px;
    height:25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    border:1px solid rgba(255,255,255,.2);
    transition:.3s;
	text-decoration:none !important;
}

.footer-social a:hover{
    transform:translateY(-4px);
    background:#fff;
    color:#111;
}



.sk-footer,
.sk-branding,
[class*="branding"]{
    display:none !important;
	
}



/* ==========================
   SERVICE LIST
========================== */

.servise-list{
    max-width: 850px;      /* ഏകദേശം Bootstrap col-lg-8 */
    width: 100%;

    margin:30px 0;
    padding:0;

    list-style:none;
}

.servise-list li{

    position:relative;

    padding:12px 18px 12px 45px;

    margin-bottom:10px;

    background:#fff;

    border:1px solid #e5e5e5;

    border-left:3px solid #333;

    border-radius:4px;

    color:#333;

    font-size:15px;

    line-height:1.6;

    transition:.3s ease;
}

.servise-list li::before{

    content:"✓";

    position:absolute;

    left:16px;

    top:50%;

    transform:translateY(-50%);

    font-weight:700;

    color:#333;
}

.servise-list li:hover{

    background:#f7f7f7;

    transform:translateX(4px);
}



/*==============================
SERVICE CONTENT
==============================*/

.service-content{

    padding-right:30px;
}

.service-content p{

    font-size:16px;

    line-height:1.9;

    color:#555;

    text-align:justify;

    margin-bottom:25px;
}

.service-content strong{

    color:#222;

    font-size:18px;

    font-weight:600;
}



/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.service-content{

    padding-right:0;

    margin-bottom:30px;
}

 .service-side-image img{

        height:320px;
    }

}

/*==============================
SERVICE SIDE IMAGE
==============================*/

.service-side-image{

    height:100%;

    min-height:430px;
}

.service-side-image img{

    width:100%;

    height:430px;

    object-fit:cover;

    border-radius:8px;

    border:1px solid #e5e5e5;

    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

