
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
    background: #1a1a1a;
    overflow-x:hidden;
    width:100%;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }


  .hero-bg{
    position:absolute;
    inset:0;
    background: linear-gradient( 180deg, rgba(18,32,52,.60) 0%, rgba(10,22,40,.60) 10%, rgba(9, 30, 61, 0.68) 100% ), url("./dubai.png");
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    transform:scale(1.04);

    filter:
        saturate(.75)
        brightness(.82)
        contrast(1.02);

}


/*=============================
Blue cinematic overlay
=============================*/

.hero::before{

  content:"";

  position:absolute;

  inset:0;

  background:

  radial-gradient(
      circle at 25% 25%,
      rgba(132,170,225,.22),
      transparent 45%
  ),

  radial-gradient(
      circle at 85% 10%,
      rgba(60,100,170,.15),
      transparent 45%
  ),

  linear-gradient(
      180deg,
      rgba(10,20,35,.08),
      rgba(10,20,35,.18),
      rgba(7,16,28,.55)
  );

  z-index:1;

}


/*=============================
Blue cinematic overlay
=============================*/

.hero::before{

  content:"";

  position:absolute;

  inset:0;

  background:

  radial-gradient(
      circle at 25% 25%,
      rgba(132,170,225,.22),
      transparent 45%
  ),

  radial-gradient(
      circle at 85% 10%,
      rgba(60,100,170,.15),
      transparent 45%
  ),

  linear-gradient(
      180deg,
      rgba(10,20,35,.08),
      rgba(10,20,35,.18),
      rgba(7,16,28,.55)
  );

  z-index:1;

}


.hero::after{

  content:"";

  position:absolute;

  inset:0;

  pointer-events:none;

  background:

  radial-gradient(

      ellipse at center,

      rgba(255,255,255,0) 42%,

      rgba(0,0,0,.18) 72%,

      rgba(0,0,0,.55) 100%

  );

  z-index:1;

}



  /* Aerial cityscape SVG layer */


  .hero-inner{

    position:relative;

    z-index:2;

    width:100%;

    max-width:1380px;

    margin:auto;

    padding:30px 24px 60px;

    display:grid;

    grid-template-columns:1fr 380px;

    grid-template-areas:

    "header header"

    "left form";

    gap:60px;

    align-items:start;

}



.hero-header{

    grid-area:header;

}

.hero-left{

    grid-area:left;

}

.form-stack{

    grid-area:form;

}


.hero-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:10px;

}
.hero-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:10px;

}


.hero-call{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    padding:12px 22px;

    border-radius:50px;

    background:

    rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

    transition:.35s;

}

.hero-call i{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#008dc2;

    color:#fff;

}

.hero-call span{

    display:block;

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:1px;

    opacity:.75;

}

.hero-call strong{

    display:block;

    font-size:18px;

    margin-top:3px;

    font-weight:700;

}

.hero-call:hover{

    transform:translateY(-3px);

    background:rgba(255,255,255,.18);

    box-shadow:

    0 15px 35px rgba(0,0,0,.25);

}



.hero-logo img{

    height:65px;

    width:auto;

    display:block;

}

@media(max-width:991px){

    .hero-inner{
    
    grid-template-columns:1fr;
    
    grid-template-areas:
    
    "header"
    
    "left"
    
    "form";
    
    }
    
    .hero-header{
    
    flex-direction:column;
    
    gap:18px;
    
    margin-bottom:20px;
    
    }
    
    .hero-logo img{
    
    height:52px;
    
    }
    
    .hero-call{
    
    width:100%;
    
    justify-content:center;
    
    }
    
    }

  /* ── LEFT ── */
  .hero-left h1 {
    font-size: clamp(40px, 3vw, 2.6rem);
    font-weight: 600;
    color: #fff;
    /* line-height: 1.3; */
    margin-bottom: 18px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.45);
  }

  .hero-price {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 26px;
    font-weight: 500;
  }
  .hero-price strong { font-size: 1.35rem; font-weight: 800; }

  .hero-checklist { list-style: none; margin-bottom: 34px; }
  .hero-checklist li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 13px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.3);
  }
  .chk {
    width: 21px; height: 21px; flex-shrink: 0;
  }

  .tabby-inline {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  }
  .tabby-logo-wrap {
    display: flex;
    align-items: center;
    line-height: 0;       /* kills the invisible line-box gap */
  }
  
  .tabby-logo {
    height: 29px;         /* now you can go as big as you want */
    width: auto;
  }

/* Add this to the Tabby list item specifically */
.hero-checklist li:last-child {
  line-height: 1;
  align-items: center;  /* keeps checkbox + text + logo all centered */
}


  .disclaimer {
    margin-top: 38px;
    font-size: 0.73rem;
    color: rgba(255,255,255,0.72);
    max-width: 750px;
    line-height: 1.65;
  }

  .glass-panel{

    position:relative;

    overflow:hidden;

    width:100%;

    max-width:850px;

    min-height:510px;

    padding:48px;

    border-radius:28px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.16),
            rgba(255,255,255,.05)
        );

    backdrop-filter:blur(26px);

    -webkit-backdrop-filter:blur(26px);

    border:1px solid rgba(255,255,255,.24);

    box-shadow:

        0 35px 80px rgba(0,0,0,.32),

        inset 0 1px 0 rgba(255,255,255,.25);

}

.glass-panel::before{

  content:"";

  position:absolute;

  inset:0;

  background:

  linear-gradient(

      135deg,

      rgba(255,255,255,.20),

      rgba(255,255,255,.06) 35%,

      transparent 70%

  );

  pointer-events:none;

}


.glass-panel::after{

  content:"";

  position:absolute;

  left:-20%;

  top:-35%;

  width:60%;

  height:140%;

  transform:rotate(-18deg);

  background:

      linear-gradient(

          rgba(255,255,255,.16),

          rgba(255,255,255,0)

      );

  opacity:.45;

  pointer-events:none;

}

  /* ══════════════════════════════
     LAYERED FORM CARD
     Red box (behind) + White box (overlapping, higher z-index)
  ══════════════════════════════ */
  .form-stack {
    position: relative;
    /* Total height driven by content */
  }

  /* RED CARD — sits behind, taller, shows title at top */
  .form-red {
    background: #153145;
    border-radius: 30px;
    padding: 26px 28px 80px; /* bottom padding leaves room for white overlap */
    position: relative;
    z-index: 1;
    box-shadow: 0 16px 50px rgba(0,0,0,0.45);
    display: block;
    height: 28rem;
    width: 23.8125rem;
    backdrop-filter:blur(100px);

  }
  .form-red h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 7px;
  }
  .form-red p {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
  }
  .form-white{

    position:relative;

    width:23.6875rem;
    height:30rem;

    margin-top:-52px;

    transform:translateY(-250px);

    display:flex;
    justify-content:center;

    border-radius:24px;

    background:
        linear-gradient(
            180deg,
            rgba(215,223,232,.28) 0%,
            rgba(184,194,205,.18) 45%,
            rgba(154,165,178,.12) 100%
        );

    border:1px solid rgba(255,255,255,.20);

    backdrop-filter:blur(22px);

    -webkit-backdrop-filter:blur(22px);

    box-shadow:
        0 28px 65px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.28);
