/* ====================================
   HERO SECTION (Clean Layout)
==================================== */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1380px;
    margin: 0 auto;
    padding: 60px 20px;
    margin-top: 160px;
    font-family: inherit;
}
.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-subtitle {
    color: #3E7CB1;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    color: rgb(11, 36, 85);
    font-size: 46px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
}

.hero-content p {
    color: #555555;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-primary {
    background-color: #3E7CB1;
    color: #ffffff;
    border: 2px solid #3E7CB1;
}

.btn-primary:hover {
    background-color: rgb(11, 36, 85);
    border-color: rgb(11, 36, 85);
}

.btn-secondary {
    background-color: transparent;
    color: rgb(11, 36, 85);
    border: 2px solid rgb(11, 36, 85);
}

.btn-secondary:hover {
    background-color: rgb(11, 36, 85);
    color: #ffffff;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ====================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
==================================== */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content p {
        margin: 0 auto 30px auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        text-align: center;
        width: 100%;
    }
}

/* ====================================
   FEATURES SECTION
==================================== */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1380px;
    margin: 80px auto;
    padding: 0 20px;
}

.feature-box {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    cursor: default;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(11, 36, 85, 0.1);
    border-color: #3E7CB1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    background-color: rgba(62, 124, 177, 0.1);
    color: #3E7CB1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    background-color: #3E7CB1;
    color: #ffffff;
    transform: scale(1.1);
}

