
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    /* ==========================
   GLOBAL RESPONSIVE FIXES
========================== */
html,
body {
    overflow-x: hidden;
}

.footer p,
.footer span {
    overflow-wrap: break-word;
    word-break: break-word;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fluid Typography */
.section-title {
    font-size: clamp(2rem, 5vw, 46px);
}

.section-sub {
    font-size: clamp(14px, 2vw, 17px);
}

/* Flexible Containers */
.container-fluid {
    width: 100%;
    max-width: 100%;
}

/* Hero Section */
.hero-section {
    padding: clamp(80px, 10vw, 140px) 0;
}

/* Decorative Blur Elements */
.hero-section::before,
.hero-section::after {
    width: 35vw;
    height: 35vw;
    min-width: 180px;
    min-height: 180px;
    max-width: 450px;
    max-height: 450px;
}

/* Cards */
.glass-card,
.testimonial-card,
.faq-item {
    height: auto;
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Table Responsive */
.table-dark-custom {
    overflow-x: auto;
}

.table-dark-custom table {
    min-width: 700px;
}

/* Contact Box */
.contact-box {
    padding: clamp(25px, 5vw, 60px);
}

/* Floating Buttons */
.whatsapp-float,
.totop {
    right: 15px;
}

/* ==========================
   LARGE TABLETS
========================== */

@media (max-width: 991px) {

    .navbar-brand img {
        max-height: 50px;
    }

    .mega-dropdown-menu {
        padding: 1rem;
    }

    .section-space {
        padding: 70px 0;
    }

    .glass-card,
    .testimonial-card {
        padding: 25px;
    }
}

/* ==========================
   TABLETS
========================== */

@media (max-width: 768px) {

    .section-space {
        padding: 60px 0;
    }

    .hero-section {
        text-align: center;
        padding: 90px 0 70px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
        margin: 0 auto 20px;
    }

    .contact-box {
        padding: 30px 20px;
    }

    .glass-card,
    .testimonial-card,
    .faq-item {
        padding: 20px;
    }

    .btn-custom,
    .btn-custom-primary,
    .btn-custom-outline {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 576px) {

    .section-space {
        padding: 50px 0;
    }

    .section-title {
        line-height: 1.2;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section::before,
    .hero-section::after {
        display: none;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .badge-custom {
        font-size: 12px;
        padding: 10px 18px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        justify-content: center;
        padding: 0;
    }

    .totop {
        width: 42px;
        height: 42px;
        bottom: 85px;
    }

    .table-dark-custom table {
        min-width: 600px;
    }
}

/* ==========================
   EXTRA SMALL DEVICES
========================== */

@media (max-width: 375px) {

    .section-title {
        font-size: 28px;
    }

    .section-sub {
        font-size: 14px;
    }

    .contact-box {
        padding: 20px 15px;
    }

    .glass-card,
    .testimonial-card,
    .faq-item {
        padding: 15px;
    }
}

    .navy{
      color: navy;
    }
    
    .navyy{
      background-color: navy;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      overflow-x: hidden;
    }

    /* Common button style (primary, outline, link) */
    .btn-custom-primary {
      background-color: #003a8b;
      border: none;
      padding: 10px 24px;
      font-weight: 600;
      font-size: 0.9rem;
      border-radius: 40px;
      transition: all 0.2s ease;
      color: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .btn-custom-primary:hover {
      background-color: #003a8b;
      transform: translateY(-1px);
      color: white;
    }
    .btn-custom-outline {
      background: transparent;
      border: 1.5px solid #003a8b;
      color: #003a8b;
      padding: 9px 24px;
      font-weight: 600;
      border-radius: 40px;
      transition: 0.2s;
    }
    .btn-custom-outline:hover {
      background: #003a8b;
      color: white;
    }
    /* card common styling (for menu items) */
    .menu-card-item {
      border-radius: 20px;
      transition: all 0.2s ease;
      background: #fff;
      border: none;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02), 0 2px 6px rgba(0,0,0,0.05);
    }
    .menu-card-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    }
    .menu-icon-img {
      width: 48px;
      height: 48px;
      object-fit: contain;
      margin-bottom: 12px;
    }
    /* mega menu wrapper styling */
    .mega-dropdown-menu {
      width: 100%;
      background: white;
      border-radius: 24px;
      border: none;
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.15);
      padding: 2rem 1.5rem;
      margin-top: 0.5rem;
    }
    .navbar-nav .dropdown-menu {
      border: none;
      border-radius: 24px;
    }
    .dropdown-item:active {
      background-color: #f8f9fa;
    }
    /* navbar brand */
    .navbar-brand img {
      max-height: 65px;
      width: auto;
    }
    /* navbar link style */
    .navbar-light .navbar-nav .nav-link {
      font-weight: 600;
      color: #1f2937;
      font-size: 0.95rem;
      padding: 0.5rem 1rem;
      transition: 0.2s;
    }
    .navbar-light .navbar-nav .nav-link:hover {
      color: #003a8b;
    }
    .dropdown-toggle::after {
      vertical-align: middle;
    }
    /* mega menu column headings */
    .mega-title {
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #6c757d;
      margin-bottom: 1rem;
    }
    .mega-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 0;
      font-weight: 500;
      color: #1f2937;
      text-decoration: none;
      font-size: 0.9rem;
      transition: 0.2s;
      border-radius: 12px;
    }
    .mega-link:hover {
      color: #003a8b;
      background: #f8fafc;
      padding-left: 8px;
    }
    .mega-link img {
      width: 36px;
      height: 36px;
      object-fit: contain;
      border-radius: 10px;
    }
    .mega-side-image {
      background: linear-gradient(145deg, #f1f5f9, #ffffff);
      border-radius: 24px;
      padding: 20px;
      text-align: center;
      height: 100%;
    }
    .mega-side-image img {
      max-width: 100%;
      height: auto;
      border-radius: 20px;
    }
    .solution-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1rem;
    }
    /* download catalog button style (common component) */
    .btn-download-catalog {
      background: #003a8b;
      color: white;
      border-radius: 40px;
      padding: 8px 20px;
      font-weight: 600;
      font-size: 0.85rem;
      border: none;
      transition: all 0.2s;
    }
    .btn-download-catalog:hover {
      background: #003a8b;
      color: white;
    }
    /* mobile offcanvas custom */
    .offcanvas-body .nav-link {
      font-weight: 500;
      padding: 0.75rem 0;
    }
    /* responsiveness */
    @media (max-width: 991.98px) {
      .mega-dropdown-menu {
        padding: 1rem;
        box-shadow: none;
      }
      .navbar-nav .dropdown-menu {
        border: none;
        background: #f9fafb;
      }
    }
    /* simple dropdown hover for desktop (optional) */
    @media (min-width: 992px) {
      .navbar-nav .dropdown-menu {
        display: none;
        opacity: 0;
        transition: opacity 0.15s;
      }
      .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        margin-top: 0;
      }
    }
    hr {
      margin: 0.5rem 0;
    }
    /* footer {
      background: #f8f9fa;
      margin-top: 80px;
    } */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float i {
    font-size: 20px;
}

/* HOVER */
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    color: #fff;
}

