@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@400;500&display=swap');

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    padding-top: 0%;
}

/* --- NAVBAR --- */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 0 6%;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    height: 75px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.navbar-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #0b1a35 !important;
    position: relative;
    transition: all 0.3s ease;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #f60404;
    transition: width 0.3s ease;
}
.nav-link:hover {
    color: #34a3f7 !important;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link.active {
    color: #34a3f7 !important;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-img {
    width: 70px;
    height: 70px;
    transition: 0.3s ease;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-main {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #34a3f7;
}
.logo-sub {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
    font-size: 12px;
    color: #f60404;
    letter-spacing: 2px;
    font-weight: 600;
}
.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}
.navbar-toggler {
    border: none;
    outline: none;
}
.navbar-toggler:focus {
    box-shadow: none;
}
@media (max-width: 992px) {

    .navbar {
        padding: 0 5%;
        height: 85px;
    }

    .navbar-nav {
        background: #ffffff;
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        gap: 15px;
    }

    .nav-link {
        padding: 10px 0;
        font-size: 14px;
    }

    .logo-main {
        font-size: 24px;
    }

    .logo-sub {
        font-size: 12px;
    }

    .logo-img {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 768px) {

    .navbar {
        height: 80px;
        padding: 0 4%;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 18px;
    }

    .nav-link {
        width: 100%;
        font-size: 14px;
    }

    .logo-main {
        font-size: 20px;
    }

    .logo-sub {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }
}
/*--- HERO SECTION ---*/

.hero-section {
    position: relative;
    margin-top: 100px;
    height: 100%;
    overflow: hidden;
}
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}
.hero-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}
.hero-section .carousel-caption {
    position: absolute;
    bottom: 20%;
    left: 8%;
    z-index: 2;
    max-width: 650px;
    color: #ffffff;
    text-align: left;
    animation: fadeUp 1s ease forwards;
}
.hero-section .carousel-caption h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}
.hero-section .hero-btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    background: #34a3f7;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.hero-section .hero-btn:hover {
    color: #000;
    transform: translateY(-3px);
}
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 6%;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {

    .hero-section {
        margin-top: 60px;
        
    }

   
    .hero-section .carousel-caption {
        left: 5%;
        bottom: 18%;
        max-width: 90%;
    }

    .hero-section .carousel-caption h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .hero-section .hero-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

}
/* ---FEATURE STRIP SECTION--- */

.feature-strip-section {
    padding: 60px 0;   
    margin-top: 0;    
}
.feature-strip {
    background: #0b1f3a;
    border-radius: 100px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px;
    transition: 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
}
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffffff !important;
    flex-shrink: 0;
}
.icon-box.blue {
    background-color: #1e3a8a !important;
}

.icon-box.green {
    background-color: #1f7a4d !important;
}

.icon-box.orange {
    background-color: #c46b13 !important;
}

.icon-box.brown {
    background-color: #8b5a2b !important;
}

.icon-box.purple {
    background-color: #5b3a9c !important;
}
.feature-text h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.feature-text p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0;
}
@media (min-width: 992px) {
    .feature-strip .col-lg:not(:last-child) {
        border-right: 1px solid rgba(255,255,255,0.12);
    }
}
@media (max-width: 992px) {

    .hero-section {
        height: 100%;
    }

    .hero-section .carousel-caption h1 {
        font-size: 40px;
    }

    .feature-strip {
        border-radius: 40px;
    }

    .feature-strip-section {
        padding: 40px 0;  
    }
}
@media (max-width: 768px) {
    
    .hero-section {
        margin-top: 80px;
        height: 100%;
    }

    .hero-section .carousel-caption {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .hero-section .carousel-caption h1 {
        font-size: 28px;
    }

    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        display: none;
    }

    .feature-strip-section {
        padding: 30px 0; 
    }

    .feature-strip {
        border-radius: 30px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .feature-text h4 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 12px;
    }
}
/* --- SECTION HEADER --- */

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle,
.subheading {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #34a3f7;   
    margin-bottom: 12px;
    position: relative;
}

.section-subtitle::after,
.subheading::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #f60404;
    margin: 8px auto 0;
}

.section-header h2,
.section-heading,
.main-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.section-header p,
.section-description,
.description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}


@media (max-width: 768px) {
    .section-header h2,
    .section-heading,
    .main-heading {
        font-size: 28px;
    }
}


/*---SERVICES SECTION---*/

.services-section {
    padding: 120px 8%;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.services-section .row {
    display: flex;
    flex-wrap: wrap;
}

.services-section .col-lg-4,
.services-section .col-md-6,
.services-section .col-sm-12 {
    display: flex;
}
.service-card {
    background: #ffffff;
    padding: 40px 28px;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #f60404;   
    margin-top: 18px;
    transition: 0.3s ease;
}

.service-card h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #34a3f7;
    margin-top: 18px;
    text-align: center;
}

.service-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-circle {
    background: #ffffff;
    transform: scale(1.12);
}

