﻿body{
    padding-top:95px;
    font-family:Poppins,sans-serif;
}

/*================ NAVBAR ================*/

.custom-navbar{

    background:rgba(255,255,255,.90);

    backdrop-filter:blur(18px);

    transition:.4s;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.custom-navbar::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,
    #ff7a00 0%,
    #ffffff 50%,
    #1a8b24 100%);

}

/*================ LOGO ================*/

.logo{

    width:68px;

    height:68px;

    border-radius:50%;

    object-fit:cover;

    transition:.5s;

}

.logo:hover{

    transform:rotate(360deg);

}

.logo-text{

    margin-left:12px;

}

.title{

    display:block;

    font-size:28px;

    font-weight:700;

    color:#0b3558;

    letter-spacing:2px;

}

.logo-text small{

    color:#555;

    font-size:13px;

}

/*================ LINKS ================*/

.navbar-nav .nav-link{

    color:#222;

    font-weight:600;

    margin:0 12px;

    position:relative;

    transition:.4s;

}

.navbar-nav .nav-link:hover{

    color:#ff7a00;

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    width:0;

    height:3px;

    left:50%;

    bottom:5px;

    transform:translateX(-50%);

    transition:.4s;

    background:#1b8b2a;

}

.navbar-nav .nav-link:hover::after{

    width:70%;

}

/*================ DROPDOWN ================*/

.dropdown-menu{

    border:none;

    border-radius:15px;

    padding:10px;

    animation:fadeDown .4s;

}

.dropdown-item{

    border-radius:10px;

    padding:10px 15px;

    transition:.3s;

}

.dropdown-item:hover{

    background:#1a8b24;

    color:#fff;

    transform:translateX(6px);

}