/* MOBILE - only icon */
@media (max-width: 576px) {
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
    }
}


/* GO TO TOP BUTTON */
.totop {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #003a8b;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

/* SHOW BUTTON */
.totop.active {
    opacity: 1;
    visibility: visible;
}

/* HOVER */
.totop:hover {
    background: #003a8b;
    transform: translateY(-3px);
}



.hero-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,255,255,0.08);
    border-radius:50%;
    filter:blur(120px);
    top:-150px;
    right:-100px;
}






.section-space{
    padding:90px 0;
}

.service-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#00d5ff,#005eff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.table-dark-custom{
    overflow:hidden;
    border-radius:20px;
}

.table-dark-custom table{
    margin:0;
}

.table-dark-custom th{
    background:#0d2038;
    color:#fff;
    border:none;
    padding:18px;
}

.table-dark-custom td{
    background:rgba(255,255,255,0.03);
    color:#d8e4f2;
    border-color:rgba(255,255,255,0.08);
    padding:18px;
}


ul.custom-list li{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#d5e2f1;
}

ul.custom-list li i{
    color:#00d5ff;
    margin-right:10px;
}


.stars{
    color:#ffd700;
    font-size:22px;
    margin-bottom:20px;
}

/* SECTION SPACING */

.section-space{
    padding:100px 0;
    position:relative;
}

/* TITLES */

.section-title{
    color:#0f172a;
    font-size:46px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:20px;
}