z-index: 2;
}

.form-innerwhite{

  position:relative;

  width:100%;
  max-width:302px;

  height:500px;

  margin:auto;

  transform:translateY(-70px);

  padding:26px;

  border-radius:18px;

  background:
      linear-gradient(
          180deg,
          rgba(250,252,254,.94),
          rgba(236,241,246,.86)
      );

  border:1px solid rgba(255,255,255,.35);

  backdrop-filter:blur(12px);

  -webkit-backdrop-filter:blur(12px);

  box-shadow:
      inset 0 1px 0 rgba(255,255,255,.80);
      z-index: 3;
      margin-top:20px;
}


.form-white::before{

  content:"";

  position:absolute;

  inset:0;

  border-radius:inherit;

  background:

      linear-gradient(
          135deg,
          rgba(255,255,255,.22),
          transparent 45%
      );

  pointer-events:none;

}

  /* Input fields */
  .field {
    position: relative;
    margin-bottom: 12px;
  }
  .field input,
  .field textarea,
  .field select {
    width: 100%;
    padding: 12px 12px 12px 38px;
    border: 1.5px solid #d8d8d8;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
  }
  .field input::placeholder,
  .field textarea::placeholder,
  .field select { color: #bbb; }

  .field input:focus,
  .field textarea:focus,
  .field select:focus { border-color: #1a7a50; }

  .field-ico {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    pointer-events: none;
    display: flex;
    align-items: center;
  }
  .field.area-field .field-ico { top: 15px; transform: none; }
  .field textarea { height: 90px; resize: none; padding-top: 12px; }

  /* Phone row */
/* =====================================
   HERO PHONE INPUT
===================================== */

/* Phone row */
.phone-row {
    margin-bottom: 12px;
  }
  
  .phone-row .iti {
    width: 100%;
  }
  
  .phone-row input {
    width: 100%;
    padding: 12px 12px 12px 12px;
    border: 1.5px solid #d8d8d8;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    height: 44px; /* match other inputs */
  }
  
  .phone-row input::placeholder {
    color: #bbb;
  }
  
  .phone-row input:focus {
    border-color: #1a7a50;
  }
  
  /* Flag/dial-code box */
  .phone-row .iti__selected-flag {
    padding: 0 8px 0 10px;
    border-right: 1px solid #d8d8d8;
  }
  
  .phone-row .iti--separate-dial-code .iti__selected-flag {
    background-color: #f9f9f9;
    border-radius: 6px 0 0 6px;
  }
  
  .phone-row .iti__selected-dial-code {
    font-size: 0.85rem;
    color: #333;
    margin-left: 6px;
  }
  
  /* Dropdown list */
  .phone-row .iti__country-list {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    border-radius: 6px;
    border: 1.5px solid #d8d8d8;
    z-index: 20;
  }

  /* Call me button */
  .btn-call {
    width: 100%;
    padding: 14px;
    background: #153145;
    color: #fff;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.98rem;
    border: 3px solid #D8DBDE;
    cursor: pointer;
    margin-top: 4px;
    letter-spacing: 0.02em;
    transition: background 0.2s, transform 0.15s;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.25),
      0 8px 20px rgba(0,0,0,.25);
  }



/*   
  .btn-call:hover { background:  #008dc2;  transform: translateY(-1px); } */

  .privacy {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; margin-top: 12px;
    font-size: 0.78rem; color: #888; font-weight: 500;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner {
      grid-template-columns: 1fr;
      padding: 90px 24px 60px;
      max-width: 520px;
    }
  }



/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
    justify-items: center;
  }

  .glass-panel {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .form-stack {
    max-width: 420px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    width:100%;
    max-width:100%;
    padding:40px 16px;

    display:flex;
    flex-direction:column;
    align-items:center;
  }
  

  .glass-panel {
    width: 100%;
    padding: 28px 22px;
  }

  .hero-left h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .form-stack {
    max-width: 100%;
  }

  .form-red {
    border-radius: 24px;
    padding: 22px 20px 100px;
  }

  .form-white {
    margin-top: -80px;
    border-radius: 18px;
    padding: 20px;
  }
  .form-innerwhite {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 300px;
    transform: translateY(-50px);
    margin: 0 auto;

}
}
@media (max-width: 480px) {
  .hero-inner {
    padding: 30px 16px;
    gap: 24px;
  }

  .glass-panel {
    padding: 20px 16px;
  }

  .hero-left h1 {
    font-size: 1.6rem;
  }

  .hero-checklist li {
    font-size: 0.85rem;
  }

  .tabby-logo {
    height: 22px;
  }

  .form-red {
    padding: 20px 16px 95px;
    border-radius: 20px;
  }

  .form-white {
    margin-top: -75px;
    padding: 16px;
    border-radius: 16px;
  }

  .form-innerwhite {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 300px;
    transform: translateY(-50px);
    margin: 0 auto;

  }
  .field input,
  .field textarea {
    font-size: 0.82rem;
    padding: 10px 10px 10px 34px;
  }

  .btn-call {
    font-size: 0.92rem;
    padding: 12px;
  }
}


/* ===================================
   CERTIFICATIONS
=================================== */

.certifications-section{

  position:relative;

  overflow:hidden;

  padding:110px 20px 120px;
/* 
  background:

      radial-gradient(
          circle at 50% -10%,
          rgba(170,200,255,.12),
          transparent 42%
      ),

      linear-gradient(
          180deg,
          #162131 0%,
          #1a2738 35%,
          #182334 100%
      ); */
      /* background: linear-gradient(to bottom, #102026 0%, #0B1116 100%); */
      /* background: linear-gradient(to bottom, #000608 0%, #263643 100%); */

      background: linear-gradient( 180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 10%, rgba(7, 19, 38, 0.85) 100% ), url('./images/bg/bg01.png');
      background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

/* radial-gradient(circle at top,#26384b 0%,transparent 45%),

radial-gradient(circle at bottom,#111827 0%,#111827 100%),

linear-gradient(180deg,#1b2838,#141f2b); */
      

}