@keyframes fadeDown{

from{

opacity:0;

transform:translateY(15px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*================ BUTTON ================*/

.join-btn{

    padding:12px 26px;

    border-radius:50px;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    background:linear-gradient(45deg,#ff7a00,#1a8b24);

    transition:.4s;

}

.join-btn:hover{

    transform:translateY(-3px);

    color:#fff;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

/*================ TOGGLE ================*/

.navbar-toggler{

    width:55px;

    height:55px;

}

.animated-toggler{

    display:flex;

    flex-direction:column;

    gap:6px;

}

.animated-toggler span{

    width:30px;

    height:3px;

    background:#0b3558;

    border-radius:10px;

}

/*================ MOBILE ================*/

@media(max-width:991px){

.navbar-collapse{

background:#fff;

margin-top:20px;

padding:20px;

border-radius:15px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.nav-link{

padding:15px !important;

}

.join-btn{

display:block;

text-align:center;

}

.logo{

width:55px;

height:55px;

}

.title{

font-size:22px;

}

}

.footer-area{

    background:linear-gradient(135deg,#0b1c2f,#132c45);
    color:#fff;
    padding:80px 0 25px;
    position:relative;
    overflow:hidden;

}

.footer-area::before{

    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#ff9933,#ffffff,#138808);

}

.footer-logo img{

    width:90px;
    margin-bottom:20px;

}

.footer-logo h3{

    font-size:24px;
    font-weight:700;
    margin-bottom:15px;

}

.footer-logo p{

    color:#d5d5d5;
    line-height:1.9;
    margin:0;

}

.footer-area h5{

    font-size:20px;
    font-weight:600;
    margin-bottom:25px;
    position:relative;

}

.footer-area h5::after{

    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:3px;
    border-radius:50px;
    background:#ff9933;

}

.footer-area ul{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-area ul li{

    margin-bottom:14px;

}

.footer-area ul li a{

    color:#dcdcdc;
    text-decoration:none;
    transition:.35s;

}

.footer-area ul li a:hover{

    color:#ff9933;
    padding-left:8px;

}

.footer-contact p{

    color:#ddd;
    margin-bottom:14px;

}

.footer-contact i{

    color:#ff9933;
    width:25px;

}

.footer-social{

    margin-top:25px;
    display:flex;
    gap:12px;

}

.footer-social a{

    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.4s;

}

.footer-social a:hover{

    background:#ff9933;
    color:#fff;
    transform:translateY(-6px);

}

.footer-area hr{

    border-color:rgba(255,255,255,.15);
    margin:50px 0 25px;

}

.footer-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;

}

.footer-bottom p{

    margin:0;
    color:#ccc;

}

.footer-bottom a{

    color:#ff9933;
    text-decoration:none;
    font-weight:600;

}

.footer-bottom a:hover{

    color:#fff;

}

/* Responsive */

@media(max-width:991px){

.footer-area{

padding:60px 0 20px;

}

.footer-logo{

text-align:center;
margin-bottom:20px;

}

.footer-logo img{

margin:auto auto 20px;

display:block;

}

.footer-area h5{

margin-top:15px;

}

.footer-bottom{

justify-content:center;
text-align:center;

}

}

@media(max-width:576px){

.footer-area{

padding:50px 0 20px;

}

.footer-logo h3{

font-size:22px;

}

.footer-area h5{

font-size:18px;

}

.footer-social{

justify-content:center;

}

.footer-contact{

text-align:left;

}

}

/* ===========================
   HERO BANNER
=========================== */

.hero-banner{
    position:relative;
    width:100%;
    overflow:hidden;
    margin:0;
    padding:0;
}

.hero-banner .carousel{
    width:100%;
}

.hero-banner .carousel-inner{
    width:100%;
}

.hero-banner .carousel-item{
    position:relative;
    width:100%;
    height:85vh;
    min-height:600px;
    max-height:850px;
    overflow:hidden;
}

.hero-banner .carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    transition:transform 8s ease;
}

.hero-banner .carousel-item.active img{
    transform:scale(1.08);
}

/* ===========================
   OVERLAY
=========================== */

.banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(0,0,0,.55),
        rgba(0,0,0,.20),
        rgba(0,0,0,.45)
    );
    z-index:1;
}

/* ===========================
   CAPTION
=========================== */

.carousel-caption{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90%;
    max-width:950px;
    z-index:5;
    text-align:center;
}

.carousel-caption h1{
    color:#F4C15D;
    font-size:64px;
    font-weight:800;
    line-height:1.15;
    margin:0;
    text-shadow:0 10px 30px rgba(0,0,0,.5);
}

/* ===========================
   INDICATORS
=========================== */

.carousel-indicators{
    margin-bottom:35px;
    z-index:10;
}

.carousel-indicators button{
    width:14px !important;
    height:14px !important;
    border-radius:50%;
    border:none;
    margin:0 6px;
    opacity:.5;
    transition:.3s;
}

.carousel-indicators .active{
    opacity:1;
    transform:scale(1.25);
}

/* ===========================
   LAPTOP
=========================== */

@media(max-width:1200px){

.hero-banner .carousel-item{
    height:75vh;
    min-height:550px;
}

.carousel-caption h1{
    font-size:52px;
}

}

/* ===========================
   TABLET
=========================== */

@media(max-width:991px){

.hero-banner .carousel-item{
    height:65vh;
    min-height:500px;
}

.carousel-caption{
    width:92%;
}

.carousel-caption h1{
    font-size:42px;
    line-height:1.25;
}

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:767px){

.hero-banner .carousel-item{
    height:420px;
    min-height:420px;
}

.hero-banner .carousel-item img{
    object-position:center center;
}

.carousel-caption{
    width:95%;
}

.carousel-caption h1{
    font-size:28px;
    line-height:1.35;
}

.carousel-indicators{
    margin-bottom:20px;
}

}

/* ===========================
   SMALL MOBILE
=========================== */

@media(max-width:480px){

.hero-banner .carousel-item{
    height:360px;
    min-height:360px;
}

.carousel-caption h1{
    font-size:22px;
}

}
/*==========================
ABOUT SECTION
===========================*/

.about-section{
    padding:100px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}



/*==========================
IMAGE
===========================*/

/*==============================
ABOUT IMAGE
==============================*/

.about-gallery{

    position:relative;
    height:620px;
    display:flex;
    align-items:center;
}

.img-big{

    width:82%;
    height:100%;
    overflow:hidden;
    border-radius:18px;
    position:relative;
}

.img-big img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.img-big:hover img{

    transform:scale(1.08);
}

/* Small Image */

.img-small{

    position:absolute;
    right:0;
    bottom:45px;
    width:45%;
    height:300px;

    overflow:hidden;

    border-radius:18px;

    border:10px solid #fff;

    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.img-small img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.img-small:hover img{

    transform:scale(1.08);
}


/*==========================
CONTENT
===========================*/

.about-content{

    position:relative;

    padding-left:35px;

}

.about-content::before{

    content:"";

    position:absolute;

    left:0;

    top:10px;

    width:5px;

    height:120px;

    border-radius:10px;

    background:linear-gradient(
        to bottom,
        #d97b00,
        #2f8a2f
    );

}

.section-tag{

    display:inline-block;
    color:#d67d00;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}

.about-content h2{

    font-size:50px;
    font-weight:800;
    line-height:1.15;
    color:#222;
    margin-bottom:25px;
}

.about-content p{

    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

/*==========================
LIST
===========================*/

.about-highlights{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:30px 0;
}

.highlight{

    font-size:16px;
    font-weight:600;
    color:#222;
    display:flex;
    align-items:center;
}

.highlight span{

    width:34px;
    height:34px;
    border-radius:50%;
    background:#3b8c24;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:12px;
}

/*==========================
BUTTON
===========================*/

.about-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    border-radius:8px;
    background:linear-gradient(90deg,#d67d00,#3b8c24);
    color:#fff;
    text-decoration:none;
    font-weight:700;
    width:190px;
    transition:.4s;
}

.about-btn:hover{

    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:991px){

.about-section{

    padding:80px 0;
}

.about-image-wrapper{

    min-height:500px;
}

.about-content{

    margin-top:30px;
}

.about-content h2{

    font-size:38px;
}

.floating-image{

    width:190px;
    height:220px;
    right:0;
}

.experience-box{

    width:140px;
    height:140px;
}

.experience-box h2{

    font-size:38px;
}

}

@media(max-width:767px){

.about-section{

    padding:70px 0;
}

.about-image-wrapper{

    min-height:420px;
}

.floating-image{

    width:150px;
    height:180px;
}

.about-content h2{

    font-size:30px;
}

.about-highlights{

    grid-template-columns:1fr;
}

.about-btn{

    width:100%;
}

}

/* SECTION */
.services-image-style {
    padding:30px 0;
    background: #ffffff;
}
.section-head {
    margin-bottom: 50px;
}
.sub-title {
    color: #00a86b;
    font-weight: 600;
    letter-spacing: 1px;
}
.main-title {
    font-size: 38px;
    font-weight: 700;
    color: #0b2545;
    margin-top: 10px;
}
.service-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 350px;
}
.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,0.8),rgba(0,0,0,0.2));
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: 0.4s;
}
.service-content {
   transform: translateY(40px);
   transition: 0.4s;
}
.service-icon {
    width: 55px;
    height: 55px;
    background: #00a86b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.service-icon i {
    color: white;
    font-size: 22px;
}
.service-content h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}
.service-content p {
    color: #dddddd;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0;
    transition: 0.4s;
}
.service-image-card:hover img {
    transform: scale(1.1);
}
.service-image-card:hover .service-content {
    transform: translateY(0);
 }
.service-image-card:hover p {
   opacity: 1;
 }
@media (max-width: 991px) {
     .service-image-card {
        height: 300px;
    }
    .main-title {
        font-size: 28px;
    }
 }
/* PROCESS SECTION */
.process-modern {
    padding: 100px 0;
    background: #ffffff;
 }
.process-header {
  margin-bottom: 70px;
}
.process-subtitle {
    color: #00a86b;
    font-weight: 600;
    letter-spacing: 1px;
 }
.process-title {
    font-size: 40px;
    font-weight: 700;
    color: #0b2545;
    margin-top: 10px;
 }
.process-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
 }
.process-wrapper::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 3px;
    background: #00a86b;
 }