.section-sub{
    color:#475569;
    line-height:1.9;
    font-size:17px;
}

/* HERO SECTION */

.hero-section{
    position:relative;
    padding:140px 0 120px;
    background:
    linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.96)),
}

.hero-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(13,202,240,.12);
    border-radius:50%;
    top:-150px;
    right:-120px;
    filter:blur(120px);
}

.hero-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(59,130,246,.10);
    border-radius:50%;
    bottom:-120px;
    left:-120px;
    filter:blur(100px);
}

/* GLASS CARD */

.glass-card{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.4);
    border-radius:28px;
    padding:35px;
    box-shadow:
    0 10px 40px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.6);
    transition:all .4s ease;
    height:100%;
    position:relative;
    overflow:hidden;
}

.glass-card::before{
    content:'';
    position:absolute;
    width:140px;
    height:140px;
    background:rgba(13,202,240,.10);
    border-radius:50%;
    top:-50px;
    right:-50px;
}

.glass-card:hover{
    transform:translateY(-10px);
    border-color:#0dcaf0;
    box-shadow:
    0 20px 50px rgba(13,202,240,.18),
    inset 0 1px 0 rgba(255,255,255,.7);
}

/* SERVICE ICON */

.service-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    background:linear-gradient(135deg,#06b6d4,#2563eb);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(37,99,235,.25);
}

/* TABLE */

.table-dark-custom{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,23,42,.08);
}

.table-dark-custom table{
    margin:0;
}

.table-dark-custom th{
    background:#0f172a;
    color:#fff;
    border:none;
    padding:20px;
    font-size:17px;
}

.table-dark-custom td{
    background:#fff;
    color:#334155;
    border-color:#e2e8f0;
    padding:18px;
}

/* LIST */

ul.custom-list{
    list-style:none;
    padding:0;
    margin:0;
}

ul.custom-list li{
    color:#334155;
    padding:14px 0;
    border-bottom:1px solid #e2e8f0;
    font-size:16px;
}

ul.custom-list li i{
    color:#06b6d4;
    margin-right:12px;
}

/* TESTIMONIALS */

.testimonial-card{
    background:rgba(255,255,255,0.85);
    border:1px solid rgba(255,255,255,.4);
    backdrop-filter:blur(10px);
    border-radius:28px;
    padding:35px;
    box-shadow:0 10px 30px rgba(15,23,42,.08);
    transition:.4s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(13,202,240,.14);
}

.stars{
    color:#fbbf24;
    font-size:24px;
    margin-bottom:20px;
}

/* FAQ */

.faq-item{
    background:#fff;
    border-radius:24px;
    padding:30px;
    margin-bottom:25px;
    border:1px solid #e2e8f0;
    box-shadow:0 8px 25px rgba(15,23,42,.05);
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-5px);
}

/* CONTACT */

.contact-box{
    background:
    linear-gradient(135deg,#ffffff,#f8fbff);
    border-radius:35px;
    padding:60px;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    position:relative;
    overflow:hidden;
}

.contact-box::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(6,182,212,.10);
    border-radius:50%;
    top:-80px;
    right:-80px;
    filter:blur(80px);
}

/* BADGE */

.badge-custom{
    background:rgba(6,182,212,.10);
    color:#000080;
    border:1px solid rgba(6,182,212,.15);
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
    display:inline-block;
    margin-bottom:25px;
}

/* BUTTON */

.btn-custom{
    background:linear-gradient(135deg,#06b6d4,#2563eb);
    color:#fff;
    border:none;
    padding:15px 38px;
    border-radius:60px;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    box-shadow:0 10px 25px rgba(37,99,235,.25);
    transition:.4s;
}

.btn-custom:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 15px 35px rgba(37,99,235,.35);
}

/* IMAGE */

img{
    border-radius:24px;
}

/* MOBILE */

@media(max-width:768px){

    .section-title{
        font-size:34px;
    }

    .section-sub{
        font-size:15px;
    }

    .hero-section{
        padding:100px 0 90px;
    }

    .glass-card,
    .testimonial-card,
    .faq-item{
        padding:25px;
    }

    .contact-box{
        padding:35px 25px;
    }

}
/* SECTION SPACING */

.section-space{
    padding:100px 0;
    position:relative;
}

/* TITLES */