.feature-content h3 {
    color: rgb(11, 36, 85);
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

.feature-content p {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */
@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 20px;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
}


/* =========================
   ABOUT COMPANY
========================= */
.about-company {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1380px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid #3E7CB1;
    border-radius: 12px;
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(11, 36, 85, 0.15);
}

.about-content h2 {
    color: rgb(11, 36, 85);
    font-size: 36px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #3E7CB1;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.about-content p:first-of-type {
    font-size: 18px;
    color: rgb(11, 36, 85);
    font-weight: bold;
    border-left: 4px solid #3E7CB1;
    padding-left: 15px;
    margin-bottom: 25px;
}

.about-content p {
    color: #555555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

/* ====================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
==================================== */
@media (max-width: 992px) {
    .about-company {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 60px 20px;
    }

    .about-image {
        max-width: 600px;
        margin: 0 auto;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .about-content h2 {
        font-size: 30px;
    }
    
    .about-image::before {
        top: -10px;
        left: -10px;
    }
}

.page-home .about-text {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}

.page-home .company-highlights {
    background: #f5f5f5;
    padding: 30px 5% 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.page-home .highlight {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.page-home .highlight-icon {
    font-size: 3.5rem;
    color: #041a49;
    min-width: 60px;
}

.page-home .highlight h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;

    margin-bottom: 10px;
}

.page-home .highlight p {
    color: #000;
    font-size: 1rem;
    line-height: 1.7;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .page-home .about-company {
        grid-template-columns: 1fr;
    }

    .page-home .company-highlights {
        grid-template-columns: 1fr;
    }

    .page-home .about-content h2 {
        font-size: 2.2rem;
    }
}

.page-home .company-highlights {
    width: 100%;

    background: #f5f5f5;

    padding: 40px 5% 70px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.page-home .highlight {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.page-home .highlight-icon {
    font-size: 3.2rem;
    color: #1d4699;
    min-width: 50px;
}

.page-home .highlight-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #070245;
    margin-bottom: 8px;
}

.page-home .highlight-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #111;
}


/* ====================================
   WHO WE ARE SECTION
==================================== */

.who-we-are {
    padding: 100px 0;
    background-color: #f2f5fb;
}

.who-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.who-content {
    text-align: left;
}

.who-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    margin-top: 0;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

/* Glow or shadow to make white heading pop on any background image */
.who-content h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #3E7CB1; /* Base Blue */
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.who-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #000; /* High-contrast white */
    margin-bottom: 50px;
}

/* Stats (Inside Left Content) */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgb(165 165 165 / 19%);
    padding-top: 30px;
}

.stat h3 {
    font-size: 48px;
    font-weight: 900;
    color: rgb(11 36 85); /* Dark Accent color for numbers */
    margin: 0 0 10px 0;
}

.stat span {
    font-size: 14px;
    color: #e0e0e0; /* High-contrast light gray */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image (Right Side) */
.who-image {
    width: 100%;
    max-width: 550px; /* Optional cap so it doesn't get massive on big screens */
    margin: 0 auto;
}

.who-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Soft shadow for premium look */
}

/* ====================================
   RESPONSIVE DESIGN (Stacks on Mobile)
==================================== */
@media (max-width: 992px) {
    .who-container {
        grid-template-columns: 1fr; /* Stacks to a single column */
        text-align: center;
        gap: 60px;
    }
    
    .who-content {
        text-align: center;
    }
    
    .who-content h2::after {
        left: 50%;
        transform: translateX(-50%); /* Centered heading underline */
    }
    
    .stats {
        justify-items: center;
    }
}


/* ====================================
   MAIN SECTION & HEADER
==================================== */
.applications {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: Arial, sans-serif; /* Inherits your site's font */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: rgb(11, 36, 85); /* Dark blue accent */
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-header p {
    color: #555555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
}

/* ====================================
   LOGO CARDS GRID
==================================== */
.carousel-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1380px;
    margin: 0 auto 60px auto;
}

.card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(62, 124, 177, 0.15); /* Soft brand-blue glow */
    border-color: #3E7CB1;
}

.card img {
    max-width: 140px;
    height: 80px;
    object-fit: contain; /* Ensures logos aren't stretched */
    margin-bottom: 20px;
}

.card h3 {
    font-size: 16px;
    color: rgb(11, 36, 85);
    margin: 0;
    font-weight: 700;
}

/* ====================================
   ACCORDION (MORE CUSTOMERS)
==================================== */
.partner-section {
    max-width: 1380px;
    margin: 0 auto;
    background: #fdfdfd;
    border-radius: 12px;
    overflow: hidden; /* Keeps the borders neat when open */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* The clickable button */
.more-btn {
    background-color: #3E7CB1;
    color: #ffffff;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    list-style: none; /* Removes default HTML arrow */
    display: block;
    position: relative;
    transition: background-color 0.3s ease;
}

/* Removes default arrow specifically for webkit browsers */
.more-btn::-webkit-details-marker {
    display: none; 
}

.more-btn:hover {
    background-color: rgb(11, 36, 85);
}

/* Custom + / - icons for the accordion */
.more-btn::after {
    content: '+';
    position: absolute;
    right: 30px;
    font-size: 26px;
    top: 50%;
    transform: translateY(-50%);
}

.partner-section[open] .more-btn::after {
    content: '-';
}

/* ====================================
   INSIDE THE ACCORDION
==================================== */
.more-partners {
    padding: 40px 30px;
    border: 1px solid #eaeaea;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.partners-column_1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns by default */
    gap: 30px;
}

.column h3 {
    color: #3E7CB1;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(62, 124, 177, 0.2);
    padding-bottom: 10px;
    text-transform: uppercase;
}

.column p {
    font-size: 14px;
    color: #555555;
    margin: 0 0 12px 0;
    line-height: 1.4;
    position: relative;
    padding-left: 15px; /* Makes room for the custom bullet */
}

/* Adds a nice colored bullet point to the text */
.column p::before {
    content: "•";
    color: #3E7CB1;
    position: absolute;
    left: 0;
    top: 0;
}

/* ====================================
   RESPONSIVE LAYOUT
==================================== */
@media (max-width: 992px) {
    .partners-column_1 {
        grid-template-columns: repeat(2, 1fr); /* Drops to 2 columns on tablets */
    }
}

@media (max-width: 600px) {
    .partners-column_1 {
        grid-template-columns: 1fr; /* Drops to 1 column on phones */
    }
    
    .carousel-track {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .more-btn {
        font-size: 16px;
        padding: 15px 20px;
    }
}

/* Coverage */

/* ====================================
   AREAS WE SERVE SECTION
==================================== */

.coverage {
    padding: 70px 20px;
    background-color: #f8f9fa; /* A very soft, light gray background to make the white tags pop */
    text-align: center;
    font-family: Arial, sans-serif; /* Will inherit your site's main font */
}

/* Heading Styling */
.coverage h2 {
    font-size: 32px;
    font-weight: 800;
    color: rgb(11, 36, 85); /* Dark blue accent color */
    margin-top: 0;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

/* Decorative underline for the heading */
.coverage h2::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #3E7CB1; /* Brand light blue */
    bottom: -12px;
    left: 20%;
    border-radius: 2px;
}

/* Container for the cities */
.cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

/* Individual City Tags (Pill Design) */
.cities span {
    background-color: #ffffff;
    color: rgb(11, 36, 85);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px; /* Gives it the rounded pill shape */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Soft, elegant shadow */
    border: 1px solid rgba(11, 36, 85, 0.1); /* Very subtle border */
    transition: all 0.3s ease; /* Smooth animation */
    cursor: default; /* Change to 'pointer' if you plan to make them clickable links */
}

/* Hover Effect for City Tags */
.cities span:hover {
    background-color: #3E7CB1; /* Turns blue on hover */
    color: #ffffff;
    transform: translateY(-4px); /* Lifts the pill up slightly */
    box-shadow: 0 8px 15px rgba(62, 124, 177, 0.3); /* Creates a glowing shadow effect */
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */
@media (max-width: 600px) {
    .coverage h2 {
        font-size: 26px;
    }
    
    .cities span {
        font-size: 14px;
        padding: 10px 20px;
    }
}


/* counter animation start */

.page-home .stats {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}

/*.page-home .stat{*/
/*    text-align:center;*/
/*}*/

.page-home .stat h3{
     font-size: 2rem;
    color: #070f65;
    font-weight: 700;

    margin-bottom: 5px;
}

.page-home .stat span{
     font-size: 0.85rem;
    color: #322a2a;
}


/* counter animation end */


/* end home page style */


/* start about page style */

/* ====================================
   ABOUT HERO SECTION
==================================== */
.hero-about {
    background: linear-gradient(rgba(11, 36, 85, 0.7), rgba(11, 36, 85, 0.7)), url('/assets/images/about-banner.jpeg'); 
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 120px;
    position: relative;
    width: 100%;
    border-bottom: 5px solid #3E7CB1;
}

.hero-about h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.hero-about h1::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: #3E7CB1;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hero-about { height: 250px; }
    .hero-about h1 { font-size: 32px; }
}

/* ====================================
   STORY & LEADERSHIP SECTION
==================================== */
.story {
    max-width: 1380px;
    margin: 0 auto;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.story h2 {
    color: rgb(11, 36, 85);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
    position: relative;
}

.story h2 u {
    text-decoration: none; 
}

.story h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #3E7CB1;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.story p {
    color: #555555;
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 25px;
    text-align: justify;
}

.story p b {
    color: rgb(11, 36, 85); 
    font-weight: bold;
}
.story p:first-of-type::first-letter {
    color: #3E7CB1;
    font-size: 54px;
    font-weight: 900;
    float: left;
    line-height: 0.8;
    padding-right: 10px;
    margin-top: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* ====================================
   RESPONSIVE DESIGN (MOBILE)
==================================== */
@media (max-width: 768px) {
    .story {
        padding: 60px 20px;
    }
    
    .story h2 {
        font-size: 30px;
    }
    
    .story p {
        font-size: 16px;
        text-align: left;
    }
}

/* ====================================
   MANAGEMENT SECTION BASE
==================================== */
.management {
    padding: 80px 20px;
    background-color: #ffffff;
    max-width: 1380px;
    margin: 0 auto;
}

.management h2 {
    color: rgb(11, 36, 85);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
    position: relative;
}

.management h2 u {
    text-decoration: none; 
}

.management h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #3E7CB1;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.main-management {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.main-management img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-management img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 36, 85, 0.15);
}

.management-container {
    max-width: 1380px;
    margin: 0 auto 50px auto;
}

.management-content p {
    color: #555555;
    font-size: 17px;
    line-height: 1.85;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: justify;
}

.management-content p b {
    color: rgb(11, 36, 85);
    font-weight: bold;
}

.management-gallery {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.management-gallery img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ====================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
==================================== */
@media (max-width: 768px) {
    .management {
        padding: 60px 20px;
    }

    .management h2 {
        font-size: 30px;
    }

    .main-management, 
    .management-gallery {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .main-management img,
    .management-gallery img {
        max-width: 100%;
    }

    .management-content p {
        font-size: 16px;
        text-align: left;
    }
}

/* ====================================
   MISSION & VISION SECTION
==================================== */
.mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1380px;
    margin: 40px auto;
    padding: 0 20px;
}

.mission-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 36, 85, 0.08);
    border-top: 5px solid #3E7CB1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(11, 36, 85, 0.15);
}

.mission-box h2 {
    color: rgb(11, 36, 85);
    font-size: 32px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.mission-box h2::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #3E7CB1;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.mission-box p {
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* ====================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
==================================== */
@media (max-width: 768px) {
    .mission {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 20px;
    }
    
    .mission-box {
        padding: 40px 25px;
    }
}

/* ====================================
   "WHY CHOOSE US" SECTION
==================================== */
.why {
    padding: 80px 150px;
    background-color: #f8f9fa;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.why h2 {
    color: rgb(11, 36, 85);
    font-size: 36px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.why h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #3E7CB1;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-grid div {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px 20px;
    font-size: 18px;
    font-weight: bold;
    color: rgb(11, 36, 85);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: default;
}

.why-grid div::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #3E7CB1;
    margin-right: 15px;
    font-size: 24px;
    transition: color 0.3s ease;
}

.why-grid div:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(62, 124, 177, 0.15);
    border-color: #3E7CB1;
    color: #3E7CB1;
}

.why-grid div:hover::before {
    color: rgb(11, 36, 85); 
}

/* ====================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
==================================== */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .why {
        padding: 60px 20px;
    }
    
    .why h2 {
        font-size: 30px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid div {
        justify-content: flex-start;
        padding-left: 25px;
    }
}

/* ====================================
   STATS BANNER SECTION
==================================== */
.stats {
    background-color: rgb(11, 36, 85);
    padding: 70px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
}

.stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #3E7CB1;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 56px;
    font-weight: 900;
    color: #3E7CB1;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.stat h3::after {
    content: "+";
    font-size: 36px;
    color: #ffffff;
    margin-left: 5px;
    font-weight: bold;
}