.certifications-section::before{

  content:"";

  position:absolute;

  inset:0;

  background:linear-gradient(135deg,rgba(255,255,255,.16),transparent 45%);
  pointer-events:none;

}

.certifications-section::after{

  content:"";

  position:absolute;

  inset:0;

  /* background:url("./dubai.png"); */

  /* background: linear-gradient(to bottom, #101C26 0%, #0B1116 100%); */

  background-size:cover;

  background-position:center bottom;

  opacity:.12;

  filter:blur(16px)brightness(.55)saturate(.65);

  pointer-events:none;

}
.certifications-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
    margin-bottom:60px;
    position: relative;
    z-index: 2;
}

.cert-badge{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:10px 22px;

  margin-bottom:25px;

  border-radius:999px;

  background:

      rgba(255,255,255,.08);

  backdrop-filter:blur(20px);

  border:1px solid rgba(255,255,255,.18);

  color:white;

  font-size:13px;

  letter-spacing:1px;

  text-transform:uppercase;

}

.section-title-white{

  color:white;

  font-size:40px;

  font-weight:800;

  line-height:1.05;

  margin-bottom:20px;

  /* text-shadow:

      0 6px 20px rgba(0,0,0,.35); */

}

.section-subtitle{

    color:rgba(255,255,255,.82);

    font-size:18px;

    line-height:1.7;

    max-width:640px;

    font-size:18px;

    line-height:1.65;

    margin:auto;

}

/* Grid */

.certifications-grid{
    max-width:1400px;

    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:18px;
}

/* Glass Card */

.certificate-card{

    position:relative;

    padding:16px;

    border-radius:20px;

    background:rgba(255,255,255,0.05);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 10px 30px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.08);

    transition:all .35s ease;

    aspect-ratio:4/3;

    display:flex;
    align-items:center;
    justify-content:center;
}

.certificate-card:hover{

    transform:translateY(-10px);

    border-color:rgba(0,141,194,.4);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35),
        0 0 30px rgba(0,141,194,.15);
}

.certificate-card img{

    width:100%;
    height:100%;

    object-fit:contain;

    filter:
        drop-shadow(0 5px 15px rgba(0,0,0,.2));
}

@media(max-width:576px){

    .certifications-section{
        padding:70px 15px;
    }

    .certifications-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .certificate-card{
        aspect-ratio:auto;
        min-height:260px;
    }

}

/* ==========================================
   SERVICES SECTION
========================================== */

.services-section {
    position: relative;
    overflow: hidden;
    padding: 30px 20px;
    /* background:

    radial-gradient(circle at top,#26384b 0%,transparent 45%),
    
    radial-gradient(circle at bottom,#111827 0%,#111827 100%),
    
    linear-gradient(180deg,#1b2838,#141f2b); */




    background: linear-gradient( 360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 10%, rgba(7, 19, 38, 0.85) 100% ), url('./images/bg/bg1.png');
    background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}

/* Background Blur */

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background:
        radial-gradient(circle at 15% 30%, rgba(0, 141, 194, .15), transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(0, 141, 194, .10), transparent 35%); */
        background:
radial-gradient(circle at top,#243a50 0%,#182432 45%,#111827 100%);
    pointer-events: none;
}

/* Dark Overlay */

.services-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, .02),
            rgba(0, 0, 0, .18));
    pointer-events: none;
}

.services-container {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    margin: auto;
}

/* ==========================================
   HEADING
========================================== */

.services-heading {
    text-align: center;
    margin-bottom: 70px;
}

.service-pill {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 28px;

    border-radius: 999px;

    color: rgba(255,255,255,.85);

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(18px);

    margin-bottom: 25px;

    box-shadow:
        inset 0 1px rgba(255,255,255,.08),
        0 10px 30px rgba(0,0,0,.18);

}

.services-heading h2 {

    color: #fff;

    font-size: 40px;

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1px;

    margin-bottom: 25px;

}

.title-line {

    width: 110px;

    height: 3px;

    margin: auto;

    border-radius: 50px;

    background: #2aa8ff;

    box-shadow:
        0 0 10px #2aa8ff,
        0 0 25px rgba(42,168,255,.7);

}

/* ==========================================
   GRID
========================================== */

.services-grid {

    display: grid;

    grid-template-columns:repeat(4,minmax(260px,1fr));

    gap: 20px;

}

/* ==========================================
   CARD
========================================== */

.service-card {

    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: space-between;

    text-align: center;

    min-height: 300px;

    padding: 28px 28px;

    text-decoration: none;

    border-radius: 18px;

    background: rgba(255,255,255,.06);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(130,170,255,.16);

    box-shadow:

        inset 0 1px rgba(255,255,255,.06),

        0 25px 45px rgba(0,0,0,.28);

    transition: .45s ease;
align-items: center;
}

/* top glow */

.service-top-glow{

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:90px;

    height:2px;

    background:#2aa8ff;

    border-radius:20px;

    box-shadow:

        0 0 12px #2aa8ff,

        0 0 28px rgba(42,168,255,.8);

}

/* hover light */

.service-card::after{

    content:"";

    position:absolute;

    top:-40%;

    left:-120%;

    width:70%;

    height:180%;

    transform:rotate(25deg);

    background:linear-gradient(

        rgba(255,255,255,0),

        rgba(255,255,255,.12),

        rgba(255,255,255,0)

    );

    transition:.9s;

}

.service-card:hover::after{

    left:150%;

}

/* ==========================================
   ICON
========================================== */

.service-icon{

    width: 62px;

    height:62px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:

    linear-gradient(
    
    180deg,
    
    rgba(255,255,255,.12),
    
    rgba(255,255,255,.04)
    
    );

    border:1px solid rgba(255,255,255,.12);

    box-shadow:

        inset 0 1px rgba(255,255,255,.25),

        0 0 30px rgba(42,168,255,.18);

    margin-bottom:22px;

    transition:.4s;

}

.service-icon i{

    font-size:25px;

    color:#3bb4ff;

}

/* ==========================================
   CONTENT
========================================== */