.process-step {
    width: 23%;
    text-align: center;
    position: relative;
 }
.step-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 3px solid #00a86b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    font-size: 28px;
    color: #00a86b;
    transition: 0.3s;
 }
.process-step:hover .step-icon {
    background: #00a86b;
    color: #ffffff;
    transform: scale(1.1);
 }
.step-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #0b2545;
 }
 .step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
 }
@media (max-width: 991px) {
    .process-step {
        width: 50%;
        margin-bottom: 40px;
  }
    .process-wrapper::before {
      display: none;
    }
 }

@media (max-width: 576px) {
   .process-step {
     width: 100%;
  }
 }
/*=========================
VISION MISSION
=========================*/

.vision-mission-section{

    padding:100px 0;
    background:#f9fafc;

}

.section-heading{

    max-width:750px;
    margin:0 auto 70px;

}

.section-heading span{

    color:#d47d00;
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

}

.section-heading h2{

    font-size:48px;
    font-weight:800;
    margin:15px 0;

}

.section-heading p{

    color:#666;
    line-height:1.9;

}

/*=========================
CARD
=========================*/

.vm-card{

    height:100%;
    background:#fff;

    border-radius:18px;

    padding:45px;

    display:flex;

    align-items:flex-start;

    gap:28px;

    position:relative;

    overflow:hidden;

    transition:.45s;

    border:1px solid #ececec;

}