.expandable-card .service-list {
    list-style: none;
    padding: 0;
    margin-top: 22px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease;
    width: 100%;
    text-align: left;
}

.service-list > li {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.7;
    position: relative;
    padding-left: 26px;
    color: #34a3f7;   
    transition: 0.3s ease;
}

.service-list > li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    background: #e7f1ff;
    color:  #f60404;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
}

.sub-list {
    list-style: none;
    padding-left: 18px;
    margin-top: 8px;
}

.sub-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
    color: #34a3f7;  
}

.sub-list li::before {
    content: "▸";
    color: #f60404;   
    position: absolute;
    left: 0;
}

.expandable-card:hover {
    background: whitesmoke;
    text-align: left;
}

.expandable-card:hover .service-list {
    max-height: 1200px;
    opacity: 1;
}



.expandable-card:hover .service-list > li,
.expandable-card:hover .sub-list li {
    color: #34a3f7;   
}

.expandable-card:hover .service-list > li::before,
.expandable-card:hover .sub-list li::before {
    color: #f60404; 
}

@media (max-width: 992px) {
    .services-section {
        padding: 90px 6%;
    }
}

@media (max-width: 768px) {
    .service-card {
        padding: 28px 20px;
        min-height: auto;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .service-card h3 {
        font-size: 15px;
    }
}

/* --- SPARES SECTION ---*/

.spares-section .spare-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    text-align: center;
}

.spares-section .spare-card img {
    width: 100%;
    height: 190px;
    object-fit: contain;   
    display: block;
    margin: 0 auto;
    background: linear-gradient(145deg, #f8f8f8, #eef1f5);
    padding: 15px;         
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.spares-section .spare-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.spares-section .spare-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .spares-section .spare-card img {
        height: 160px;
    }
}

/*--- SOLUTIONS SECTION ---*/

.solutions-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 100px 0;
    position: relative;
}

.industries-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.industries-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.industry-card {
    position: relative;
    flex: 0 0 auto;
    width: 350px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-card:hover img {
    transform: scale(1.08);
}
.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.4),
        transparent
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    text-align: center;
    transition: background 0.4s ease;
}

.industry-card:hover .industry-overlay {
    background: transparent;
}

.industry-overlay h5 {
    color: #ffffff;
    font-weight: 600;
    font-size: 25px;
    letter-spacing: 1px;
    margin: 0;
    transition: transform 0.4s ease;
}

.industry-card:hover .industry-overlay h5 {
    transform: translateY(-5px);
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .industry-card {
        width: 260px;
        height: 380px;
    }

    .industry-overlay {
        padding: 20px;
    }

    .industry-overlay h5 {
        font-size: 18px;
    }
}
/* --- LIFECYCLE SECTION --- */

.lifecycle-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 100px 0;
}

.lifecycle-section .description {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.7;
}

.lifecycle-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.lifecycle-section .accordion-button {
    background: #eef3fb;
    color: #0b1a35;
    font-weight: 600;
    padding: 18px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.lifecycle-section .accordion-button:hover {
    background: #dfe8fa;
}

.lifecycle-section .accordion-button:not(.collapsed) {
    background: #34a3f7;
    color: #ffffff;
    box-shadow: none;
}

.lifecycle-section .accordion-button:focus {
    box-shadow: none;
}

.lifecycle-section .accordion-button::after {
    filter: brightness(0) invert(1);
}

.lifecycle-section .accordion-body {
    background: #ffffff;
    color: #555;
    padding: 20px;
    line-height: 1.6;
    border-top: 1px solid #e5e5e5;
}

.lifecycle-section img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.lifecycle-section img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .lifecycle-section {
        padding: 70px 0;
    }

    .lifecycle-section .main-heading {
        font-size: 28px;
    }

    .lifecycle-section img {
        height: 140px;
        margin-top: 30px;
    }
}

.allied-section {
    background: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}


/* --- ALLIED SECTION ---*/

.allied-section {
    background: #f9f9f9;
    padding: 90px 0;
    text-align: center;
}

.subheading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.section-description {
    max-width: 850px;
    margin: 0 auto 50px auto;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* --- CARD DESIGN ---*/

.allied-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    height: 100%;
    text-align: left;
}

.allied-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.allied-card-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.allied-card-body {
    padding: 28px;
}

.allied-card-body h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 6px;
}

.card-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 18px;
}

.allied-tick {
    list-style: none;
    padding: 0;
    margin: 0;
}

.allied-tick li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.allied-tick li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    background: #e7f1ff;
    color:  #f60404;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: bold;
}

.multi-img {
    display: grid;
    gap: 6px;
    padding: 10px;
}

.multi-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

.three-img {
    grid-template-columns: repeat(3, 1fr);
}

.two-img {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .three-img {
        grid-template-columns: 1fr;
    }

    .two-img {
        grid-template-columns: 1fr;
    }
}
/* --- ENGAGEMENT SECTION --- */