.service-content h3{

    color:#fff;

    font-size:23px;

    font-weight:600;

    margin-bottom:14px;

    line-height:1.2;

}

.service-content p{

    color:rgba(255,255,255,.75);

    font-size:14px;

    line-height:1.8;

    max-width:230px;

    margin:auto;

}

/* ==========================================
   ARROW
========================================== */

.service-arrow{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    /* margin-top:35px; */

    border:1px solid rgba(65,170,255,.35);

    background:rgba(255,255,255,.04);

    color:#fff;

    transition:.35s;
    margin-top:auto;

}

.service-arrow i{

    transition:.35s;

}

/* ==========================================
   HOVER
========================================== */

.service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(42,168,255,.45);

    box-shadow:

        0 40px 70px rgba(0,0,0,.45),

        0 0 30px rgba(42,168,255,.15);

}

.service-card:hover .service-icon{

    transform:scale(1.08);

    box-shadow:

        0 0 45px rgba(42,168,255,.35),

        inset 0 1px rgba(255,255,255,.3);

}

.service-card:hover .service-arrow{

    background:#2aa8ff;

    border-color:#2aa8ff;

}

.service-card:hover .service-arrow i{

    transform:translateX(4px);

}



/* =====================================================
   LARGE DESKTOP (1400px+)
===================================================== */

@media (min-width:1400px){

    .services-container{
        max-width:1400px;
    }

    .services-grid{
        gap:32px;
    }

}


/* =====================================================
   LAPTOP (1200px)
===================================================== */

@media (max-width:1200px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);

        gap:28px;

    }

    .service-card{

        min-height:340px;

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width:992px){

    .services-section{

        padding:90px 25px;

    }

    .services-heading{

        margin-bottom:55px;

    }

    .services-heading h2{

        font-size:48px;

    }

    .service-pill{

        padding:11px 24px;

        font-size:12px;

    }

    .services-grid{

        grid-template-columns:repeat(2,1fr);

        gap:22px;

    }

    .service-card{

        padding:35px 28px;

        min-height:330px;

    }

    .service-content h3{

        font-size:26px;

    }

    .service-content p{

        font-size:15px;

    }

}


/* =====================================================
   MOBILE LANDSCAPE
===================================================== */

