body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Fixed Container */
.custom-container {
    max-width: 1300px;
    width: 100%;
    margin: auto;
    padding: 0 15px;
}

/* ======================
   TOP BAR
====================== */
.top-bar {
    background: #98a869;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
}

.top-bar a:hover {
    color: #01796f;
}

.social-icons a {
    margin-left: 15px;
    color: #fff;
    font-size: 16px;
}

/* ======================
   NAVBAR
====================== */
.navbar-section {
    background: #01796f;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
    z-index: 999;
}

.navbar-brand {
    padding: 0;
}

/* Logo Image */
.logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Menu */
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

.navbar-nav .nav-link.active{
    color: #ddd !important;
    font-weight: 600;
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        color: #000;
        font-weight: 500;
        margin: 0 10px;
        transition: 0.3s;
    }

    .navbar-nav .nav-link.active{
        color: #000 !important;
        font-weight: 600;
    }
}

/* Enquiry Button */
.enquiry-btn {
    background: #ff5b2e;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: 0.3s;
}

.enquiry-btn:hover {
    background: #fd3d08;
    color: #fff;
}

/* Navbar toggler */
.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

/* ======================
   BANNER SECTION
====================== */
.banner-section {
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .banner-img {
        height: 70vh;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .banner-img {
        height: auto;
        min-height: 250px;
        object-fit: cover;
    }
}

/* ======================
   TABLET RESPONSIVE
====================== */
@media (max-width: 991px) {

    /* Top Bar */
    .top-bar .d-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .top-bar a {
        display: inline-block;
        margin: 5px;
    }

    .social-icons {
        margin-top: 5px;
    }

    /* Logo */
    .logo-img {
        max-height: 50px;
    }

    /* Mobile Menu */
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin: 8px 0;
    }

    .navbar-nav .nav-link {
        margin: 0;
    }

    .enquiry-btn {
        margin-top: 10px;
    }
}

/* ======================
   MOBILE RESPONSIVE
====================== */
@media (max-width: 576px) {

    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .top-bar a {
        display: block;
        margin: 5px 0;
    }

    .social-icons a {
        margin: 0 8px;
        display: none;
    }

    .logo-img {
        max-height: 45px;
    }

    .enquiry-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* About */

.about-section {
    background: #f7f7f7;
    padding: 80px 0;
}

/* Stat Boxes */
.stat-box {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.blue-box {
    background: #1d3d6d;
}

.orange-box {
    background: #ff5b2e;
}

.stat-box i {
    font-size: 28px;
    margin-bottom: 10px;
}

.stat-box h3 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-box p {
    margin: 0;
    font-size: 14px;
}

/* Right Content */
.about-content {
    padding-left: 30px;
}

.about-subtitle {
    color: #ff5b2e;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
    color: #222;
}

.about-content p {
    color: #666;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1d3d6d;
    font-weight: bold;
}

.about-btn {
    display: inline-block;
    background: #ff5b2e;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
}

.about-btn:hover {
    color: #fff;
}

/* Mobile Responsive */
@media(max-width:991px){
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .stat-box {
        height: 150px;
    }

    .about-content h2 {
        font-size: 32px;
    }
}

@media(max-width:576px){
    .stat-box {
        height: 130px;
    }

    .stat-box h3 {
        font-size: 22px;
    }

    .about-content h2 {
        font-size: 26px;
    }
}

/* Custom Service */

.services-section {
    background: #f8f8f8;
    padding: 80px 0;
}

/* Heading */
.section-title span {
    color: #ff5b2e;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-top: 10px;
}

/* Service Box */
.service-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.05);
    transition: 0.4s;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.1);
}