/* Left Border */

.vm-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:6px;

    height:100%;

    transition:.45s;

}

.vision-card::before{

    background:#D27C00;

}

.mission-card::before{

    background:#2E8B57;

}

/* Icon */

.vm-icon{

    flex:0 0 90px;

    width:90px;

    height:90px;

    border-radius:14px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#f7f7f7;

    font-size:42px;

    transition:.4s;

}

.vision-card .vm-icon{

    color:#D27C00;

}

.mission-card .vm-icon{

    color:#2E8B57;

}

/* Label */

.vm-label{

    display:inline-block;

    color:#888;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:12px;

}

/* Heading */

.vm-content h3{

    font-size:30px;

    font-weight:700;

    margin-bottom:18px;

}

/* Paragraph */

.vm-content p{

    color:#666;

    line-height:1.9;

    margin:0;

}

/* Hover */

.vm-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.10);

}

.vm-card:hover .vm-icon{

    transform:rotate(-8deg) scale(1.08);

    background:#fff8ef;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.vm-card{

    padding:35px;

}

.section-heading h2{

    font-size:38px;

}

.vm-content h3{

    font-size:25px;

}

}

@media(max-width:767px){

.vision-mission-section{

    padding:70px 0;

}

.vm-card{

    flex-direction:column;

    text-align:center;

    align-items:center;

    padding:30px;

}

.vm-icon{

    margin-bottom:5px;

}

.section-heading h2{

    font-size:30px;

}

.vm-content h3{

    font-size:23px;

}

}
/*====================================
        GALLERY
====================================*/

.gallery-section{

    padding:100px 0;
    background:#fafafa;

}

/* Heading */

.gallery-heading{

    max-width:760px;
    margin:auto;
    margin-bottom:60px;

}

.gallery-heading span{

    color:#c57d16;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:2px;
    font-size:15px;

}

.gallery-heading h2{

    font-size:48px;
    font-weight:800;
    margin:15px 0;

}

.gallery-heading p{

    color:#666;
    line-height:1.9;

}

/*=========================
GRID
=========================*/