@media (max-width:768px){

    .services-section{

        padding:80px 18px;

    }

    .services-heading h2{

        font-size:40px;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        min-height:auto;

        padding:38px 30px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width:576px){

    .services-section{

        padding:70px 15px;

    }

    .services-heading{

        margin-bottom:45px;

    }

    .services-heading h2{

        font-size:34px;

        line-height:1.2;

    }

    .service-pill{

        padding:10px 22px;

        font-size:11px;

        letter-spacing:1.5px;

    }

    .title-line{

        width:80px;

    }

    .service-card{

        border-radius:18px;

        padding:32px 24px;

    }

    .service-icon{

        width:82px;

        height:82px;

    }

    .service-icon i{

        font-size:30px;

    }

    .service-content h3{

        font-size:23px;

    }

    .service-content p{

        font-size:15px;

        line-height:1.7;

    }

    .service-arrow{

        width:44px;

        height:44px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width:380px){

    .services-heading h2{

        font-size:30px;

    }

    .service-card{

        padding:28px 20px;

    }

    .service-content h3{

        font-size:21px;

    }

    .service-content p{

        font-size:14px;

    }

}


.services-section::before{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:260px;

    /* background:url("./cer") center bottom/cover no-repeat; */

    opacity:.18;

    pointer-events:none;

}
@keyframes floatIcon{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

}

.service-icon{

    animation:floatIcon 4s ease-in-out infinite;

}


@keyframes glowLine{

    0%,100%{

        box-shadow:
        0 0 12px #2aa8ff,
        0 0 30px rgba(42,168,255,.45);

    }

    50%{

        box-shadow:
        0 0 20px #2aa8ff,
        0 0 45px rgba(42,168,255,.9);

    }

}

.title-line{

    animation:glowLine 3s infinite;

}


/* ===================================
   ABOUT SECTION
=================================== */

.about-section {

    padding: 30px 20px;

    background: #ffffff;
}

.about-container {

    max-width: 1280px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

/* VIDEO */

.video-container {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    cursor: pointer;

    background: #fff;

    box-shadow:
        0 20px 50px rgba(0,0,0,.12);
}

.video-thumbnail {

    width: 100%;

    display: block;
}

.video-embed {

    width: 100%;
}

.video-embed iframe {

    width: 100%;

    height: 500px;

    border: none;

    display: block;
}

.play-button {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90px;
    height: 90px;

    border-radius: 50%;

    background: rgba(255,255,255,.95);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;
}

.play-button i {

    font-size: 32px;

    color: #008dc2;
}

.video-container:hover .play-button {

    transform: translate(-50%, -50%) scale(1.08);
}

/* CONTENT */

.about-tag {

    display: inline-block;

    color: #008dc2;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.about-content h2 {

    font-size: 40px;

    font-weight: 700;

    line-height: 1.2;

    color: #111;

    margin-bottom: 25px;
}

.about-content p {

    color: #555;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 20px;
}

/* FEATURES */

.about-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin: 35px 0;
}

.feature-item {

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 500;

    color: #222;
}

.feature-item i {

    color: #008dc2;
}

/* BUTTON */

.about-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 30px;

    border-radius: 50px;

    background: #153145;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;
}

.about-btn:hover {

    background: #008dc2;
}

/* HELPERS */

.d-none {

    display: none;
}

/* TABLET */

@media (max-width: 991px) {

    .about-container {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-content h2 {

        font-size: 38px;
    }

    .video-embed iframe {

        height: 400px;
    }
}

/* MOBILE */

@media (max-width: 576px) {

    .about-section {

        padding: 70px 15px;
    }

    .about-content h2 {

        font-size: 30px;
    }

    .about-features {

        grid-template-columns: 1fr;
    }

    .play-button {

        width: 70px;
        height: 70px;
    }

    .play-button i {

        font-size: 24px;
    }

    .video-embed iframe {

        height: 250px;
    }
}


/* =====================================
   BENEFITS SECTION
===================================== */

.benefits-section{

    padding:50px 20px;

    background:linear-gradient( 360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 10%, rgba(7, 19, 38, 0.85) 100% ),url('./images/bg/bg2.png');
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.benefits-header{

    max-width:850px;

    margin:0 auto 60px;

    text-align:center;
}

.benefits-tag{

    color:#008dc2;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;
}

.benefits-header h2{

    font-size:40px;

    color:white;

    margin:15px 0 20px;
}

.benefits-header p{

    color:#666;

    line-height:1.8;
}

.benefits-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;
}

.benefit-card{

    background:#fff;

    border-radius:12px;

    padding: 15px 15px;

    display:flex;

    align-items:center;

    gap:15px;

    min-height:100px;

    border:1px solid #ececec;

    box-shadow:
        0 8px 25px rgba(0,0,0,.05);

    transition:.3s;
}

.benefit-card:hover{

    transform:translateY(-5px);

    border-color:#008dc2;

    box-shadow:
        0 15px 35px rgba(0,0,0,.12);
}


.benefit-card i{

    color: #39414c;

    font-size:40px;

    flex-shrink:0;
}

.benefit-card span{

    font-size:17px;

    font-weight:600;

    color:#111;
}


@media(max-width:991px){

    .benefits-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .benefits-header h2{

        font-size:38px;
    }
}

@media(max-width:576px){

    .benefits-grid{

        grid-template-columns:1fr;
    }

    .benefits-header h2{

        font-size:30px;
    }
}

/* ==================================
   TESTIMONIALS SECTION
================================== */

.testimonials-section{
    padding:90px 20px;
    background:#ffffff;
}

.testimonial-container{

    max-width:1220px;
    margin:auto;

    display:grid;
    grid-template-columns:260px 1fr;
    gap:18px;

    align-items:stretch;

}

.rating-row{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    margin-bottom:32px;

}

.rating-number{

    font-size:22px;

    font-weight:600;

    color:#111;

}

.rating-stars{

    color:#fbbc04;

    font-size:22px;

    letter-spacing:2px;

}

.rating-divider{

    width:1px;

    height:48px;

    background:#dddddd;

}

.review-count{

    font-size:15px;

    line-height:1.4;

    color:#444;

    text-align:left;

}
/* ==================================
   GOOGLE SUMMARY
================================== */

.review-summary{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.review-summary img{

    width:170px;

    margin-bottom:18px;

}

.review-summary h3{

    font-size:18px;

    font-weight:600;

    line-height:1.4;

    margin-bottom:28px;

}

/* ==================================
   SLIDER
================================== */

.testimonial-slider-wrapper{

    overflow:hidden;

}

.testimonial-slider{

    padding:2px;

}

/* ==================================
   CARD
================================== */

.testimonial-card{

    position:relative;

    background:#fff;

    border:1px solid #ececec;

    border-radius:18px;

    padding:20px;

    min-height:220px;

    transition:.35s ease;

    box-shadow:
    0 8px 25px rgba(0,0,0,.08);

}

.testimonial-card:hover{

    transform:translateY(-6px);

    border-color:#008dc2;

    box-shadow:
    0 18px 40px rgba(0,0,0,.10);

}

/* ==================================
   GOOGLE ICON
================================== */

.google-badge{

    position:absolute;

    right:22px;

    top:22px;

    width:34px;

}

/* ==================================
   REVIEWER
================================== */

.reviewer{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:20px;

}

.reviewer img{

    width:64px;

    height:64px;

    border-radius:50%;

    object-fit:cover;

}

.reviewer h4{

    margin:0;

    font-size:16px;

    font-weight:700;

    color:#111;

}

.review-stars{

    margin-top:6px;

    color:#fbbc04;

    font-size:15px;

    letter-spacing:2px;

}

/* ==================================
   REVIEW TEXT
================================== */

.testimonial-card p{

    margin:0;

    color:#333;

    font-size:15px;

    line-height:1.9;

    display:-webkit-box;

    -webkit-box-orient:vertical;

    -webkit-line-clamp:5;

    overflow:hidden;
    max-width:290px;

}

/* ==================================
   SPLIDE
================================== */

.splide__track{

    overflow:visible;

}

.splide__list{

    align-items:stretch;

}

.splide__slide{

    height:auto;

}

.splide__slide .testimonial-card{

    height:100%;

}

/* ==================================
   ARROWS
================================== */

.splide__arrow{

    width:42px;

    height:42px;

    background:#fff !important;

    border:1px solid #e8e8e8;

    box-shadow:
    0 8px 25px rgba(0,0,0,.08);

    opacity:1;
    top:50%;

    transform:translateY(-50%);

}

.splide__arrow:hover{

    background:#008dc2 !important;

}

.splide__arrow:hover svg{

    fill:#fff;

}

.splide__arrow svg{

    fill:#008dc2;

}

.splide__arrow--prev{

    left:-18px;

}

.splide__arrow--next{

    right:-18px;

}

/* ==================================
   TABLET
================================== */

@media(max-width:992px){

    .testimonial-container{

        grid-template-columns:1fr;

        gap:30px;

    }

    .review-summary{

        max-width:320px;

        margin:auto;

    }

}

/* ==================================
   MOBILE
================================== */

@media(max-width:576px){

    .testimonials-section{

        padding:70px 15px;

    }

    .testimonial-card{

        min-height:auto;

        padding:20px;

    }

    .reviewer img{

        width:56px;
        height:56px;

    }

    .reviewer h4{

        font-size:17px;

    }

    .testimonial-card p{

        font-size:14px;

    }

    .splide__arrow{

        display:none;

    }

}

/* ======================================================
   FOOTER SECTION
====================================================== */

.site-footer{
    position:relative;
    overflow:hidden;
    background: radial-gradient(circle at top left, rgba(0, 136, 255, 0.27), transparent 35%),
     radial-gradient(circle at bottom right, rgba(19, 49, 69, 0), transparent 45%), linear-gradient(180deg,#07132100 0%,#030B1500 100%),
     url('./images/bg/Footerbackground_image.png');
    padding:90px 0 0;
}

/* Optional background glow */

.site-footer::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(0,140,255,.08);
    filter:blur(120px);
    top:-180px;
    left:-180px;
    pointer-events:none;
}

.site-footer::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(0,90,180,.08);
    filter:blur(130px);
    right:-200px;
    bottom:-200px;
    pointer-events:none;
}

/* ======================================================
   CONTAINER
====================================================== */

.footer-container{

    max-width:1440px;

    margin:auto;

    padding:0 40px;

    display:grid;

    grid-template-columns:
        390px
        340px
        450px;

    justify-content:space-between;

    align-items:flex-start;

    column-gap:55px;

    position:relative;

    z-index:2;

}

/* ======================================================
   COMMON CARD
====================================================== */

.footer-form-card,
/* .footer-contact-column, */
.footer-map-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    box-shadow:

        0 25px 70px rgba(0,0,0,.35),

        inset 0 1px 0 rgba(255,255,255,.08);

    transition:.35s;

}

.footer-form-card:hover,
/* .footer-contact-column:hover, */
.footer-map-card:hover{

    transform:translateY(-8px);

    box-shadow:

        0 40px 80px rgba(0,0,0,.45),

        inset 0 1px 0 rgba(255,255,255,.15);

}

/* ======================================================
   FORM COLUMN
====================================================== */

.footer-form-column{

    display:flex;

    justify-content:center;

}

.footer-form-card{

    width:100%;

    padding:18px;

}

.footer-form-header{

    text-align:center;

    margin-bottom:12px;

}

.footer-form-header h2{

    color:#ffffff;

    font-size:22px;

    font-weight:700;

    margin-bottom:6px;

    line-height:1.2;

}

.footer-form-header p{

    color:rgba(255,255,255,.82);

    font-size:14px;

    line-height:1.7;

}

.footer-form-glass{

    background:

        linear-gradient(

            180deg,

            rgba(255,255,255,.22),

            rgba(255,255,255,.12)

        );

    border:1px solid rgba(255,255,255,.15);

    border-radius:24px;

    padding:12px;

    backdrop-filter:blur(24px);

    -webkit-backdrop-filter:blur(24px);

}

.footer-form-body{

    background:#F5F7FA;

    border-radius:18px;

    padding:18px;

}

/* ======================================================
   CONTACT COLUMN
====================================================== */

.footer-contact-column{

    padding: 10px 20px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    height:100%;

}

.footer-logo{

    text-align:center;

    margin-bottom:35px;

}

.footer-logo img{

    width:210px;

    max-width:100%;

    display:block;

    margin:auto;

}

.footer-contact-box{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:32px;

}

.footer-contact-box:last-child{

    margin-bottom:0;

}

.footer-contact-icon{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(0,180,255,.12);

    border:1px solid rgba(0,180,255,.25);

    color:#3DD9FF;

    font-size:22px;

    flex-shrink:0;

}

.footer-contact-content h4{

    color:#ffffff;

    font-size:1rem;

    font-weight:700;

    margin-bottom:10px;

}

.footer-contact-content p{

    color:rgba(255,255,255,.78);

    line-height:1.8;

    font-size:.92rem;

}

.footer-contact-content a{

    display:block;

    color:#ffffff;

    text-decoration:none;

    margin-bottom:8px;

    transition:.3s;

}

.footer-contact-content a:hover{

    color:#4DDCFF;

}

/* ======================================================
   MAP COLUMN
====================================================== */

.footer-map-column{

    display:flex;

    justify-content:flex-end;

}

.footer-map-card{

    position:relative;

    width:100%;

    overflow:hidden;

    padding:18px;

}

.footer-map-card iframe{

    width:100%;

    height:420px;

    border:none;

    border-radius:18px;

}

.footer-map-btn{

    position:absolute;

    top:35px;

    left:35px;

    z-index:5;

    background:#ffffff;

    color:#2367ff;

    text-decoration:none;

    font-size:.85rem;

    font-weight:600;

    padding:10px 16px;

    border-radius:10px;

    transition:.3s;

    box-shadow:0 10px 25px rgba(0,0,0,.20);

}

.footer-map-btn:hover{

    background:#f3f6ff;

    transform:translateY(-2px);

}

/* ======================================================
   FOOTER BOTTOM
====================================================== */

.footer-bottom{

    margin-top:90px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom-inner{

    max-width:1350px;

    margin:auto;

    padding:28px 40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:rgba(255,255,255,.55);

    font-size:.9rem;

}

.footer-links{

    display:flex;

    gap:35px;

}

.footer-links a{

    color:rgba(255,255,255,.70);

    text-decoration:none;

    transition:.3s;

    font-size:.9rem;

}

.footer-links a:hover{

    color:#49DBFF;

}

/* ======================================================
   TABLET RESPONSIVE
====================================================== */

@media(max-width:1200px){

.footer-container{

    grid-template-columns:

        1fr
        1fr;

    gap:45px;

}

.footer-map-column{

    grid-column:1/-1;

    justify-content:center;

}

.footer-map-card{

    max-width:850px;

}

}

@media(max-width:768px){

.footer-container{

    grid-template-columns:1fr;

    padding:0 20px;

}

.footer-form-column,
.footer-contact-column,
.footer-map-column{

    width:100%;

}

.footer-map-column{

    justify-content:center;

}

.footer-bottom-inner{

    flex-direction:column;

    text-align:center;

}

.footer-links{

    justify-content:center;

}

}

/* ======================================================
   PART 3
   PREMIUM CALLBACK FORM
====================================================== */

/* ==========================================
   FORM FIELDS
========================================== */

.footer-field{
    position:relative;
    margin-bottom:10px;
}

.footer-field input,
.footer-field textarea,
.footer-field select{

    width:100%;

    font-family:'Montserrat',sans-serif;

    font-size:0.92rem;

    color:#2c3a47;

    background:#ffffff;

    border:1.5px solid #D8DEE6;

    border-radius:12px;

    outline:none;

    transition:all .30s ease;

}

/* Input */

.footer-field input{

    height:44px;

    padding:0 18px 0 48px;

}

/* Textarea */

.footer-field textarea{

    min-height:78px;

    resize:none;

    padding:10px 18px 16px 48px;

    line-height:1.7;

}


/* Select */

.footer-field select{

    height:44px;

    padding:0 45px 0 48px;

    appearance:none;

    -webkit-appearance:none;

    -moz-appearance:none;

    cursor:pointer;

}

/* Placeholder */

.footer-field input::placeholder,
.footer-field textarea::placeholder,
.footer-field select{

    color:#A0A7B3;

    font-weight:500;

}

/* ==========================================
   INPUT ICONS
========================================== */

.footer-input-icon{

    position:absolute;

    top:50%;

    left:16px;

    transform:translateY(-50%);

    width:20px;

    height:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#8A96A8;

    pointer-events:none;

    transition:.3s;

}

.footer-input-icon svg{

    width:16px;

    height:16px;

}

/* textarea */

.footer-textarea .footer-input-icon{

    top:22px;

    transform:none;

}



/* ==========================================
   SELECT ARROW
========================================== */

.footer-field{

    position:relative;

}

.footer-field select{

    appearance:none;

    -webkit-appearance:none;

    -moz-appearance:none;

}

.footer-field::after{

    content:"";

    position:absolute;

    right:18px;

    top:50%;

    width:10px;

    height:10px;

    margin-top:-3px;

    border-right:2px solid #8A96A8;

    border-bottom:2px solid #8A96A8;

    transform:rotate(45deg);

    pointer-events:none;

}



/* ==========================================
   INPUT FOCUS
========================================== */
.footer-field input:hover,
.footer-field textarea:hover,
.footer-field select:hover{

    border-color:#9FC8FF;

}

.footer-field input:focus,
.footer-field textarea:focus,
.footer-field select:focus{

    border-color:#1F78FF;

    box-shadow:

        0 0 0 5px rgba(31,120,255,.10);

}

.footer-field input:focus + .footer-input-icon,
.footer-field textarea:focus + .footer-input-icon{

    color:#1F78FF;

}

/* ==========================================
   PHONE GROUP
========================================== */

.footer-phone-group{

    display:flex;

    align-items:center;

    overflow:hidden;

    background:#ffffff;

    border:1.5px solid #D8DEE6;

    border-radius:12px;

    transition:.30s;

    margin-bottom:16px;

}

.footer-phone-group:hover{

    border-color:#9FC8FF;

}

.footer-phone-group:focus-within{

    border-color:#1F78FF;

    box-shadow:

        0 0 0 5px rgba(31,120,255,.10);

}

/* Country */

.footer-country-code{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:0 18px;

    height:44px;

    font-size:.90rem;

    font-weight:600;

    color:#344054;

    border-right:1px solid #E4E8EE;

    background:#F8FAFC;

    white-space:nowrap;

}

/* Phone Input */

.footer-phone-group input{

    flex:1;

    height:44px;

    border:none;

    outline:none;

    padding:0 16px;

    font-size:.92rem;

    font-family:'Montserrat',sans-serif;

    background:transparent;

}

/* ==========================================
   BUTTON
========================================== */

.footer-submit-btn{

    width:100%;

    height:48px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-family:'Montserrat',sans-serif;

    font-size:1rem;

    font-weight:700;

    color:#ffffff;

    letter-spacing:.4px;

    background:

        linear-gradient(
            135deg,
            #163145,
            #234F6C
        );

    box-shadow:

        0 15px 35px rgba(12,30,48,.30);

    transition:

        transform .30s,

        box-shadow .30s,

        background .30s;

}

/* Hover */

.footer-submit-btn:hover{

    transform:translateY(-3px);

    background:

        linear-gradient(
            135deg,
            #204C69,
            #2C698D
        );

    box-shadow:

        0 20px 40px rgba(12,30,48,.40);

}

/* Active */

.footer-submit-btn:active{

    transform:scale(.98);

}

/* ==========================================
   PRIVACY
========================================== */

.footer-privacy{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    margin-top:10px;

    color:#7D8898;

    font-size:.78rem;

    font-weight:500;

}

.footer-privacy svg{

    color:#7D8898;

}

/* ==========================================
   FIELD ANIMATION
========================================== */

.footer-field input,
.footer-field textarea,
.footer-phone-group{

    transition:

        border-color .30s,

        box-shadow .30s,

        transform .30s;

}

.footer-field:hover input,
.footer-field:hover textarea{

    transform:translateY(-1px);

}

.footer-phone-group:hover{

    transform:translateY(-1px);

}

/* ==========================================
   BUTTON SHINE EFFECT
========================================== */

.footer-submit-btn{

    position:relative;

    overflow:hidden;

}

.footer-submit-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.25),

            transparent

        );

    transition:1s;

}