/* Icon */
.service-icon {
    width: 60px;
    height: 60px;
    background: #0d6efd;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-box p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Mobile Responsive */
@media(max-width:991px){
    .section-title h2 {
        font-size: 32px;
    }
}

@media(max-width:576px){
    .service-box {
        padding: 20px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .service-box h4 {
        font-size: 20px;
    }
}

/* CTA Section */

.cta-section {
    position: relative;
    background: url('../img/cta-bg.jpg') center center/cover no-repeat;
    padding: 140px 0 100px;
    overflow: hidden;
    background-attachment: fixed;
    border: none;
}

/* Top diagonal white shape */
.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
    z-index: 1;
    border: none;
}

/* Dark overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
}

/* Icon box */
.cta-icon-box {
    width: 70px;
    height: 70px;
    background: #0d6efd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

/* Heading */
.cta-content h2 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Text */
.cta-content p {
    color: #ddd;
    margin-bottom: 25px;
}

/* Button */
.cta-btn {
    display: inline-block;
    background: #ff5b2e;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn:hover {
    color: white;
}

/* Mobile */
@media(max-width:991px){
    .cta-content h2{
        font-size: 34px;
    }
}

@media(max-width:576px){
    .cta-section::before{
        height: 70px;
    }

    .cta-content{
        text-align: center;
    }

    .cta-icon-box{
        margin: 0 auto 20px;
    }

    .cta-content h2{
        font-size: 26px;
    }
}

/* Portfolio Section */

.portfolio-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-title span {
    color: #ff5b2e;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
}

.section-title p {
    color: #666;
}

/* Portfolio Box */
.portfolio-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.portfolio-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s;
}

.portfolio-box:hover img {
    transform: scale(1.1);
}

/* Overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}

.portfolio-box:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h5 {
    color: white;
    margin-bottom: 15px;
}

/* Button */
.view-btn {
    background: #ff5b2e;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Modal */
.modal-content {
    border-radius: 15px;
}

/* Mobile */
@media(max-width:576px){
    .section-title h2{
        font-size: 28px;
    }

    .portfolio-box img{
        height: 220px;
    }

    .modal-dialog{
        margin: 15px;
    }
}

/* Our Team */

.team-section {
    background: #ffffff;
    padding: 80px 0;
}

/* Team Card */
.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.team-card:hover {
    transform: translateY(-8px);
}

/* Image */
.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Social Icons */
.team-social {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d6efd;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.4s;
}

.team-card:hover .team-social {
    bottom: 20px;
}

.team-social a {
    color: white;
    margin: 0 10px;
    font-size: 18px;
}

/* Content */
.team-content {
    text-align: center;
    padding: 25px;
}

.team-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-content p {
    color: #666;
    margin: 0;
}

/* Mobile */
@media(max-width:576px){
    .team-img img {
        height: 300px;
    }

    .team-content h4 {
        font-size: 22px;
    }
}

/* Footer */

.footer-section {
    background: #e6e6e6;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

/* Logo */
.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

/* Contact Info */
.footer-contact p {
    color: #555;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Footer Links */
.footer-links h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

.footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #666;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ff5b2e;
}

/* Bottom Footer */
.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.footer-bottom span {
    color: #ff5b2e;
}

/* Visitor Counter */
.visitor-counter {
    background: #000;
    color: #fff;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 3px;
    border-radius: 3px;
    min-width: 80px;
    text-align: center;
}

/* Mobile */
@media(max-width:768px){
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }
}

/* WhatsApp Float */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px; /* change to right:20px if needed */
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

/* Hover */
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Pulse Animation */
.whatsapp-float::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Mobile */
@media(max-width:576px){
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 15px;
        left: 15px;
    }
}

/* Breadcrumb */

.breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-nav ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-nav ul li {
    font-size: 14px;
    color: #666;
}

.breadcrumb-nav ul li a {
    text-decoration: none;
    color: #ff5b2e;
    font-weight: 500;
}

.breadcrumb-nav ul li a:hover {
    color: #0d6efd;
}

/* Mobile */
@media(max-width:576px){
    .breadcrumb-section {
        padding: 12px 0;
    }

    .breadcrumb-nav ul {
        justify-content: center;
        gap: 8px;
    }

    .breadcrumb-nav ul li {
        font-size: 13px;
    }
}

/* Vision Mission */

.motto-section {
    background: #fff;
    padding: 70px 0;
}

.motto-box {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    display: flex;
    gap: 20px;
    height: 100%;
    transition: 0.4s;
}

.motto-box:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
}

/* Icon */
.motto-icon {
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.motto-icon i {
    font-size: 28px;
}

/* Colors */
.blue-icon {
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
}

.purple-icon {
    background: rgba(111,66,193,0.1);
    color: #6f42c1;
}

.green-icon {
    background: rgba(25,135,84,0.1);
    color: #198754;
}

/* Content */
.motto-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.motto-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Mobile */
@media(max-width:768px){
    .motto-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .motto-content h4 {
        font-size: 20px;
    }
}

/* Impact & Strength */

.impact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Small Heading */
.impact-subtitle {
    color: #ff5b2e;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Main Title */
.impact-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    max-width: 800px;
    line-height: 1.4;
    margin-bottom: 40px;
}

/* Bullet List */
.impact-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-list ul li {
    font-size: 18px;
    color: #444;
    margin-bottom: 18px;
    position: relative;
    padding-left: 30px;
}

/* Orange Arrow */
.impact-list ul li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #ff5b2e;
    font-size: 18px;
    font-weight: bold;
}