.engagement-section {
    padding: 90px 0;
    background: #f4f6f9;
}

.engagement-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.engagement-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    border-left: 5px solid #34a3f7;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.engagement-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #34a3f7;
}

.engagement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.engagement-card ul li {
    font-size: 15px;
    margin-bottom: 14px;
    padding-left: 20px;
    position: relative;
    color: #333;
}

.engagement-card ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: red !important;
    font-size: 14px;
}

.engagement-disclaimer {
    margin-top: 50px;
    padding: 20px 20px;
    background: #ffffff;
    border-left: 3px solid #dc3545;
    font-size: 10px;
    color: #666;
    line-height: 1.8;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .engagement-section {
        padding: 60px 0;
    }

    .engagement-card {
        margin-top: 30px;
    }

    .engagement-section .section-header h2 {
        font-size: 28px;
    }
}
/* --- DOMESTIC ASSOCIATES --- */

.associates-section {
    padding: 80px 0;
    background: #f4f6f9;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.modern-table thead {
    background: #34a3f7;
}

.modern-table thead th {
    color: #ffffff;
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    font-size: 15px;
}

.modern-table tbody td {
    padding: 22px 20px;
    font-size: 15px;
    color: #444;
    vertical-align: top;
}

.modern-table tbody tr:nth-child(even) {
    background: #f1f1f1;
}

.modern-table tbody tr:hover {
    background: #e6edf7;
    transition: 0.3s ease;
}

.modern-table tbody td:first-child {
    font-weight: 600;
    color: #222;
}

@media (max-width: 768px) {
    .modern-table thead {
        display: none;
    }

    .modern-table, 
    .modern-table tbody, 
    .modern-table tr, 
    .modern-table td {
        display: block;
        width: 100%;
    }

    .modern-table tr {
        margin-bottom: 20px;
        background: #ffffff;
        padding: 15px;
    }

    .modern-table td {
        padding: 10px 0;
    }
}
/* --- PROJECTS GALLERY --- */

.projects-gallery {
    background: #f9f9f9;
    padding: 80px 0;
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    transform: translateY(100%);
    transition: 0.4s ease;
    z-index: 2;
}

.gallery-card:hover .gallery-text {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .gallery-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-img {
        height: 170px;
    }
}

@media (max-width: 576px) {
    .gallery-img {
        height: 150px;
    }
}
/* --- PROJECT TESTIMONIALS --- */
.project-testimonials {
    background: #f4f7ff;
    padding: 60px 20px;
    
}

.project-testimonials .section-description {
    font-size: 14px;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #555;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    position: relative;
}

.video-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.project-video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.video-caption {
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #34a3f7;
    text-align: center;
}

@media (max-width: 992px) {
    .project-video { height: 200px; }
}

@media (max-width: 768px) {
    .project-video { height: 180px; }
}

@media (max-width: 576px) {
    .project-video { height: 160px; }
}

.contact-section {
    background: #f8f9fa;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
    border-top: 4px solid #0d6efd;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card p {
    color: #6c757d;
}

.contact-card a {
    text-decoration: none;
    color: #212529;
    font-weight: 500;
}

.contact-card a:hover {
    color: #0d6efd;
}

/* Form Box */
.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    border-radius: 8px;
}

.contact-form-box button {
    border-radius: 30px;
    font-weight: 600;
}
/* --- FOOTER BASE --- */
.main-footer {
    background-color: rgb(11, 31, 58);
    color: #ffffff; 
    font-family: 'Roboto', sans-serif;
    padding-top: 50px;
    padding-bottom: 30px;
    
}
.footer-logo {
    width: 100px;
    height: 100px;
    cursor: pointer;
    
}
.main-footer h5 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.main-footer .footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
}

.main-footer i.bi {
    font-size: 18px;
    color: #f60404;
}

.main-footer .footer-link {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.main-footer .footer-link:hover {
    color: #f60404;
    text-decoration: none;
}

.main-footer ul li {
    margin-bottom: 10px;
    font-size: 13px;
    color: #d0d0d0;
    display: flex;
    align-items: center;
}

.main-footer ul li i.bi-check-circle-fill {
    font-size: 15px;
    margin-right: 8px;
    color: #f60404; 
}

.main-footer .d-flex.align-items-start {
    margin-bottom: 12px;
}

.main-footer .d-flex.align-items-start a {
    font-size: 14px;
    color: #d0d0d0;
}

.main-footer .d-flex.align-items-start a:hover {
    color: #f60404;
}

.footer-bottom {
    font-size: 13px;
    color: #d0d0d0;
}

.footer-bottom a {
    color: #d0d0d0;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #f60404;
}


@media (max-width: 576px) {
    .main-footer h5 {
        font-size: 16px;
    }

    .main-footer ul li {
        font-size: 13px;
    }

    .main-footer .footer-text {
        font-size: 13px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20c15a;
    color: #fff;
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 10px;
    }
}