/* =========================================================
   GLOBAL RESET
========================================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Roboto", Sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background: linear-gradient(135deg, #eef3ff 0%, #f9fbff 100%);
    color:#1f2937;
    overflow-x:hidden;
    position:relative;
}

/* =========================================================
   SOFT BLUE BACKGROUND
========================================================= */

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 15% 20%, rgba(37,99,235,0.05), transparent 25%),
        radial-gradient(circle at 80% 30%, rgba(59,130,246,0.04), transparent 28%),
        radial-gradient(circle at 40% 80%, rgba(96,165,250,0.04), transparent 25%);
    z-index:-2;
    animation:bgMove 16s ease-in-out infinite alternate;
}

@keyframes bgMove{
    0%{
        transform:translateY(0px);
    }
    100%{
        transform:translateY(-20px);
    }
}

/* =========================================================
   HEADER
========================================================= */
/* =========================================================
   HEADER
========================================================= */

header{
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(37,99,235,0.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* =========================================================
   HEADER CONTAINER
========================================================= */

.header-container{
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 10px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* =========================================================
   LOGO
========================================================= */

.logo{
    display: flex;
    align-items: center;
}

.logo img{
    width: 120px;
    height: 72px;
    object-fit: contain;
    transition: 0.4s ease;
    filter: drop-shadow(0 8px 20px rgba(37,99,235,0.15));
}

/* =========================================================
   NAVIGATION
========================================================= */


/* =========================================================
   HERO SECTION
========================================================= */

.hero{
    position:relative;
    overflow:hidden;
    padding:130px 8% 100px;
    background:linear-gradient(135deg,#dde2e9ce 0%,#f9fcff 100%);
    z-index:1;
}


/* =========================================================
   WAVES
========================================================= */

.hero::before,
.hero::after{
    content:"";
    position:absolute;
    width:200%;
    height:230px;
    left:-50%;
    border-radius:45%;
    z-index:0;
}

.hero::before{
    bottom:-130px;
    background:rgba(37,99,235,0.05);
    animation:waveMove 16s linear infinite;
}

.hero::after{
    bottom:-150px;
    background:rgba(59,130,246,0.04);
    animation:waveMoveReverse 22s linear infinite;
}

@keyframes waveMove{
    0%{
        transform:rotate(0deg) translateX(0);
    }
    100%{
        transform:rotate(360deg) translateX(40px);
    }
}

@keyframes waveMoveReverse{
    0%{
        transform:rotate(360deg) translateX(0);
    }
    100%{
        transform:rotate(0deg) translateX(-40px);
    }
}

/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* =========================================================
   HERO TEXT
========================================================= */

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:45px;
    line-height:1.15;
    margin-bottom:20px;
    color:#0f172a;
    font-weight:800;
}

.hero-text p{
    font-size:17px;
    line-height:1.8;
    color:#5b6b86;
    max-width:650px;
    margin-bottom:35px;
    text-align: justify;
    
}

/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image{
    flex:1;
    text-align:center;
    
}

.hero-image img{
    width:125%;
    max-width:800px;
    animation:floatImage 5s ease-in-out infinite;
    filter:drop-shadow(0 30px 50px rgba(37,99,235,0.18));
}

@keyframes floatImage{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-18px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* =========================================================
   ENTRY ANIMATION
========================================================= */

.animate-left{
    opacity:0;
    transform:translateX(-60px);
    animation:slideLeft 1s ease forwards;
}

.animate-right{
    opacity:0;
    transform:translateX(60px);
    animation:slideRight 1s ease forwards;
}

@keyframes slideLeft{
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* =========================================================
   RESPONSIVE HERO FIX
========================================================= */

/* TABLET */
@media (max-width: 992px) {

    .hero-container{
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1{
        font-size: 44px;
        text-align: center;
    }

    .hero-text p{
        text-align: center;
        margin: 0 auto 30px;
    }

    .hero-image img{
        max-width: 600px;
    }
}


/* MOBILE */
@media (max-width: 768px) {

    .hero{
        padding: 70px 6% 80px;
    }

    .hero-container{
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-text{
        text-align: center;
    }

    .hero-text h1{
        font-size: 34px;
        line-height: 1.2;
        text-align: center;
    }

    .hero-text p{
        font-size: 15px;
        text-align: center;
        margin: 0 auto 25px;
        text-align: justify;
    }

    .hero-image img{
        max-width: 100%;
    }

    /* BUTTON CENTER FIX */
    .uiverse{
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
}


/* SMALL MOBILE */
@media (max-width: 480px) {

    .hero-text h1{
        font-size: 28px;
    }

    .hero-text p{
        font-size: 14px;
    }

    .hero-container{
        gap: 25px;
        padding-top: 55px;
    }

    .uiverse{
        width: 100%;
        max-width: 260px;
    }
}

/* ================= FOOTER ================= */
/* footer {
  background: #1e4d6f;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
} */

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 768px) {

  .header-container {
    /* flex-direction: column; */
    gap: 10px;
    text-align: center;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero h1 {
    font-size: 28px;
    /* padding: 15px; */
    text-align: left;
  }

  .container {
    padding: 20px;
  }
}


.section {
  padding: 60px 30px;
  text-align: center;
}

.section h2 {
  color: #1e3a8a;
  margin-bottom: 20px;
}

/* HERO CONTENT */
.hero-content {
  text-align: center;
}

.hero p {
  margin-top: 10px;
  font-size: 18px;
}

/* .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: white;
  color: #1e3a8a;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
} */

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* TAGS */
.tags {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* FORM */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: auto;
}

.demo-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.demo-form button {
  padding: 12px;
  background: #1e4d6f;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.demo-form button:hover {
  background: #1e3a8a;
}

.uiverse {
  position: relative;

  /* center fix */
  /* margin: 40px auto 0 auto; */
  margin-top:50px;

  /* size */
  width: 190px;
  height: 55px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  font-size: 16px;
  font-weight: 600;
  color: white;

  border-radius: 12px;

  /* BLUE GRADIENT */
  background: linear-gradient(135deg, #1e4d6f, #256d85 50%, #4fb3d8 100%);
  background-size: 200% 200%;

  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);

  cursor: pointer;

  transition: all 0.4s ease;

  animation: floatBtn 3s ease-in-out infinite, gradientMove 6s ease infinite;
}

/* FLOAT UP-DOWN EFFECT */
@keyframes floatBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* GRADIENT MOVE ANIMATION */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* HOVER EFFECT */
.uiverse:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
}

/* TOOLTIP */
.tooltip {
  position: absolute;
  top: -35px;

  font-size: 12px;
  background: #ffffff;
  color: #1e4d6f;

  padding: 6px 10px;
  border-radius: 6px;

  opacity: 0;
  pointer-events: none;

  transition: all 0.3s ease;

  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* tooltip arrow */
.tooltip::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: white;
}

/* SHOW TOOLTIP */
.uiverse:hover .tooltip {
  opacity: 1;
  top: -45px;
}



/* =========================
   SERVICES SECTION
========================= */
.services-section{
    position:relative;
    padding:50px 7%;
    background:linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
    overflow:hidden;
}

/* BACKGROUND GLOW */

.service-bg-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:0;
}

.glow-1{
    width:320px;
    height:320px;
    background:rgba(37,99,235,0.10);
    top:-120px;
    left:-100px;
    animation:floatGlow 8s ease-in-out infinite;
}

.glow-2{
    width:280px;
    height:280px;
    background:rgba(59,130,246,0.08);
    bottom:-120px;
    right:-80px;
    animation:floatGlow 10s ease-in-out infinite;
}

@keyframes floatGlow{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-25px);
    }
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.service-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(37,99,235,0.10);
    color:#1e4d6f;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.section-title h2{
    font-size:35px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.section-title p{
    font-size:17px;
    color:#64748b;
    line-height:1.8;
    text-align: justify;
}

/* GRID */

.services-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* CARD */

.service-card{
    position:relative;
    background:#ffffff;
    border-radius:28px;
    padding:35px 28px;
    overflow:hidden;
    border:1px solid rgba(37,99,235,0.08);

    box-shadow:
    0 10px 40px rgb(15, 23, 42),
    0 2px 10px rgb(216, 220, 224);

    transition:all .45s ease;
    animation:fadeUp .8s ease;
}

/* TOP BLUE LINE */

.card-top-line{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(135deg, #1e4d6f 0%, #256d85 50%, #4fb3d8 100%);
}
/* SMOOTH HOVER TRANSITION */

.service-card{
    position:relative;
    background:#ffffff;
    border-radius:28px;
    padding:35px 28px;
    overflow:hidden;
    border:1px solid rgba(37,99,235,0.08);

    box-shadow:
    0 10px 40px rgba(15,23,42,0.05),
    0 2px 10px rgba(37,99,235,0.05);

    
}

/* SLOW HOVER EFFECT */

.service-card:hover{
    transform:translateY(-12px) scale(1.02);
    background: linear-gradient(135deg, #1e4d6f 0%, #256d85 50%, #4fb3d8 100%);
    border-color:transparent;
    box-shadow:
    0 25px 50px rgba(37,99,235,0.28),
    0 10px 30px rgba(37,99,235,0.18);
}

/* SLOW TEXT TRANSITION */

.service-card h3,
.service-card p,
.service-card ul li,
.service-icon,
.service-icon i,
.service-card ul li::before{
    transition:all 0.8s ease;
}

/* ICON SMOOTH */

.service-card:hover .service-icon{
    background:#ffffff;
    transform:rotate(-8deg) scale(1.08);
}

/* ICON */

.service-icon{
    width:78px;
    height:78px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: linear-gradient(135deg, #1e4d6f 0%, #256d85 50%, #4fb3d8 100%);
    margin-bottom:28px;

    box-shadow:
    0 15px 35px rgba(37,99,235,0.25);

    transition:.4s ease;
}

.service-card:hover .service-icon{
    background:#ffffff;
    transform:rotate(-8deg) scale(1.08);
}

.service-icon i{
    color:#ffffff !important;
    font-size:30px;
    transition:.4s;
}

.service-card:hover .service-icon i{
    color:#1e4d6f !important;
}

/* HEADING */

.service-card h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:16px;
    line-height:1.4;
    transition:.4s;
}

/* PARAGRAPH */

.service-card p{
    font-size:15px;
    color:#64748b;
    line-height:1.8;
    margin-bottom:24px;
    transition:.4s;
    
}

/* LIST */

.service-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.service-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    color:#334155;
    font-size:15px;
    font-weight:500;
    transition:.4s;
}

/* CHECK ICON */

.service-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:1px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:rgba(37,99,235,0.12);
    color:#1e4d6f;
    font-size:11px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.4s;
}

/* TEXT CHANGE ON HOVER */

.service-card:hover h3,
.service-card:hover p,
.service-card:hover ul li{
    color:#ffffff;
}

.service-card:hover ul li::before{
    background:#ffffff;
    color:#1e4d6f;
}

/* CARD ENTRY */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:1200px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .services-section{
        padding:30px 6%;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:34px;
    }

    .service-card{
        padding:30px 24px;
    }
}



/* ================= BENEFITS SECTION ================= */

.benefits-section{
    padding:50px 7%;
    background:linear-gradient(180deg,#f7fbff 0%,#ffffff 100%);
}

/* TITLE */

.benefits-title{
    text-align:center;
    max-width:850px;
    margin:auto auto 70px;
}

.benefit-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(37,99,235,.10);
    color:#1e4d6f;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.benefits-title h2{
    font-size:35px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

.benefits-title p{
    font-size:17px;
    color:#64748b;
    line-height:1.8;
}

/* GRID */

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:25px;
}

/* CARD */

.benefit-card{
    position:relative;
    height:270px;   /* reduced from 320px */
    border-radius:28px;
    overflow:hidden;
    cursor:pointer;

    background:#ffffff;

    border:1px solid rgba(37,99,235,.08);

    box-shadow:
    0 10px 30px rgba(15,23,42,.05),
    0 5px 15px rgba(37,99,235,.05);

    transition:.7s ease;
}
/* FRONT */

.benefit-front{
    position:absolute;
    inset:0;

    padding:35px 28px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    transition:.7s ease;
    z-index:2;
}

.benefit-front::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background: linear-gradient(135deg, #1e4d6f 0%, #256d85 50%, #4fb3d8 100%);
    transition:.7s ease;
}

/* ICON */

.benefit-icon{
    width:40px;
    height:40px;
    border-radius:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    background: linear-gradient(135deg, #1e4d6f 0%, #256d85 50%, #4fb3d8 100%);

    box-shadow:0 15px 35px rgba(37,99,235,.18);

    transition:.7s ease;
}

.benefit-icon i{
    color:#ffffff !important;
    font-size:15px;
}

/* TITLE */

.benefit-front h3{
    font-size:20px;
    font-weight:700;
    line-height:1.4;
    color:#0f172a;
    transition:.7s ease;
}

/* ARROW */

.hover-arrow{
    width:52px;
    height:52px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eef4ff;
    color:#1e4d6f;

    font-size:18px;

    transition:.7s ease;
}

/* BACK CONTENT */

.benefit-back{
    position:absolute;
    inset:0;

    padding:40px 28px;

    background: linear-gradient(135deg, #1e4d6f 0%, #256d85 50%, #4fb3d8 100%);

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    transform:translateY(100%);
    transition:.7s ease;
}

.benefit-back p{
    color:#ffffff;
    font-size:16px;
    line-height:1.9;
}

/* HOVER */

.benefit-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 25px 50px rgba(37,99,235,.22),
    0 10px 30px rgba(37,99,235,.12);
}

.benefit-card:hover .benefit-back{
    transform:translateY(0);
}

.benefit-card:hover .benefit-front{
    transform:translateY(-100%);
}

.benefit-card:hover .hover-arrow{
    background:#ffffff;
    transform:translateX(8px);
}

.benefit-card:hover .benefit-front::before{
    background:#ffffff;
}

/* RESPONSIVE */

@media(max-width:1400px){

    .benefits-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:992px){

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .benefits-section{
        padding:30px 6%;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .benefits-title h2{
        font-size:34px;
    }

}


/* =========================
   INDUSTRIES SECTION
========================= */
.industries-section{
    position:relative;
    padding:50px 7%;
    overflow:hidden;
    background:
    radial-gradient(circle at top left,
    rgba(37,99,235,0.10),
    transparent 35%),
    radial-gradient(circle at bottom right,
    rgba(59,130,246,0.08),
    transparent 35%),
    linear-gradient(180deg,#f6faff 0%,#eaf2ff 100%);
}

/* FLOATING BACKGROUND */
.industry-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:0;
}

.shape-1{
    width:320px;
    height:320px;
    background:rgba(37,99,235,0.10);
    top:-120px;
    left:-100px;
}

.shape-2{
    width:260px;
    height:260px;
    background:rgba(59,130,246,0.08);
    bottom:-100px;
    right:-80px;
}

/* CONTAINER */
.industries-container{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:70px;
}

/* IMAGE (UNCHANGED LOOK) */
.industries-image{
    flex:1;
    position:relative;
}

.image-glow{
    position:absolute;
    inset:-18px;
    border-radius:35px;
    background:
    linear-gradient(135deg,
    rgba(37,99,235,0.22),
    rgba(96,165,250,0.10));
    z-index:-1;
    animation:rotateGlow 12s linear infinite;
}

@keyframes rotateGlow{
    100%{ transform:rotate(360deg); }
}

.industries-image img{
    width:100%;
    border-radius:30px;
    box-shadow:
    0 25px 60px rgba(37,99,235,0.18),
    0 10px 30px rgba(15,23,42,0.10);
    animation:floatImage 5s ease-in-out infinite;
}

@keyframes floatImage{
    0%,100%{ transform:translateY(0px); }
    50%{ transform:translateY(-15px); }
}

/* CONTENT */
.industries-content{
    flex:1;
}

.industry-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(37,99,235,0.12);
    color:#1e4d6f;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:22px;
}

.industries-content h2{
    font-size:35px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.industries-content p{
    font-size:17px;
    line-height:1.8;
    color:#64748b;
    margin-bottom:40px;
    
}

/* =========================
   UNIQUE FLOW STYLE LIST
========================= */

/* 3 COLUMN CLEAN LAYOUT */
.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px 28px;
}

/* CLEAN ITEM (NO DOT, NO CARD) */
.industry-item{
    display:flex;
    align-items:center;
    gap:12px;

    padding:6px 0;

    opacity:0;
    transform:translateY(25px);

    transition:0.6s ease;
}

/* ICON */
.industry-item i{
    width:36px;
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;

    background:#eef4ff;
    color:#1e4d6f;

    font-size:15px;

    flex-shrink:0;

    transition:0.3s ease;
     animation:pulse 1.2s infinite;
}

/* TEXT */
.industry-item span{
    font-size:14.5px;
    font-weight:600;
    color:#0f172a;
}

/* HOVER (SUBTLE ONLY) */
.industry-item:hover{
    transform:translateX(6px);
}

/* ICON HOVER */
.industry-item:hover i{
    background:#9eccec;
    transform:scale(1.06);
    animation:pulse 1.2s infinite;
}

/* PULSE EFFECT */
@keyframes pulse {
    0%{
        box-shadow:0 0 0 0 rgba(49, 90, 145, 0.6);
    }
    70%{
        box-shadow:0 0 0 10px rgba(145, 180, 226, 0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(145, 180, 226, 0);
    }
}

/* RESPONSIVE */
@media(max-width:1200px){
    .industry-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:992px){
    .industries-container{
        flex-direction:column;
        text-align:center;
    }
}

@media(max-width:768px){
    .industries-content h2{
        font-size:34px;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }
}

/* WHY SECTION */
/* =========================================================
   WHY SECTION LAYOUT
========================================================= */

.why-section{
    padding:50px 7%;
    background:linear-gradient(180deg,#f7fbff,#ffffff);
}

.why-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* =========================================================
   LEFT CONTENT (SCROLL ANIMATION BASE)
========================================================= */

.why-content{
    flex:1;

    opacity:0;
    transform:translateY(50px);
    transition:0.8s ease;
}

.why-content h2{
    font-size:35px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:25px;
}

/* =========================================================
   BULLETS (HIDDEN INITIALLY)
========================================================= */

.why-list{
    list-style:none;
    padding:0;
    margin:0;
}

.why-list li{
    position:relative;
    padding-left:30px;
    margin-bottom:14px;

    font-size:16px;
    color:#334155;
    line-height:1.6;

    opacity:0;
    transform:translateX(-30px);
    transition:0.6s ease;
}

.why-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;

    width:20px;
    height:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:12px;
    font-weight:700;

    color:#ffffff;
    background: linear-gradient(135deg, #1e4d6f 0%, #256d85 50%, #4fb3d8 100%);
    border-radius:50%;
}

/* =========================================================
   RIGHT IMAGE + PULSE
========================================================= */

.why-image{
    flex:1;
    text-align:center;
    position:relative;
}

.why-image img{
    width:100%;
    max-width:520px;
    border-radius:20px;

    box-shadow:
        0 25px 60px rgba(37,99,235,0.15),
        0 10px 30px rgba(0,0,0,0.08);

    position:relative;
    z-index:3;

    animation:imgPulse 3.5s ease-in-out infinite;
}

/* PULSE IMAGE */
@keyframes imgPulse{
    0%,100%{
        transform:scale(1);
        filter:brightness(1);
    }
    50%{
        transform:scale(1.06);
        filter:brightness(1.05);
    }
}

/* =========================================================
   SCROLL ACTIVE STATE
========================================================= */

.why-visible .why-content{
    opacity:1;
    transform:translateY(0);
}

/* =========================================================
   STAGGER BULLETS (ONE BY ONE)
========================================================= */

.why-visible .why-list li{
    opacity:1;
    transform:translateX(0);
}

.why-visible .why-list li:nth-child(1){ transition-delay:0.1s; }
.why-visible .why-list li:nth-child(2){ transition-delay:0.2s; }
.why-visible .why-list li:nth-child(3){ transition-delay:0.3s; }
.why-visible .why-list li:nth-child(4){ transition-delay:0.4s; }
.why-visible .why-list li:nth-child(5){ transition-delay:0.5s; }
.why-visible .why-list li:nth-child(6){ transition-delay:0.6s; }

/* =========================================================
   IMAGE SCROLL REVEAL
========================================================= */

.why-image{
    opacity:0;
    transform:translateY(50px);
    transition:0.8s ease;
}

.why-visible .why-image{
    opacity:1;
    transform:translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){
    .why-container{
        flex-direction:column;
        text-align:center;
    }

    .why-content h2{
        font-size:34px;
    }

    .why-list li{
        text-align:left;
    }
}




/* =========================
   FEATURES SECTION
========================= */
/* =========================
   FEATURES SECTION
========================= */

/* =========================
   FEATURES SECTION
========================= */

.u-features{
    padding:50px 7%;
    background:#f5f8fc;
    overflow:hidden;
    position:relative;
}

/* =========================
   HEADER
========================= */

.u-features-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.u-features-badge{
    display:inline-block;
    padding:10px 22px;

    border-radius:50px;

    background:rgba(37,99,235,.10);

    color:#1e4d6f;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:18px;
}

.u-features-header h2{
    font-size:35px;
    font-weight:800;
    color:#0f172a;

    margin-bottom:20px;
}

.u-features-header p{
    font-size:16px;
    line-height:1.9;
    color:#64748b;
    text-align: justify;
}

/* =========================
   GRID
========================= */

.u-feature-cards{
    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:28px;

    margin-top:50px;
}

/* =========================
   CARD
========================= */
.u-card{
    background:#edf2f7;

    border-radius:22px;

    padding:18px 18px 24px;

    text-align:center;

    overflow:hidden;

    position:relative;

    /* NEUMORPHISM EFFECT */
    box-shadow:
        12px 12px 24px rgba(145, 173, 216, 0.616),
        -12px -12px 24px rgba(255,255,255,0.95);
    transition:
        transform .45s ease,
        box-shadow .45s ease;
    opacity:0;
    transform:translateY(40px);
}
/* SHOW */
.u-features.show .u-card{
    opacity:1;
    transform:translateY(0);
}

/* HOVER */

.u-card:hover{
    transform:translateY(-12px);

    box-shadow:
        0 35px 70px rgba(37,99,235,.18),
        0 15px 25px rgba(15,23,42,.10);
}

/* =========================
   IMAGE
========================= */

.u-card-img{
    width:100%;

    height:165px;

    border-radius:14px;

    overflow:hidden;

    margin-bottom:22px;

    position:relative;
}

/* RECTANGLE IMAGE */

.u-card-img img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:transform .7s ease;
}

.u-card:hover .u-card-img img{
    transform:scale(1.08);
}

/* =========================
   TITLE
========================= */

.u-card h3{
    font-size:18px;
    font-weight:700;

    color:#003b73;

    line-height:1.5;

    min-height:58px;

    margin:0;
}

/* =========================
   STAGGER ANIMATION
========================= */

.u-features.show .u-card:nth-child(1){transition-delay:.05s;}
.u-features.show .u-card:nth-child(2){transition-delay:.10s;}
.u-features.show .u-card:nth-child(3){transition-delay:.15s;}
.u-features.show .u-card:nth-child(4){transition-delay:.20s;}
.u-features.show .u-card:nth-child(5){transition-delay:.25s;}
.u-features.show .u-card:nth-child(6){transition-delay:.30s;}
.u-features.show .u-card:nth-child(7){transition-delay:.35s;}
.u-features.show .u-card:nth-child(8){transition-delay:.40s;}
.u-features.show .u-card:nth-child(9){transition-delay:.45s;}
.u-features.show .u-card:nth-child(10){transition-delay:.50s;}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1400px){

    .u-feature-cards{
        gap:22px;
    }

    .u-card-img{
        height:150px;
    }

}

@media(max-width:1100px){

    .u-feature-cards{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .u-features{
        padding:90px 5%;
    }

    .u-features-header{
        margin-bottom:50px;
    }

    .u-features-header h2{
        font-size:34px;
    }

    .u-features-header p{
        font-size:15px;
        line-height:1.8;
        text-align: justify;
    }

    /* 2 CARDS IN ONE ROW */

    .u-feature-cards{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }

    .u-card{
        padding:12px 12px 18px;
        border-radius:18px;
    }

    .u-card-img{
        height:115px;
        border-radius:12px;
        margin-bottom:16px;
    }

    .u-card h3{
        font-size:14px;
        line-height:1.4;
        min-height:45px;
    }

}

@media(max-width:480px){

    .u-features{
        padding:30px 4%;
    }

    .u-feature-cards{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .u-card{
        padding:10px 10px 16px;
    }

    .u-card-img{
        height:95px;
    }

    .u-card h3{
        font-size:13px;
        min-height:40px;
    }

}


/* FORM SECTION */
/* =========================
   DEMO SECTION
========================= */

.demo-section{
    position:relative;

    padding:60px 6%;

    overflow:hidden;

    background:
    linear-gradient(135deg,#eef3ff 0%,#f9fbff 100%);
}

/* =========================
   GLOW EFFECT
========================= */

.demo-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:0;
}

.demo-glow.one{
    width:260px;
    height:260px;

    background:rgba(37,99,235,.08);

    top:-100px;
    left:-100px;

    animation:glowMove 8s ease-in-out infinite;
}

.demo-glow.two{
    width:240px;
    height:240px;

    background:rgba(59,130,246,.07);

    bottom:-100px;
    right:-100px;

    animation:glowMove2 10s ease-in-out infinite;
}

@keyframes glowMove{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(25px);
    }
}

@keyframes glowMove2{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-25px);
    }
}

/* =========================
   HEADER
========================= */

.demo-header{
    text-align:center;
    max-width:850px;

    margin:0 auto 45px;

    position:relative;
    z-index:2;
}

.demo-badge{
    display:inline-block;

    padding:9px 20px;

    border-radius:50px;

    background:rgba(37,99,235,.10);

    color:#1e4d6f;

    font-size:12px;
    font-weight:700;

    letter-spacing:1px;

    margin-bottom:16px;
}

.demo-header h2{
    font-size:35px;
    font-weight:800;

    color:#0f172a;

    margin-bottom:18px;

    line-height:1.1;
}

.demo-header h2 span{
    color:#1e4d6f;
}

.demo-header p{
    font-size:16px;
    line-height:1.8;

    color:#64748b;

    max-width:760px;

    margin:auto;
    text-align: justify;
}

/* =========================
   MAIN CONTAINER
========================= */

.demo-container{
    display:flex;
    align-items:center;
    justify-content:center;

    gap:45px;

    position:relative;
    z-index:2;

    max-width:1180px;
    margin:auto;
}

/* =========================
   AI SIDE
========================= */

.demo-ai{
    flex:.85;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* BOT IMAGE */

.demo-ai{
    flex:1;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* =========================
   BLUE GLOW BEHIND BOT
========================= */

.demo-ai::before{
    content:"";

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:
        radial-gradient(circle,
        rgba(37,99,235,.30) 0%,
        rgba(59,130,246,.18) 35%,
        rgba(96,165,250,.08) 60%,
        transparent 75%);

    filter:blur(35px);

    z-index:1;

    animation:botGlow 5s ease-in-out infinite;
}


/* BOT IMAGE */

.demo-ai img{
    width:100%;
    max-width:320px;

    position:relative;
    z-index:3;

    animation:floatBot 5s ease-in-out infinite;

    filter:
        drop-shadow(0 22px 40px rgba(37,99,235,.14))
        drop-shadow(0 0 25px rgba(59,130,246,.35));
}

/* FLOAT */

@keyframes floatBot{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-20px);
    }
}

/* GLOW ANIMATION */

@keyframes botGlow{
    0%,100%{
        transform:scale(1);
        opacity:.9;
    }
    50%{
        transform:scale(1.08);
        opacity:1;
    }
}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .demo-ai::before{
        width:230px;
        height:230px;
    }

    .demo-ai::after{
        width:260px;
        height:260px;
    }

    .demo-ai img{
        max-width:220px;
    }

}

@media(max-width:480px){

    .demo-ai::before{
        width:190px;
        height:190px;
        filter:blur(28px);
    }

    .demo-ai::after{
        width:220px;
        height:220px;
    }

    .demo-ai img{
        max-width:180px;
    }

}
/* =========================
   FORM
========================= */

.demo-form{
    flex:1;

    padding:36px;

    border-radius:32px;

    background:
    linear-gradient(
        145deg,
        #dce6fa,
        #cfdcf5
    );

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:18px;

    max-width:560px;
    width:100%;

    box-shadow:
        18px 18px 40px rgba(163,177,198,.18),
        -14px -14px 32px rgba(255,255,255,.85);

    border:1px solid rgba(255,255,255,.65);
}

/* INPUT */

.input-box input{
    width:100%;

    border:none;
    outline:none;

    background:#dfe7f7;

    padding:17px 18px;

    border-radius:16px;

    font-size:14px;

    color:#0f172a;

    box-shadow:
        inset 5px 5px 10px rgba(163,177,198,.20),
        inset -5px -5px 10px rgba(255,255,255,.90);

    transition:.35s ease;
}

.input-box input::placeholder{
    color:#64748b;
}

.input-box input:focus{
    transform:translateY(-2px);

    background:#edf3ff;

    box-shadow:
        inset 3px 3px 8px rgba(163,177,198,.15),
        inset -3px -3px 8px rgba(255,255,255,1),
        0 0 0 4px rgba(37,99,235,.08);
}

/* =========================
   BUTTON
========================= */

.demo-form button{
    grid-column:span 2;

    border:none;
    outline:none;

    padding:17px;

    border-radius:16px;

    background: linear-gradient(135deg, #1e4d6f 0%, #256d85 50%, #4fb3d8 100%);

    color:#ffffff;

    font-size:17px;
    font-weight:700;

    cursor:pointer;

    transition:.4s ease;

    box-shadow:
        0 16px 30px rgba(37,99,235,.22);
}

.demo-form button:hover{
    transform:translateY(-3px) scale(1.01);

    box-shadow:
        0 20px 38px rgba(37,99,235,.30);
        background:  #1e4d6f ;
}

/* =========================
   SECURE TEXT
========================= */

.secure-text{
    grid-column:span 2;

    text-align:center;

    color:#5f6c81;

    font-size:13px;

    margin-top:2px;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

    .demo-container{
        flex-direction:column;

        gap:35px;
    }

    .demo-form{
        max-width:100%;
    }

   

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .demo-section{
        padding:30px 5%;
    }

    .demo-header{
        margin-bottom:35px;
    }

    .demo-header h2{
        font-size:34px;
    }

    .demo-header p{
        font-size:14px;
    }

    .demo-container{
        gap:28px;
    }

    /* SMALLER AI */

    .demo-ai img{
        max-width:190px;
    }

    

    /* FORM */

    .demo-form{
        grid-template-columns:1fr;

        padding:24px;

        gap:16px;

        border-radius:26px;
    }

    .demo-form button,
    .secure-text{
        grid-column:span 1;
    }

    .input-box input{
        padding:15px 16px;
        font-size:14px;
    }

    .demo-form button{
        padding:15px;
        font-size:16px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .demo-header h2{
        font-size:28px;
    }

    .demo-header p{
        font-size:13px;
    }

    .demo-ai{
        margin-bottom:5px;
    }

    .demo-ai img{
        max-width:155px;
    }

    .demo-form{
        padding:18px;
    }

}


/* selva */

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
.form-container-box {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/
/* ── Panel ── */
.mega-dropdown { position: static !important; }

.mega-menu-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    background: #ffffff;
    border-top: 2px solid #185FA5;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    z-index: 9999;
    padding: 16px 20px;
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    animation: megaFade 0.18s ease;
}

@keyframes megaFade {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-dropdown:hover .mega-menu-panel {
    display: grid;
}

/* ── Column ── */
.mega-col {
    padding: 0 15px;
    border-right: 1px solid #f0f2f5;
    display: flex;
    flex-direction: column;
}

.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { padding-right: 0; border-right: none; }

/* ── Column Header ── */
.mega-col-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #185FA5;
    margin-bottom: 10px;
    padding-bottom: 8px;
    /* border-bottom: 2px solid #185FA5; */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mega-col-header i {
    font-size: 12px;
    color: #185FA5;
}

/* ── Card ── */
.mega-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 6px;
    border-radius: 8px;
    border: none;
    border-bottom: 0.5px solid #f3f4f6;
    background: transparent;
    text-decoration: none;
    transition: background 0.15s ease;
    cursor: pointer;
}

.mega-card:last-child { border-bottom: none; }

.mega-card:hover {
    background: #f0f7ff;
    border-bottom-color: transparent;
    text-decoration: none;
}

/* ── Card Icon ── */
.mega-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    transition: background 0.15s;
}

.mega-card-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.mega-card-icon i {
    font-size: 15px;
    color: #185FA5;
}

.mega-card:hover .mega-card-icon { background: #185FA5; }
.mega-card:hover .mega-card-icon i { color: #fff; }

/* ── Card Body ── */
.mega-card-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.mega-card-name {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
}

.mega-card-desc {
    font-size: 10px;
    color: #9ca3af;
    line-height: 1.3;
}

.mega-card:hover .mega-card-name { color: #185FA5; }
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        /* opacity: 1; */
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/* Contact Section Styles */
.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f1fd;
    color: #185FA5;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}
.contact-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #185FA5;
}
.contact-heading {
    font-weight: 700;
    color: #0d1b2a;
}
.contact-sub {
    font-size: 14px;
    color: #6c757d;
}

/* Info Cards */
.info-card {
    background: #ffffff;
    border: 1px solid #e3eaf3;
    border-radius: 12px;
    padding: 1.2rem;
}
.info-card-full {
    background: #ffffff;
    border: 1px solid #e3eaf3;
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
}

/* Icon Boxes */
.icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.icon-blue  { background: #e6f1fb; color: #185FA5; }
.icon-teal  { background: #e1f5ee; color: #0F6E56; }
.icon-coral { background: #faece7; color: #993C1D; }

/* Labels & Values */
.info-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ea8b3;
}
.info-value {
    font-size: 13.5px;
    font-weight: 500;
    color: #1a2533;
    line-height: 1.7;
}
.info-value a {
    color: #185FA5;
    text-decoration: none;
    display: block;
}
.info-value a:hover {
    text-decoration: underline;
}
.info-divider {
    height: 1px;
    background: #e3eaf3;
}

/* Hours Pill */
.hours-pill {
    display: inline-flex;
    align-items: center;
    background: #eaf3de;
    color: #3B6D11;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Social Buttons */
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #1a2533;
    background: #ffffff;
    border: 1px solid #d0dae6;
    transition: background 0.15s ease;
}
.social-btn:hover {
    background: #f0f4f9;
    color: #1a2533;
    text-decoration: none;
}
/*** Navbar End ***/

/* ── Popular Tags ── */
/* .popular-tags-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 3fr);
    gap: 8px;
}

.pop-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9px 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 12px;
    color: #374151;
    text-decoration: none;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.pop-tag:hover {
    border-color: #185FA5;
    color: #185FA5;
    background-color: #f0f7ff;
}

.pop-tag.active {
    border-color: #185FA5;
    color: #185FA5;
    font-weight: 600;
    background-color: #EFF6FF;
} */
 
/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/i1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);
    
}
.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-secondary);
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}
.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter { margin-bottom: 40px; 
    }
}
/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%; 
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px; 
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}
/*** Features End ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px; 
    height: 90px; 
    border-radius: 50%;
    top: -45px; 
    left: 50%; 
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}
/*** Country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex; 
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}  
/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: #e8edee;
    color: #444;
}

.footer-heading {
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.footer-item p,
.footer-item a {
    color: #555;
    line-height: 2;
    font-size: 12px;
    text-decoration: none;
    display: block;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    text-decoration: none;
}

/* Twitter */
.social-icons a .fa-twitter {
    color: #1DA1F2;
}

/* Facebook */
.social-icons a .fa-facebook-f {
    color: #1877F2;
}

/* LinkedIn */
.social-icons a .fa-linkedin-in {
    color: #0A66C2;
}

/* Instagram */
.social-icons a .fa-instagram {
    color: #E4405F;
}

/* YouTube */
.social-icons a .fa-youtube {
    color: #FF0000;
}

.social-icons a:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
}
/* Footer End */

/* =========================
   COPYRIGHT SECTION
========================= */

.copyright {
    background: #e8edee !important;
    color: #222 !important;
    font-size: 12px !important;
    padding: 15px 0 !important;
    border-top: 1px solid #d9d9d9 !important;
}

.copyright .row {
    min-height: 70px !important;
    display: flex !important;
    align-items: center !important;
}

.copyright-logo {
    max-height: 65px !important;
    width: auto !important;
}

.pdf-logo {
    max-height: 55px !important;
    width: auto !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.pdf-logo:hover {
    transform: scale(1.05) !important;
}

.copyright-text {
    text-align: center !important;
    font-size: 12px !important;
    color: #222 !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
}

/* =========================
   LARGE DESKTOP
========================= */

@media (min-width: 1400px) {

    .copyright-logo {
        max-height: 70px !important;
    }

    .pdf-logo {
        max-height: 60px !important;
    }

    .copyright-text {
        font-size: 12px !important;
    }
}

/* =========================
   LAPTOP
========================= */

@media (min-width: 992px) and (max-width: 1399px) {

    .copyright-logo {
        max-height: 60px !important;
    }

    .pdf-logo {
        max-height: 50px !important;
    }

    .copyright-text {
        font-size: 12px !important;
    }
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) and (max-width: 991px) {

    .copyright {
        text-align: center !important;
    }

    .copyright-logo {
        max-height: 55px !important;
    }

    .pdf-logo {
        max-height: 45px !important;
    }

    .copyright-text {
        font-size: 11px !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .copyright {
        text-align: center !important;
        padding: 15px 0 !important;
    }

    .copyright .row {
        display: block !important;
    }

    .copyright-logo {
        max-height: 50px !important;
        margin-bottom: 10px !important;
    }

    .pdf-logo {
        max-height: 40px !important;
        margin-top: 10px !important;
    }

    .copyright-text {
        font-size: 11px !important;
        line-height: 1.6 !important;
        padding: 0 10px !important;
        margin: 10px 0 !important;
    }
}
/* COPYRIGHTS END */

/* HEADER START*/
/* =========================
   NAVBAR CSS
========================= */
/* Navbar */
.custom-navbar {
    background: #fff !important;
    padding: 12px 50px !important;
    box-shadow: none !important;
}

/* Logo */
.logo-img {
    height: 65px !important;
    width: auto !important;
}

/* Menu Alignment */
.navbar-collapse {
    justify-content: center !important;
}

.navbar-nav {
    align-items: center !important;
    gap: 12px !important;
}

/* Menu Links */
.navbar-nav .nav-link {
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 550 !important;
    padding: 0 10px !important;
    white-space: nowrap !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #1789C8 !important;
}

/* Get Quote Button */
.call-btn {
    margin-left: 30px !important;
    padding: 10px 24px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 600 !important;

    background-image: linear-gradient(
        156deg,
        #1789C8 39%,
        #7CCDF7 94%
    ) !important;
}

.call-btn:hover {
    color: #fff !important;
}

/* =========================
   Large Desktop (1400px+)
========================= */
@media (min-width: 1400px) {

    .navbar-nav {
        gap: 18px !important;
    }

    .navbar-nav .nav-link {
        font-size: 14px !important;
        padding: 0 10px !important;
    }

    .call-btn {
        margin-left: 30px !important;
    }
}

/* =========================
   Laptop (1024px - 1399px)
========================= */
@media (min-width: 1024px) and (max-width: 1399px) {

    .custom-navbar {
        padding: 12px 25px !important;
    }

    .logo-img {
        height: 60px !important;
        width: auto !important;
    }

    .navbar-collapse {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }

    .navbar-nav {
        margin: 0 auto !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .navbar-nav .nav-link {
        font-size: 13px !important;
        padding: 0 8px !important;
        white-space: nowrap !important;
    }

    .call-btn {
        margin-left: 20px !important;
        padding: 9px 18px !important;
        font-size: 12px !important;
        flex-shrink: 0 !important;
    }
}
/* =========================
   Desktop (992px - 1023px)
========================= */
@media (min-width: 992px) and (max-width: 1023px) {

    .custom-navbar {
        padding: 10px 15px !important;
    }

    .logo-img {
        height: 55px !important;
    }

    .navbar-nav {
        margin-left: 10px !important;
        gap: 2px !important;
    }

    .navbar-nav .nav-link {
        font-size: 12px !important;
        padding: 0 4px !important;
    }

    .call-btn {
        margin-left: 10px !important;
        padding: 8px 14px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 991px) {

    .custom-navbar {
        padding: 10px 15px !important;
        background: #fff !important;
    }

    .logo-img {
        height: 50px !important;
        width: auto !important;
    }

    .navbar-toggler {
        border: none !important;
        box-shadow: none !important;
        padding: 5px 8px !important;
    }

    .navbar-collapse {
        margin-top: 15px !important;
        text-align: center !important;
        background: #fff !important;
        padding: 10px 0 !important;
    }

    .navbar-nav {
        width: 100% !important;
        margin: 0 auto !important;
        align-items: center !important;
        gap: 0 !important;
    }

    .navbar-nav .nav-link {
        display: block !important;
        width: 100% !important;
        padding: 12px 0 !important;
        font-size: 14px !important;
        text-align: center !important;
    }

    .call-btn {
        display: table !important;
        margin: 15px auto !important;
        padding: 10px 22px !important;
        font-size: 13px !important;
        text-align: center !important;
    }
}
/*** Navbar End ***/
/* HEADER END */




 