* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Allow text selection in form fields and content areas */
input, textarea, select, .about-content, .about-content * {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* About Us Content - Match Banner Alignment */
.about-content {
    max-width: 90%;
    width: 90%;
    margin: 0 auto;
    margin-left: 5%;
    margin-right: 5%;
    text-align: justify;
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-content p {
    margin-bottom: 20px;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

nav .brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav .logo {
    flex-shrink: 0;
}

.logo img {
    height: 52px;
    width: auto;
}

.brand-tagline {
    display: flex;
    flex-direction: column;
    color: #1e3a5f;
    font-size: 0.85rem;
    line-height: 1.2;
    font-weight: 600;
}

.brand-tagline p {
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.nav-links a {
    text-decoration: none;
    color: #1e3a5f;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2563eb;
}

.consultation-btn {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
    display: inline-block;
    margin-left: 2rem;
}

.mobile-consultation {
    display: none;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1e3a5f;
    transition: all 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.55) 0%, rgba(37, 99, 235, 0.55) 100%), url('../images/banner.jpg') center/cover;
    color: white;
    padding: 100px 20px 120px;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    width: 100%;
    margin-left: 5%;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.05;
}

.hero .tagline {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    width: 90%;
    margin: 0;
    margin-left: 5%;
    margin-right: 5%;
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #1e3a5f;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Stats Section */
.stats {
    background: #f8fafc;
    padding: 60px 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.feature-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    color: #1e3a5f;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    padding: 80px 20px;
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: block;
    color: inherit;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s, background 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.service-icon {
    margin-bottom: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* Query Form Section */
.query-form {
    padding: 80px 20px;
    background: #f8fafc;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1e3a5f;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Footer */
footer {
    background: #122d5f;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section h3 {
    margin-bottom: 0;
    font-size: 1.35rem;
    color: #ffffff;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    line-height: 1.9;
    display: block;
    margin: 0;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section strong {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    .hero-content {
        margin-left: 3%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-consultation {
        display: none !important;
    }

    .mobile-consultation {
        display: block;
    }

    .mobile-consultation .consultation-btn {
        background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
        color: white;
        padding: 12px 25px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        width: 100%;
        text-align: center;
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
        z-index: 999;
        gap: 0;
        align-items: flex-start;
        margin-left: 0;
        justify-content: flex-start;
    }
    
    nav {
        justify-content: space-between;
    }
    
    .mobile-consultation {
        width: 100%;
        margin-top: 10px;
    }
    
    .mobile-consultation .consultation-btn {
        width: 100%;
        text-align: center;
    }

    .nav-links.active .consultation-btn {
        display: block;
        margin-top: 20px;
        text-align: center;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 5px 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        margin-left: 3%;
        margin-right: 3%;
        padding: 0 10px;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .form-container {
        padding: 20px 15px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Header */
.header{
    background:#ffffff;
    box-shadow:0 2px 20px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
}

.brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    height:70px;
    width:auto;
}

.brand-content{
    display:flex;
    align-items:center;
    gap:15px;
}

.brand-content h2{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#003366;
    letter-spacing:1px;
}

.divider{
    width:2px;
    height:55px;
    background:#d4af37;
}

.brand-tagline{
    font-size:11px;
    font-weight:600;
    color:#666;
    line-height:1.5;
    text-transform:uppercase;
}

.brand-tagline p{
    margin:0;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#003366;
}

/* =========================
   HEADER
========================= */
.header{
    background:#fff;
    box-shadow:0 2px 20px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1px 20px;
}

.brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:auto;
    height:70px;
    display:block;
}

.brand-content{
    display:flex;
    align-items:center;
    gap:15px;
}

.brand-content h2{
    margin:0;
    font-size:28px;
    color:#003366;
    font-weight:700;
}

.divider{
    width:2px;
    height:55px;
    background:#d4af37;
}

.brand-tagline{
    font-size:11px;
    font-weight:600;
    color:#666;
    text-transform:uppercase;
    line-height:1.5;
}

.brand-tagline p{
    margin:0;
}

/* Desktop Menu */
.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#003366;
}

.mobile-menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
}

.mobile-menu-toggle span{
    width:28px;
    height:3px;
    background:#003366;
    border-radius:5px;
}

/* =========================
   TABLET
========================= */
@media (max-width:991px){

    .logo img{
        height:60px;
    }

    .brand-content h2{
        font-size:22px;
    }

    .brand-tagline{
        font-size:10px;
    }

    .nav-links{
        gap:18px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width:768px){

    .navbar{
        flex-wrap:wrap;
    }

    .brand{
        width:100%;
        justify-content:flex-start;
    }

    .logo img{
        height:55px;
    }

    .brand-content{
        gap:10px;
    }

    .brand-content h2{
        font-size:18px;
    }

    .divider{
        height:45px;
    }

    .brand-tagline{
        font-size:8px;
        line-height:1.4;
    }

    .mobile-menu-toggle{
        display:flex;
        position:absolute;
        right:20px;
        top:25px;
    }

    .nav-links{
        display:none;
        width:100%;
        flex-direction:column;
        background:#fff;
        margin-top:15px;
        padding:15px 0;
        border-top:1px solid #eee;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links a{
        display:block;
        padding:12px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width:480px){

    .brand{
        gap:10px;
    }

    .logo img{
        height:45px;
    }

    .brand-content h2{
        font-size:16px;
    }

    .divider{
        display:none;
    }

    .brand-tagline{
        font-size:7px;
    }
}
.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.4);
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:998;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}
/* Mobile Toggle Button */
.mobile-menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    z-index:1001;
}

.mobile-menu-toggle span{
    width:28px;
    height:3px;
    background:#003366;
    border-radius:5px;
}

/* Mobile View */
@media (max-width:768px){

    .mobile-menu-toggle{
        display:flex;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-320px;
        width:300px;
        height:100vh;
        background:#ffffff;
        flex-direction:column;
        align-items:flex-start;
        padding:100px 30px 30px;
        gap:20px;
        box-shadow:-5px 0 25px rgba(0,0,0,.15);

        display:flex;
        transition:all .5s ease;
        z-index:999;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links li{
        width:100%;
        list-style:none;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:12px 0;
        font-size:18px;
        font-weight:600;
        color:#003366;
        border-bottom:1px solid #eee;
        text-decoration:none;
    }
}
@media (max-width:768px){

    .menu-close{
        display:block;

        position:absolute;
        top:20px;
        right:20px;

        background:none;
        border:none;

        font-size:32px;
        color:#003366;
        cursor:pointer;
        z-index:1001;
    }

}
@media (max-width:768px){

    .mobile-menu-toggle{
        display:flex;
        flex-direction:column;
        gap:5px;
        background:none;
        border:none;
        cursor:pointer;
        z-index:1100;
    }

    .mobile-menu-toggle span{
        width:28px;
        height:3px;
        border-radius:20px;
        background:#003366;
        transition:.4s;
    }

    /* Overlay */
    .menu-overlay{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.45);
        backdrop-filter:blur(4px);
        opacity:0;
        visibility:hidden;
        transition:.4s ease;
        z-index:998;
    }

    .menu-overlay.active{
        opacity:1;
        visibility:visible;
    }

    /* Premium Drawer */
    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:320px;
        max-width:85%;
        height:100vh;

        background:linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );

        display:flex;
        flex-direction:column;
        gap:8px;

        padding:90px 25px 30px;

        box-shadow:
            -10px 0 40px rgba(0,0,0,.15);

        transition:right .45s cubic-bezier(.22,.61,.36,1);

        z-index:999;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links li{
        list-style:none;
        width:100%;
    }

    .nav-links a{
        display:flex;
        align-items:center;

        padding:16px 18px;
        border-radius:12px;

        text-decoration:none;
        color:#1f2937;

        font-size:16px;
        font-weight:600;

        transition:.3s ease;
    }

    .nav-links a:hover{
        background:#003366;
        color:#fff;
        transform:translateX(5px);
    }

    .nav-links a::before{
        content:"";
        width:6px;
        height:6px;
        border-radius:50%;
        background:#d4af37;
        margin-right:12px;
    }

/* Header Logo Area */
.nav-links::before{
    content:"";
    position:absolute;
    top:20px;
    left:25px;

    width:180px;   /* logo width */
    height:60px;   /* logo height */

    background-image:url("../images/logo.png");
    background-repeat:no-repeat;
    background-position:left center;
    background-size:contain;
}
        font-size:22px;
        font-weight:700;
        color:#003366;

        border-bottom:2px solid #d4af37;
        padding-bottom:10px;
        width:calc(100% - 50px);
    }
}
.about-section{
    padding:100px 0;
    background:#f8fafc;
}

.section-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-subtitle{
    color:#d4af37;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.section-title{
    font-size:42px;
    color:#003366;
    margin:10px 0;
}

.section-description{
    color:#666;
    font-size:18px;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-text h3{
    font-size:32px;
    color:#003366;
    margin-bottom:20px;
}

.about-text p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

.about-btn{
    display:inline-block;
    margin-top:20px;
    background:#003366;
    color:#fff;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    transform:translateY(-3px);
}

.about-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.about-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-8px);
}

.about-card h4{
    color:#003366;
    margin-bottom:10px;
    font-size:20px;
}

.about-card p{
    color:#666;
    line-height:1.6;
}
@media (max-width:768px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:32px;
    }

    .about-text h3{
        font-size:26px;
    }
}
/* WHY CHOOSE US SECTION */

.features{
    padding:100px 0;
    background:#ffffff;
}

.features .section-title{
    text-align:center;
    font-size:42px;
    color:#003366;
    margin-bottom:60px;
    position:relative;
}

.features .section-title::after{
    content:"";
    width:80px;
    height:4px;
    background:#d4af37;
    display:block;
    margin:15px auto 0;
    border-radius:10px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-card{
    background:#fff;
    padding:35px 30px;
    border-radius:18px;

    border:1px solid #edf2f7;

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

    transition:all .35s ease;

    position:relative;
    overflow:hidden;
}

.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#003366;

    transform:scaleX(0);
    transition:.4s;
}

.feature-card:hover::before{
    transform:scaleX(1);
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.feature-icon{
    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eff6ff;

    border-radius:20px;

    margin-bottom:25px;
}

.feature-icon svg{
    width:42px;
    height:42px;
}

.feature-card h3{
    font-size:22px;
    color:#003366;
    margin-bottom:15px;
    line-height:1.4;
}

.feature-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* Tablet */
@media (max-width:992px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .features .section-title{
        font-size:34px;
    }
}

/* Mobile */
@media (max-width:768px){

    .features{
        padding:70px 0;
    }

    .features-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .features .section-title{
        font-size:28px;
        margin-bottom:40px;
    }

    .feature-card{
        padding:25px;
    }

    .feature-card h3{
        font-size:20px;
    }
}
/* =========================
   HERO SECTION
========================= */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

/* Slider */

.hero-slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

/* Images */

.slide:nth-child(1){
    background-image:url('../images/banner.jpg');
}

.slide:nth-child(2){
    background-image:url('../images/hero3.jpg');
}

.slide:nth-child(3){
    background-image:url('../images/hero4.jpg');
}

.slide.active{
    opacity:1;
}

/* Overlay */

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 35, 75, 0.70);
    z-index:1;
}

/* Content */

.hero-content{
    position:relative;
    z-index:2;

    max-width:900px;
    height:100%;

    margin:auto;
    padding:20px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:#fff;
}

.hero-tag{
    display:inline-block;

    padding:10px 20px;

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

    border:1px solid rgba(255,255,255,.25);

    backdrop-filter:blur(8px);

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:25px;
}

.hero h1{
    font-size:62px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:20px;
}

.hero h1 span{
    color:#d4af37;
}

.hero p{
    max-width:700px;

    font-size:20px;
    line-height:1.8;

    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.cta-button{
    background:#d4af37;
    color:#fff;

    padding:15px 35px;

    border-radius:8px;

    text-decoration:none;
    font-weight:600;

    transition:.3s;
}

.cta-button:hover{
    transform:translateY(-3px);
}

.secondary-button{
    border:2px solid #fff;

    color:#fff;

    padding:15px 35px;

    border-radius:8px;

    text-decoration:none;
    font-weight:600;

    transition:.3s;
}

.secondary-button:hover{
    background:#fff;
    color:#003366;
}

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

@media(max-width:768px){

    .hero{
        height:90vh;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .cta-button,
    .secondary-button{
        width:220px;
        text-align:center;
    }
}
/* =========================
   FOOTER
========================= */

.footer{
    background:linear-gradient(
        135deg,
        #002147 0%,
        #003366 100%
    );

    color:#ffffff;

    margin-top:80px;
}

.footer-container{
    max-width:1200px;
    margin:auto;

    padding:70px 20px 40px;

    display:grid;
    grid-template-columns:1.2fr 1fr 1.2fr;
    gap:50px;
}

.footer-logo{
    height:70px;
    width: 300px;
    margin-bottom:20px;
    background:#fff;
    padding:8px;
    border-radius:8px;
}

.footer-section h3{
    font-size:22px;
    margin-bottom:25px;
    color:#d4af37;
}

.footer-section h4{
    color:#d4af37;
    margin-top:20px;
    margin-bottom:8px;
    font-size:16px;
}

.footer-section p{
    color:rgba(255,255,255,.85);
    line-height:1.8;
}

.footer-section ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-section ul li{
    margin-bottom:12px;
}

.footer-section ul li a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    transition:.3s;
}

.footer-section ul li a:hover{
    color:#d4af37;
    padding-left:5px;
}

.office-info{
    margin-top:15px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    padding:20px;

    font-size:14px;

    color:rgba(255,255,255,.75);
}
@media (max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }

    .footer-logo{
        margin:auto auto 20px;
    }

    .footer-section ul li a:hover{
        padding-left:0;
    }
}
.footer{
    border-top:4px solid #d4af37;
}
/* Service Hero */

.service-hero{
    min-height:450px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    background:
    linear-gradient(
        rgba(0,51,102,.82),
        rgba(0,51,102,.82)
    ),
    url('images/accounting-banner.jpg');

    background-size:cover;
    background-position:center;
}

.service-badge{
    display:inline-block;

    background:#d4af37;
    color:#fff;

    padding:8px 18px;
    border-radius:50px;

    font-size:13px;
    font-weight:600;

    margin-bottom:20px;
}

.service-hero h1{
    font-size:55px;
    color:#fff;
    margin-bottom:20px;
}

.service-hero p{
    color:#fff;
    max-width:750px;
    margin:auto;
}

/* Details */

.service-details-section{
    padding:90px 20px;
    background:#f8fafc;
}

.service-header{
    text-align:center;
    margin-bottom:60px;
}

.service-header h2{
    font-size:42px;
    color:#003366;
}

.service-header p{
    color:#666;
    margin-top:10px;
}

.service-content-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.service-main-content{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.service-main-content p{
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.service-box{
    background:#003366;
    color:#fff;

    padding:35px;
    border-radius:15px;
}

.service-box h3{
    margin-bottom:20px;
    color:#d4af37;
}

.service-box ul{
    list-style:none;
    padding:0;
}

.service-box li{
    margin-bottom:15px;
}

/* Mobile */

@media(max-width:768px){

    .service-hero h1{
        font-size:34px;
    }

    .service-content-grid{
        grid-template-columns:1fr;
    }

    .service-header h2{
        font-size:28px;
    }

    .service-main-content{
        padding:25px;
    }
}
.service-section{
    padding:80px 20px;
    background:#f8fafc;
}

.service-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 50px;
}

.service-tag{
    display:inline-block;
    background:#d4af37;
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.service-subtitle{
    color:#666;
    font-size:18px;
}

.service-content-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.service-content-box{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.service-content-box p{
    line-height:1.9;
    margin-bottom:20px;
}

.service-benefits-box{
    background:#003366;
    color:#fff;
    padding:35px;
    border-radius:15px;
}

.service-benefits-box h3{
    color:#d4af37;
    margin-bottom:20px;
}

.service-benefits-box ul{
    list-style:none;
    padding:0;
}

.service-benefits-box li{
    margin-bottom:15px;
    padding-left:20px;
    position:relative;
}

.service-benefits-box li:before{
    content:"✓";
    position:absolute;
    left:0;
    color:#d4af37;
}

.service-highlight{
    max-width:1200px;
    margin:40px auto 0;
    background:#fff;
    padding:30px;
    border-left:5px solid #d4af37;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.service-highlight h3{
    color:#003366;
    margin-bottom:10px;
}

@media(max-width:768px){

    .service-content-grid{
        grid-template-columns:1fr;
    }

    .service-content-box,
    .service-benefits-box{
        padding:25px;
    }
}
/* ==========================
   ISO SERVICE SECTION
========================== */

.service-section{
    padding:90px 20px;
    background:#f8fafc;
}

.service-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.service-tag{
    display:inline-block;
    background:#d4af37;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.service-heading .section-title{
    color:#003366;
    margin-bottom:15px;
    font-size:42px;
}

.service-subtitle{
    color:#666;
    font-size:18px;
    line-height:1.7;
}

.service-content-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.service-content-box{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.service-content-box p{
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

.service-benefits-box{
    background:#003366;
    color:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.service-benefits-box h3{
    color:#d4af37;
    margin-bottom:25px;
}

.service-benefits-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.service-benefits-box li{
    position:relative;
    padding-left:25px;
    margin-bottom:15px;
    line-height:1.7;
}

.service-benefits-box li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#d4af37;
    font-weight:bold;
}

.service-highlight{
    max-width:1200px;
    margin:35px auto 0;

    background:#fff;

    padding:30px;

    border-left:5px solid #d4af37;
    border-radius:12px;

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

.service-highlight h3{
    color:#003366;
    margin-bottom:15px;
}

.service-highlight p{
    color:#555;
    line-height:1.8;
}

/* Mobile */

@media(max-width:768px){

    .service-content-grid{
        grid-template-columns:1fr;
    }

    .service-heading .section-title{
        font-size:30px;
    }

    .service-subtitle{
        font-size:16px;
    }

    .service-content-box,
    .service-benefits-box{
        padding:25px;
    }

    .service-highlight{
        padding:25px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .navbar{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:10px 15px;
    }

    .brand{
        display:flex;
        align-items:center;
        gap:10px;
        flex:1;
    }

    .logo img{
        height:45px;
        width:auto;
    }

    /* Mobile par tagline hide */
    .brand-content{
        display:none;
    }

    .mobile-menu-toggle{
        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:4px;
        background:none;
        border:none;
        cursor:pointer;
        padding:5px;
    }

    .mobile-menu-toggle span{
        width:25px;
        height:3px;
        background:#0c2d62;
        border-radius:3px;
    }

}
@media (max-width:768px){

    .brand-content{
        display:block;
    }

    .brand-tagline{
        font-size:7px;
        line-height:1.2;
    }

    .divider{
        height:28px;
    }

    .logo img{
        height:40px;
    }
}