/* Tablet */
@media(max-width:991px){
    .impact-title{
        font-size: 32px;
    }
}

/* Mobile */
@media(max-width:576px){
    .impact-section{
        padding: 50px 0;
    }

    .impact-title{
        font-size: 24px;
    }

    .impact-list ul li{
        font-size: 16px;
    }
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    background:#f3f4f8;
    padding:80px 0;
    font-family:'Poppins',sans-serif;
}

.container{
    width:1300px;
    max-width:95%;
    margin:auto;
}

.contact-wrapper{
    display:flex;
    justify-content:space-between;
    gap:60px;
    align-items:flex-start;
}

/* LEFT SIDE */

.contact-left{
    width:58%;
}

.contact-subtitle{
    color:#ff6b2d;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    display:block;
    margin-bottom:10px;
}

.contact-left h2{
    font-size:42px;
    font-weight:700;
    color:#1f2b4d;
    margin-bottom:40px;
}

.form-row{
    display:flex;
    gap:20px;
    margin-bottom:25px;
}

.form-group{
    width:100%;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-size:15px;
    color:#222;
    font-weight:500;
}

.form-group label span{
    color:red;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:1px solid #cfd3dc;
    background:#fff;
    padding:14px 15px;
    font-size:15px;
    border-radius:4px;
    outline:none;
    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#ff6b2d;
}

.full-width{
    margin-bottom:25px;
}

.send-btn{
    background:#ff6b2d;
    color:#fff;
    border:none;
    padding:15px 32px;
    font-size:14px;
    font-weight:600;
    border-radius:4px;
    cursor:pointer;
    transition:.3s;
}

.send-btn:hover{
    background:#e85a20;
}

/* RIGHT SIDE */

.contact-right{
    width:42%;
}

.info-box{
    margin-bottom:50px;
}

.info-box h3{
    font-size:28px;
    color:#1f2b4d;
    font-weight:700;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:1px solid #d7dbe5;
}

.info-box h3 span{
    color:#ff6b2d;
    margin-right:8px;
}

.info-box p{
    color:#555;
    line-height:1.9;
    font-size:15px;
}

.contact-info-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:28px;
}

.contact-info-item i{
    color:#ff6b2d;
    font-size:20px;
    margin-top:4px;
    min-width:20px;
}

.contact-info-item p{
    margin:0;
    line-height:1.9;
}

/* RESPONSIVE */

@media(max-width:991px){

    .contact-wrapper{
        flex-direction:column;
    }

    .contact-left,
    .contact-right{
        width:100%;
    }

    .contact-left h2{
        font-size:34px;
    }
}

@media(max-width:768px){

    .form-row{
        flex-direction:column;
        gap:25px;
    }

    .contact-left h2{
        font-size:28px;
    }

    .info-box h3{
        font-size:24px;
    }
}

/* Map Banner */

/* MAP BANNER */

.map-banner{
    position:relative;
    width:100%;
    height:250px;
    overflow:hidden;
}

.map-banner iframe{
    width:100%;
    height:100%;
    filter:grayscale(10%);
}

/* DARK OVERLAY */

.map-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);

    display:flex;
    align-items:center;
    justify-content:center;
}

/* CONTENT */

.overlay-content{
    text-align:center;
    color:#fff;
}

.overlay-content h2{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
    letter-spacing:2px;
}

.overlay-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.map-btn{
    display:inline-block;
    background:#ff6b2d;
    color:#fff;
    padding:14px 35px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    border-radius:4px;
    transition:.3s;
}

.map-btn:hover{
    background:#e65a21;
}

/* RESPONSIVE */

@media(max-width:768px){

    .map-banner{
        height:400px;
    }

    .overlay-content h2{
        font-size:34px;
    }

    .overlay-content p{
        font-size:15px;
    }
}

/* Back to Top */

#backToTop{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #ff6b2d;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 999;
}

#backToTop i{
    font-size: 18px;
}

#backToTop:hover{
    background: #e85a20;
    transform: translateY(-3px);
}