.footer-submit-btn:hover::before{

    left:140%;

}

/* ==========================================
   SMALL DEVICES
========================================== */

@media (max-width:768px){

.footer-field input,
.footer-phone-group input{

    font-size:.9rem;

}

.footer-submit-btn{

    height:54px;

}

.footer-field textarea{

    min-height:110px;

}

}

@media (max-width:480px){

.footer-form-body{

    padding:20px;

}

.footer-country-code{

    padding:0 12px;

    font-size:.85rem;

}

.footer-field input{

    padding-left:44px;

}

.footer-field textarea{

    padding-left:44px;

}

}

/* ======================================================
   PART 4
   RESPONSIVE FOOTER
====================================================== */


/* ======================================================
   LARGE LAPTOPS
   (1200px and below)
====================================================== */

@media (max-width:1200px){

    .site-footer{
    
        padding:70px 0 0;
    
    }
    
    .footer-container{
    
        max-width:1000px;
    
        grid-template-columns:
    
            360px
            300px
            1fr;
    
        gap:35px;
    
    }
    
    .footer-map-card iframe{
    
        height:360px;
    
    }
    
    .footer-logo img{
    
        width:180px;
    
    }
    
    }
    
    
    /* ======================================================
       TABLETS
       (992px and below)
    ====================================================== */
    
    @media (max-width:992px){
    
    .footer-container{
    
        grid-template-columns:
    
            1fr
            1fr;
    
        gap:40px;
    
    }
    
    .footer-form-column{
    
        grid-column:1;
    
    }
    
    .footer-contact-column{
    
        grid-column:2;
    
    }
    
    .footer-map-column{
    
        grid-column:1 / -1;
    
        justify-content:center;
    
    }
    
    .footer-map-card{
    
        width:100%;
    
        max-width:760px;
    
    }
    
    .footer-map-card iframe{
    
        height:400px;
    
    }
    
    .footer-bottom-inner{
    
        gap:15px;
    
    }
    
    }
    
    
    /* ======================================================
       TABLET PORTRAIT
    ====================================================== */
    
    @media (max-width:768px){
    
    .site-footer{
    
        padding:60px 0 0;
    
    }
    
    .footer-container{
    
        grid-template-columns:1fr;
    
        gap:35px;
    
        padding:0 24px;
    
    }
    
    .footer-form-column,
    .footer-contact-column,
    .footer-map-column{
    
        width:100%;
    
    }
    
    .footer-form-card{
    
        max-width:430px;
    
        margin:auto;
    
    }
    
    .footer-contact-column{
    
        max-width:430px;
    
        margin:auto;
    
    }
    
    .footer-map-card{
    
        max-width:430px;
    
        margin:auto;
    
    }
    
    .footer-map-card iframe{
    
        height:300px;
    
    }
    
    .footer-logo{
    
        margin-bottom:28px;
    
    }
    
    .footer-contact-box{
    
        margin-bottom:25px;
    
    }
    
    .footer-bottom{
    
        margin-top:60px;
    
    }
    
    .footer-bottom-inner{
    
        flex-direction:column;
    
        justify-content:center;
    
        align-items:center;
    
        text-align:center;
    
        gap:18px;
    
    }
    
    .footer-links{
    
        justify-content:center;
    
        flex-wrap:wrap;
    
    }
    
    }
    
    
    /* ======================================================
       MOBILE
    ====================================================== */
    
    @media (max-width:576px){
    
    .footer-container{
    
        padding:0 18px;
    
    }
    
    .footer-form-card{
    
        padding:16px;
    
    }
    
    .footer-contact-column{
    
        padding:30px 22px;
    
    }
    
    .footer-contact-box{
    
        gap:14px;
    
    }
    
    .footer-contact-icon{
    
        width:44px;
    
        height:44px;
    
        font-size:18px;
    
    }
    
    .footer-contact-content h4{
    
        font-size:0.95rem;
    
    }
    
    .footer-contact-content p{
    
        font-size:0.88rem;
    
        line-height:1.6;
    
    }
    
    .footer-contact-content a{
    
        font-size:0.88rem;
    
    }
    
    .footer-map-card{
    
        padding:12px;
    
    }
    
    .footer-map-card iframe{
    
        height:260px;
    
    }
    
    .footer-map-btn{
    
        top:22px;
    
        left:22px;
    
        padding:8px 14px;
    
        font-size:.8rem;
    
    }
    
    .footer-bottom{
    
        margin-top:50px;
    
    }
    
    .footer-bottom-inner{
    
        padding:22px 18px;
    
    }
    
    .footer-links{
    
        gap:18px;
    
    }
    
    }
    
    
    /* ======================================================
       SMALL MOBILE
    ====================================================== */
    
    @media (max-width:420px){
    
    .site-footer{
    
        padding:50px 0 0;
    
    }
    
    .footer-container{
    
        padding:0 14px;
    
    }
    
    .footer-form-card{
    
        border-radius:22px;
    
        padding:14px;
    
    }
    
    .footer-form-glass{
    
        border-radius:18px;
    
    }
    
    .footer-form-body{
    
        border-radius:14px;
    
    }
    
    .footer-contact-column{
    
        border-radius:22px;
    
        padding:26px 18px;
    
    }
    
    .footer-map-card{
    
        border-radius:22px;
    
    }
    
    .footer-map-card iframe{
    
        border-radius:14px;
    
        height:220px;
    
    }
    
    .footer-logo img{
    
        width:160px;
    
    }
    
    .footer-contact-box{
    
        gap:12px;
    
    }
    
    .footer-contact-icon{
    
        width:40px;
    
        height:40px;
    
        font-size:17px;
    
    }
    
    .footer-bottom{
    
        margin-top:40px;
    
    }
    
    .footer-bottom p{
    
        font-size:.82rem;
    
    }
    
    .footer-links{
    
        flex-direction:column;
    
        gap:10px;
    
    }
    
    .footer-links a{
    
        font-size:.82rem;
    
    }
    
    }
    
    
    /* ======================================================
       EXTRA SMALL DEVICES
    ====================================================== */
    
    @media (max-width:360px){
    
    .footer-container{
    
        padding:0 10px;
    
    }
    
    .footer-form-card{
    
        padding:12px;
    
    }
    
    .footer-contact-column{
    
        padding:22px 15px;
    
    }
    
    .footer-map-card{
    
        padding:10px;
    
    }
    
    .footer-map-card iframe{
    
        height:200px;
    
    }
    
    }
 
   /* ===== Lead Modal Styles ===== */
  #customLeadModal .modal-dialog{
    max-width: 700px;
  }
 
  #customLeadModal .modal-content{
    border-radius: 18px !important;
    overflow: hidden;
    border: none;
    max-height: 88vh;
  }
 
  #customLeadModal .modal-body{
    max-height: 88vh;
    overflow-y: auto;
  }
 
  #customLeadModal .modal-form-col{
    background: linear-gradient(135deg, #2B5876 0%, #4E4376 100%);
    color: #fff;
  }
 
  #customLeadModal h2{
    font-size: 22px;
    font-weight: 700;
  }
 
  #customLeadModal .subtitle{
    font-size: 12.5px;
    opacity: 0.85;
  }
 
  #customLeadModal .form-control,
  #customLeadModal .form-select{
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    height: 40px;
    border-radius: 8px;
    font-size: 13px;
    box-shadow: none;
    padding: 6px 12px;
  }
 
  #customLeadModal .form-control::placeholder{
    color: rgba(255,255,255,0.75);
  }
 
  #customLeadModal .form-control:focus,
  #customLeadModal .form-select:focus{
    background-color: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
    box-shadow: none;
  }
 
  /* select option text needs to be dark since dropdown list bg is white in most browsers */
  #customLeadModal .form-select option{
    color: #333;
  }
 
  #customLeadModal .form-select{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  }
 
  #customLeadModal .location-heading{
    font-size: 13.5px;
    font-weight: 600;
  }
 
  #customLeadModal .location-btn{
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.5);
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 0;
    transition: all .15s ease;
  }
 
  #customLeadModal .location-btn:hover{
    background: rgba(255,255,255,0.1);
  }
 
  #customLeadModal .location-btn.active{
    background: #fff;
    color: #2B5876;
    border-color: #fff;
  }
 
  #customLeadModal .submit-btn{
    background: rgba(255,255,255,0.9);
    color: #2B5876;
    border: none;
    border-radius: 8px;
    height: 42px;
    font-weight: 700;
    font-size: 14px;
    width: 100%;
  }
 
  #customLeadModal .submit-btn:disabled{
    opacity: 0.6;
    cursor: not-allowed;
  }
 
  #customLeadModal .privacy-note{
    font-size: 11.5px;
    opacity: 0.85;
  }
 
  #customLeadModal .btn-close-custom{
    background-color: #fff;
    border-radius: 50%;
    padding: 8px;
    z-index: 5;
  }
 
  #customLeadModal .iti{ width: 100%; }
  #customLeadModal .iti input.form-control{
  padding-left: 52px;
}



.iti__country-list{
  width: 280px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 2000;
  color:black !important;
}



.iti__country iti__preferred{
    font-size:14px !important;
    
}