.stat span {
    font-size: 16px;
    color: #e0e0e0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ====================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
==================================== */
@media (max-width: 992px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px;
    }
    
    .stat h3 {
        font-size: 48px;
    }
}

/* ====================================
   CTA SECTION (Floating Gradient Card Design)
==================================== */
.cta {
    background: linear-gradient(135deg, rgb(11, 36, 85) 0%, #3E7CB1 100%);
    border-radius: 16px;
    padding: 80px 40px;
    max-width: 1380px;
    margin: 80px auto; 
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(11, 36, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.cta::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

.cta h2, .cta p, .cta .btn {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 42px;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.cta .btn {
    display: inline-block;
    background-color: #fff !important;
    color: #FF6600 !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    padding: 18px 45px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta .btn:hover {
    background-color: #ffffff;
    color: #FF6600;
    transform: translateY(-5px);
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */
@media (max-width: 1200px) {
    .cta {
        margin: 80px 20px;
    }
}

@media (max-width: 768px) {
    .cta {
        margin: 60px 20px;
        padding: 60px 20px;
        border-radius: 12px;
    }
    
    .cta h2 {
        font-size: 32px;
    }
    
    .cta p {
        font-size: 16px;
    }
}
/* end about page style */




/* start services page style  */

.page-services .hero {
    padding: 120px 8%;
    text-align: center;
    background: linear-gradient(to right, #284bbb, #1a1a1a);
}

.page-services .hero h1 {
    color: #1184b1;
    font-size: 60px;
    margin-bottom: 20px;
}

.page-services .hero p {
    color: #1d9092;
}

/*.page-services section {*/
/*    padding: 90px 8%;*/
/*}*/

.page-services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 40px;
}

.page-services .intro {

    color: #2c5a6e;
}

.page-services .intro p {
    padding-top: 10px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    color: #0f095d;

}

.page-services .service-grid,
.page-services .why-grid,
.page-services .industry-grid {
    /*color: #4fc7d9;*/
    color:white;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.page-services .card,
.page-services .why-grid div,
.page-services .industry-grid div {
    background: #0d1d33;
    padding: 35px;
    text-align: center;
    border-radius: 15px;
    transition: .3s;
}

.page-services .card:hover,
.page-services .why-grid div:hover,
.page-services .industry-grid div:hover {
    transform: translateY(-8px);
}

.page-services .card i {
    font-size: 40px;
    color: #d4a64f;
    margin-bottom: 20px;
}

.page-services .timeline {
    color: #4fc7d9;     
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.page-services .step {
    /*color: #106b87;*/
    color:white;
    background: #0d1d33;
    padding: 20px 30px;
    border-radius: 10px;
}

.page-services .stats {
    color: #1184b1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.page-services .stat {
    background: #151b23;
    padding: 40px;
    border-radius: 15px;
}

.page-services .stat h3 {
    font-size: 45px;
    color: #d4a64f;
}

.page-services .cta {
    text-align: center;
    /*background: #111;*/
}

.page-services .cta p {
    max-width: 700px;
    margin: 20px auto 30px;
    /*color: #ccc;*/
    color:black !important;
}

.page-services .btn {
    background: #d4a64f;
    padding: 15px 35px;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
}
.page-services{
    background: #c4d4d6 !important;
}

/* end services page style */


/* GALLERY  section start */
/* ====================================
   HERO GALLERY SECTION
==================================== */
.hero-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    padding: 100px 20px;
    max-width: 1380px;
    margin: 50px auto 0 auto;
    font-family: Arial, sans-serif;
}

/* Text & Content */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-gallery h1 {
    color: rgb(11, 36, 85);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-gallery h1 u {
    text-decoration: none;
    border-bottom: 4px solid #3E7CB1;
}

.hero-gallery p {
    font-size: 20px;
    color: #555555;
    margin-bottom: 40px;
}

/* Request Button */
.hero-gallery .btn {
    display: inline-block;
    width: fit-content;
    background-color: #3E7CB1;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 35px;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hero-gallery .btn:hover {
    background-color: rgb(11, 36, 85);
}

/* Image Side */
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */
@media (max-width: 992px) {
    .hero-gallery {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }
}

/* ====================================
   OVERVIEW SECTION: MINIMALIST STYLE
==================================== */
.overview {
    padding: 80px 20px;
    max-width: 1380px;
    margin: 0 auto;
    text-align: center;
}

.overview h2 {
    color: rgb(11, 36, 85);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.overview h2 u { text-decoration: none; }

.overview h2::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #3E7CB1;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.overview p {
    color: #555555;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

/* ====================================
   FEATURES: MODERN GRID DESIGN
==================================== */
.gallery-features {
    padding: 100px 20px;
    background-color: #fcfcfc;
}

.gallery-features h2 {
    color: rgb(11, 36, 85);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
}

.gallery-features h2 u { text-decoration: none; }

.gallery-features h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #3E7CB1;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1380px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card i {
    font-size: 40px;
    color: #3E7CB1;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    color: rgb(11, 36, 85);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(11, 36, 85, 0.15);
    border-color: #3E7CB1;
}

.feature-card:hover i {
    transform: scale(1.1);
}

.gallery {
    padding: 80px 20px;
    max-width: 1380px;
    margin: 0 auto;
}

.gallery-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.gallery h2 {
    color: rgb(11, 36, 85);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.gallery h2 u { text-decoration: none; }

.gallery h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #3E7CB1;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.large-image {
    grid-column: span 2;
    grid-row: span 2;
}

.small-images {
    display: contents;
}

.gallery-layout img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.9);
}

.gallery-layout img:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    box-shadow: 0 20px 30px rgba(11, 36, 85, 0.2);
}

/* ====================================
   RESPONSIVE BENTO GRID
==================================== */
@media (max-width: 992px) {
    .gallery-layout {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .large-image {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .gallery-layout {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .large-image {
        grid-column: span 1;
    }
}

/* ====================================
   VIDEOS SHOWCASE SECTION
==================================== */
.videos {
    padding: 80px 20px;
    max-width: 1380px;
    margin: 0 auto;
}

.videos h2 {
    color: rgb(11, 36, 85);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.videos h2 u { text-decoration: none; }

.videos h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #3E7CB1;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.video-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.main-video video {
    width: 100%;
    height: 797px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #000;
}

.side-videos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.set-video_1, .set-video_2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.side-videos video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    background: #000;
    transition: transform 0.3s ease;
}

.side-videos video:hover {
    transform: scale(1.03);
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */
@media (max-width: 992px) {
    .video-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .set-video_1, .set-video_2 {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   GALLERY SECTION END
==================================== */


/* ====================================
   CONTACT SECTION START
==================================== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1380px;
    margin: 80px auto;
    padding: 0 20px;
}

.card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 36, 85, 0.15);
    border-color: #3E7CB1;
}

.card i {
    font-size: 36px;
    color: #3E7CB1;
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    color: rgb(11, 36, 85);
    font-size: 22px;
    margin-bottom: 20px;
}

.card a, .card p {
    display: block;
    color: #555555;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.card a:hover {
    color: #3E7CB1;
    font-weight: bold;
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */
@media (max-width: 768px) {
    .contact-info {
        gap: 20px;
    }
}

/* ====================================
   CONTACT SECTION: MODERN FORM
==================================== */
.contact-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
}

.contact-wrapper {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.contact-heading {
    text-align: center;
    margin-bottom: 50px;
}

.contact-heading span {
    color: #3E7CB1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.contact-heading h2 {
    color: rgb(11, 36, 85);
    font-size: 36px;
    margin: 15px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    margin-bottom: 20px;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

input, textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #3E7CB1;
    box-shadow: 0 0 0 3px rgba(62, 124, 177, 0.1);
}

.submit-btn {
    width: 100%;
    background-color: rgb(11, 36, 85);
    color: #ffffff;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #3E7CB1;
    transform: translateY(-2px);
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        padding: 30px;
    }
}

/* ====================================
   MANAGEMENT SECTION: CLEAN & PROFESSIONAL
==================================== */
.management {
    padding: 80px 20px;
    max-width: 1380px;
    margin: 0 auto;
    background-color: #ffffff;
}

.management h2 {
    color: rgb(11, 36, 85);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
}

.management h2::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #3E7CB1;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.management p {
    color: #555555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

/* ====================================
   RESPONSIVE DESIGN
==================================== */
@media (max-width: 768px) {
    .management {
        padding: 60px 20px;
    }
    
    .management h2 {
        font-size: 30px;
    }
    
    .management p {
        font-size: 16px;
        text-align: left;
    }
}

/* ====================================
   SOCIAL CONNECT SECTION
==================================== */
.social {
    padding: 0 0 40px 0;
    text-align: center;
    background-color: #ffffff;
}

.social h2 {
    color: rgb(11, 36, 85);
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 800;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #f4f4f4;
    color: #555555;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-icons a:first-child:hover {
    background-color: #1877f2;
}

.social-icons a:last-child:hover {
    background-color: #25d366;
}