.section-title{
    color:#0f172a;
    font-size:46px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:20px;
}

.section-sub{
    color:#475569;
    line-height:1.9;
    font-size:17px;
}

/* HERO SECTION */

.hero-section{
    position:relative;
    padding:140px 0 120px;
    background:
    linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.96)),
}

.hero-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(13,202,240,.12);
    border-radius:50%;
    top:-150px;
    right:-120px;
    filter:blur(120px);
}

.hero-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(59,130,246,.10);
    border-radius:50%;
    bottom:-120px;
    left:-120px;
    filter:blur(100px);
}

/* GLASS CARD */

.glass-card{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.4);
    border-radius:28px;
    padding:35px;
    box-shadow:
    0 10px 40px rgba(15,23,42,.08),
    inset 0 1px 0 rgba(255,255,255,.6);
    transition:all .4s ease;
    height:100%;
    position:relative;
    overflow:hidden;
}

.glass-card::before{
    content:'';
    position:absolute;
    width:140px;
    height:140px;
    background:rgba(13,202,240,.10);
    border-radius:50%;
    top:-50px;
    right:-50px;
}

.glass-card:hover{
    transform:translateY(-10px);
    border-color:#0dcaf0;
    box-shadow:
    0 20px 50px rgba(13,202,240,.18),
    inset 0 1px 0 rgba(255,255,255,.7);
}

/* SERVICE ICON */

.service-icon{
    width:75px;
    height:75px;
    border-radius:22px;
    background-color: #000080;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(37,99,235,.25);
}

/* TABLE */

.table-dark-custom{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,23,42,.08);
}

.table-dark-custom table{
    margin:0;
}

.table-dark-custom th{
    background: #000080;
    color:#fff;
    border:none;
    padding:20px;
    font-size:17px;
}

.table-dark-custom td{
    background:#fff;
    color:#334155;
    border-color:#e2e8f0;
    padding:18px;
}

/* LIST */

ul.custom-list{
    list-style:none;
    padding:0;
    margin:0;
}

ul.custom-list li{
    color:#000080;
    padding:14px 0;
    border-bottom:1px solid #e2e8f0;
    font-size:16px;
}

ul.custom-list li i{
    color: #000080;
    margin-right:12px;
}

/* TESTIMONIALS */

.testimonial-card{
    background:rgba(255,255,255,0.85);
    border:1px solid rgba(255,255,255,.4);
    backdrop-filter:blur(10px);
    border-radius:28px;
    padding:35px;
    box-shadow:0 10px 30px rgba(15,23,42,.08);
    transition:.4s;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(13,202,240,.14);
}

.stars{
    color:#fbbf24;
    font-size:24px;
    margin-bottom:20px;
}

/* FAQ */

.faq-item{
    background:#fff;
    border-radius:24px;
    padding:30px;
    margin-bottom:25px;
    border:1px solid #e2e8f0;
    box-shadow:0 8px 25px rgba(15,23,42,.05);
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-5px);
}

/* CONTACT */

.contact-box{
    background:
    linear-gradient(135deg,#ffffff,#f8fbff);
    border-radius:35px;
    padding:60px;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    position:relative;
    overflow:hidden;
}

.contact-box::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(6,182,212,.10);
    border-radius:50%;
    top:-80px;
    right:-80px;
    filter:blur(80px);
}

/* BADGE */

.badge-custom{
    background:rgba(6,182,212,.10);
    color:#000080;
    border:1px solid rgba(6,182,212,.15);
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
    display:inline-block;
    margin-bottom:25px;
}

/* BUTTON */

.btn-custom{
    background-color: #000080;
    color:#fff;
    border:none;
    padding:15px 38px;
    border-radius:60px;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    box-shadow:0 10px 25px rgba(37,99,235,.25);
    transition:.4s;
}

.btn-custom:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 15px 35px rgba(37,99,235,.35);
}

/* IMAGE */

img{
    border-radius:24px;
}

/* MOBILE */

@media(max-width:768px){

    .section-title{
        font-size:34px;
    }

    .section-sub{
        font-size:15px;
    }

    .hero-section{
        padding:100px 0 90px;
    }

    .glass-card,
    .testimonial-card,
    .faq-item{
        padding:25px;
    }

    .contact-box{
        padding:35px 25px;
    }

}
.container {
    max-width: 1320px !important;
}