.gallery-grid{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    grid-auto-rows:220px;

    gap:18px;

}

/* Layout */

.item1{

    grid-column:span 2;
    grid-row:span 2;

}

.item2{

    grid-row:span 1;

}

.item3{

    grid-row:span 2;

}

.item4{

    grid-column:span 1;

}

.item5{

    grid-column:span 2;

}

.item6{

    grid-column:span 1;

}

/* Image */

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    cursor:pointer;

}

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s;

}

/* Overlay */

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.05)
    );

    display:flex;

    align-items:flex-end;

    padding:25px;

    opacity:0;

    transition:.45s;

}

.gallery-overlay h4{

    color:#fff;

    margin:0;

    font-size:22px;

    transform:translateY(25px);

    transition:.45s;

}

/* Hover */

.gallery-item:hover img{

    transform:scale(1.12);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-item:hover h4{

    transform:translateY(0);

}

/*=========================
TABLET
=========================*/

@media(max-width:991px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

grid-auto-rows:220px;

}

.item1,
.item2,
.item3,
.item4,
.item5,
.item6{

grid-column:auto;
grid-row:auto;

}

.gallery-heading h2{

font-size:38px;

}

}

/*=========================
MOBILE
=========================*/

@media(max-width:767px){

.gallery-section{

padding:70px 0;

}

.gallery-grid{

grid-template-columns:1fr;

grid-auto-rows:260px;

}

.gallery-heading h2{

font-size:30px;

}

.gallery-heading{

margin-bottom:40px;

}

}
/*=============================
CTA SECTION
=============================*/

.cta-section{

    padding:100px 0;

    background:#ffffff;

}

.cta-wrapper{

    display:grid;

    grid-template-columns:42% 58%;

    min-height:500px;

    overflow:hidden;

    border-radius:20px;

    background:#fafafa;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/*=========================
IMAGE
=========================*/

.cta-image{

    overflow:hidden;

}

.cta-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:1s;

}

.cta-wrapper:hover .cta-image img{

    transform:scale(1.08);

}

/*=========================
CONTENT
=========================*/

.cta-content{

    display:flex;

    justify-content:center;

    flex-direction:column;

    padding:70px;

    position:relative;

}

/* Gold Line */

.cta-content::before{

    content:"";

    width:70px;

    height:5px;

    background:#D58B00;

    border-radius:10px;

    margin-bottom:25px;

}

.cta-subtitle{

    color:#D58B00;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

    font-weight:700;

}

.cta-content h2{

    font-size:52px;

    font-weight:800;

    color:#222;

    line-height:1.2;

    margin:18px 0;

}

.cta-content p{

    color:#666;

    line-height:1.9;

    font-size:17px;

    margin-bottom:35px;

}

/*=========================
BUTTONS
=========================*/

.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.cta-btn-primary{

    padding:16px 34px;

    background:#D58B00;

    color:#fff;

    text-decoration:none;

    border-radius:8px;

    font-weight:700;

    transition:.4s;

}

.cta-btn-primary:hover{

    background:#b97700;

    color:#fff;

}

.cta-btn-outline{

    padding:16px 34px;

    border:2px solid #2F8C43;

    color:#2F8C43;

    text-decoration:none;

    border-radius:8px;

    font-weight:700;

    transition:.4s;

}

.cta-btn-outline:hover{

    background:#2F8C43;

    color:#fff;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.cta-wrapper{

grid-template-columns:1fr;

}

.cta-image{

height:350px;

}

.cta-content{

padding:50px;

}

.cta-content h2{

font-size:38px;

}

}

@media(max-width:767px){

.cta-section{

padding:70px 0;

}

.cta-image{

height:260px;

}

.cta-content{

padding:35px 25px;

}

.cta-content h2{

font-size:28px;

}

.cta-buttons{

flex-direction:column;

}

.cta-btn-primary,

.cta-btn-outline{

width:100%;

text-align:center;

}

}
