*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI", sans-serif;
}

body{
    background:#ffffff;
    color:#222;
}

/* SECTION */
.services-wrapper{
    padding:80px 20px;
    background:#f6f9ff;
}

.container{
    max-width:1200px;
    margin:auto;
}

/* TITLE */
.main-title{
    text-align:center;
    font-size:38px;
    font-weight:700;
    margin-bottom:70px;
}

/* CARD */
.service-card{
    display:flex;
    align-items:center;
    gap:50px;
    margin-bottom:70px;
    padding:35px;
    background:#a79999;
    border-radius:18px;

    /* IMPORTANT */
    opacity:1;
    transform:translateY(0);

    transition:
      transform 0.4s ease,
      box-shadow 0.4s ease;
}

/* HOVER EFFECT */
.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,0.15);
}


/* TEXT */
.service-content{
    flex:1;
}

.service-content h3{
    font-size:26px;
    margin-bottom:8px;
}

.service-content h4{
    font-size:16px;
    color:#555;
    margin-bottom:16px;
}

.service-content p{
    line-height:1.7;
    margin-bottom:12px;
}

.service-content ul{
    padding-left:20px;
    margin-bottom:18px;
}

.service-content li{
    margin-bottom:6px;
}

/* HIGHLIGHT */
.highlight{
    background:#eef3ff;
    border-left:4px solid #2563eb;
    padding:12px 16px;
    border-radius:6px;
    font-size:15px;
    width:fit-content;
}

/* IMAGE */
.service-media{
    flex:1;
    text-align:right;
}

.service-media img{
    width:100%;
    max-width:380px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover .service-media img{
    transform:scale(1.05);
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

/* REVERSE */
.service-card.reverse{
    flex-direction:row-reverse;
}

/* RESPONSIVE */
@media(max-width:991px){
    .service-card{
        flex-direction:column;
        text-align:center;
        padding:25px;
    }

    .service-media{
        text-align:center;
    }

    .service-media img{
        max-width:100%;
    }

    .highlight{
        margin:auto;
    }

    .service-card:hover{
        transform:none;
        box-shadow:none;
    }
}


/* ===== ULTRA NAV CONTAINER ===== */
.ultra-nav {
    position: relative;
    width: fit-content;
    margin: 30px auto;
    padding: 18px 42px;
    border-radius: 80px;

    background:
        radial-gradient(circle at top left, rgba(255,215,120,0.15), transparent 60%),
        linear-gradient(180deg, #5e618f, #2d2c92);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.75),
        inset 0 1px 1px rgba(255,255,255,0.12);
}

/* GOLD BORDER GLOW */
.ultra-nav::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(120deg, #d4af37, #f6e27a, #caa12f);
    z-index: -1;
    filter: blur(12px);
    opacity: 0.65;
}

/* MENU */
.ultra-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* LINKS */
.ultra-menu li a {
    position: relative;
    padding: 14px 26px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: #ececec;
    text-decoration: none;
    transition: all 0.45s cubic-bezier(.25,.8,.25,1);
}

/* SHIMMER LIGHT PASS */
.ultra-menu li a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.55),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
}

/* HOVER CINEMATIC */
.ultra-menu li a:hover {
    color: #111;
    background: linear-gradient(135deg, #d4af37, #f7e27c);
    transform: translateY(-2px);
    box-shadow:
        0 12px 40px rgba(212,175,55,0.65),
        inset 0 1px 1px rgba(255,255,255,0.45);
}

.ultra-menu li a:hover::before {
    opacity: 1;
}

/* ACTIVE ITEM */
.ultra-menu li a.active {
    background: linear-gradient(135deg, #caa12f, #f3db6b);
    color: #111;
    box-shadow:
        0 15px 45px rgba(212,175,55,0.75);
}

/* SLOW FLOAT ANIMATION */
@keyframes floatGlow {
    0% { box-shadow: 0 30px 80px rgba(0,0,0,0.75); }
    50% { box-shadow: 0 35px 90px rgba(212,175,55,0.35); }
    100% { box-shadow: 0 30px 80px rgba(0,0,0,0.75); }
}

.ultra-nav {
    animation: floatGlow 6s ease-in-out infinite;
}



/* ===== MOBILE MENU BUTTON ===== */
.mobile-menu-btn {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 20000; /* VERY IMPORTANT */
    font-size: 30px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #d4af37, #f7e27c);
    color: #111;
    border-radius: 10px;
    cursor: pointer;
    display: none;
}


/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

/* ===== MOBILE MENU PANEL ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: linear-gradient(180deg, #0b0f2f, #151b55);
    padding: 90px 30px 30px;
    transition: right 0.45s ease;
    z-index: 10000;
    box-shadow: -15px 0 40px rgba(0,0,0,0.65);
}

/* OPEN STATE */
.mobile-menu.active {
    right: 0;
}
.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* CLOSE BUTTON */
.close-menu-btn {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* MENU LIST */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin: 22px 0;
}

.mobile-menu-list li a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.mobile-menu-list li a.active {
    color: #f7e27c;
}

/* ===== RESPONSIVE CONTROL ===== */
@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

@media (min-width: 993px) {
    .mobile-menu,
    .mobile-menu-btn,
    .mobile-overlay {
        display: none;
    }
}

/* MOBILE MENU MUST NOT BE CLIPPED */
body,
.page-wrapper,
.main-wrapper {
    overflow-x: visible !important;
}

/*------ COVERAGE TABLE STYLES ===== */

body {
  background: #f4f6fb;
  font-family: "Segoe UI", sans-serif;
}

.coverage-section {
  padding: 80px 20px;
}

.container {
  max-width: 1300px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #0d2b81;
  margin-bottom: 40px;
}

/* Table Wrapper for mobile */
.table-wrapper {
  overflow-x: auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Table */
.coverage-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1100px;
}

.coverage-table th {
  background: #0d2b81;
  color: #fff;
  padding: 14px;
  font-size: 15px;
  text-transform: uppercase;
  border: 1px solid #1c3fa3;
}

.coverage-table td {
  padding: 12px;
  font-size: 14px;
  color: #333;
  border: 1px solid #e1e4f2;
  text-align: center;
}

/* Hover effect */
.coverage-table tbody tr:hover {
  background: #f0f3ff;
}
