
:root{
  --blue: #3E4095;
  --red: #ED3237;
  --bg:#964141;
  --white:#ffffff;
  --dark:#222;
  --radius:12px;
  --shadow:0 8px 24px rgba(17,24,39,0.06);
}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--dark);-webkit-font-smoothing:antialiased}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
.containers{max-width:1200px;margin:0 auto;padding:0 20px}
.containerc{max-width:1200px;margin:0 auto;padding:0 20px}
.containera{max-width:1200px;margin:0 auto;padding:0 20px}

/* HEADER */
.header{
  position:sticky;
  top:0;
  background:var(--white);
  z-index:999;
  border-bottom:1px solid #eee;
  box-shadow:0 2px 8px rgba(0,0,0,0.03);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}
.logo img{
  height:56px;
  width:auto;
}

/* NAV */
.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  padding:8px 10px;
  border-radius:8px;
  font-weight:600;
  color:#3E4095;
  text-decoration:none;
}
.nav a:hover{
  background:rgba(11,99,213,0.08);
  color:var(--blue);
}
.nav a.active{
  background:var(--red);
  color:#fff !important;
}

/* QUOTE BUTTON */
.get-quote{
  background:var(--red);
  color:#fff !important;
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
  box-shadow:0 6px 16px rgba(237,50,55,0.4);
}

/* MOBILE NAV */
.mobile-toggle{
  display:none;
  background:none;
  border:none;
  font-size:24px;
}

@media(max-width:900px){
  .nav{
    display:none;
    flex-direction:column;
    background:#ffffff;
    padding:20px;
    position:absolute;
    top:70px;
    right:0;
    width:70%;
    box-shadow:var(--shadow);
    border-radius:12px;
  }
  .nav.open{display:flex;}
  .mobile-toggle{display:block;}
}

/* Hero */
.hero {
    position: relative;
    background-image: url("assets/images/1.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    
    color: #ffffff;
    display: flex;
    align-items: center;
}

   .container h3 {
      font-size: 28px;
      color: #ffffff;
      margin-bottom: 20px;
    }
.container h4 {
      font-size: 28px;
      color: #ffffff;
      margin-bottom: 20px;
    }
.container h6 {
      font-size: 28px;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .container p {
      font-size: 16px;
      color: #ffffff;
      line-height: 1.8;
    }

    /* container services */
   .containers h2 {
      font-size: 28px;
      color: #ffffff;
      margin-bottom: 20px;
    }
.containers h4 {
      font-size: 28px;
      color: #ffffff;
      margin-bottom: 20px;
    }
.containers p {
      font-size: 18px;
      color: #f00000;
      margin-bottom: 20px;
    }

    

/* container contact */
   .containerc h3 {
      font-size: 28px;
      color: #ED3237;
      margin-bottom: 20px;
    }
.containerc h4 {
      font-size: 28px;
      color: #ffffff;
      margin-bottom: 20px;
    }
.containerc h6 {
      font-size: 28px;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .containerc p {
      font-size: 16px;
      color: #3E4095;
      line-height: 1.8;
    }

    /* container about */
   .containera h3 {
      font-size: 28px;
      color: #ED3237;
      margin-bottom: 20px;
    }
.containera h2 {
      font-size: 28px;
      color: #ffffff;
      margin-bottom: 20px;
    }
.containera strong {
      font-size: 28px;
      color: #3E4095;
      margin-bottom: 20px;
    }

    .containera p {
      font-size: 16px;
      color: #ffffff;
      line-height: 1.8;
    }

    /* values */
.values p {
      font-size: 16px;
      color: #3E4095;
      margin-bottom: 20px;
    }
    
    /* offices */
.offices strong {
      font-size: 16px;
      color: #3E4095;
      margin-bottom: 20px;
    }

/* services layout */
.section{padding:60px 0}
.grid{display:grid;grid-template-columns:300px 1fr;gap:24px}
.service-list{background:#ffffff;padding:16px;border-radius:12px;box-shadow:var(--shadow)}
.service-list li{list-style:none;padding:12px;border-radius:10px;margin-bottom:8px;cursor:pointer;font-weight:700}
.service-list li:hover{background:rgba(11,99,213,0.06)}
.service-list li.active{background:#ED3237}
.service-detail{background:#ffffff;padding:20px;border-radius:12px;box-shadow:var(--shadow);min-height:240px;transition:transform 300ms ease,opacity 300ms ease}
.service-detail.animate{transform:translateY(0);opacity:1}

/* partners */
.partners{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:18px;margin-top:16px}
.partner{background:#fff;padding:16px;border-radius:12px;text-align:center;box-shadow:var(--shadow);transition:transform 300ms ease}
.partner img{width:90px;height:auto;margin-bottom:8px}
.partner:hover{transform:translateY(-6px)}

/* contact */
.contact-grid{display:grid;grid-template-columns:1fr 360px;gap:24px}
.contact-form{background:#fff;padding:10px;border-radius:12px;box-shadow:var(--shadow)}
.contact-form input,.contact-form textarea{width:100%;padding:12px;border-radius:8px;border:1px solid #e6e9ef;margin-bottom:12px}
.btn{background:var(--blue);color:#fff;padding:12px 16px;border:none;border-radius:10px;font-weight:700;cursor:pointer}
.map{background:#ffffff;padding:12px;border-radius:12px;box-shadow:var(--shadow);text-align:center}

/* footer */
.footer{background: #3E4095;color:var(--white);padding:40px 0;margin-top:40px}
.footer .cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:18px}
.footer a{color:var(--white);opacity:0.95; text-decoration: none }
.footer small{color:rgba(255,255,255,0.9); text-decoration: none;}
.copyright{margin-top:18px;text-align:center;color:var(--white);opacity:0.9}
.hr{color: #ED3237}

footer .logo img {
    height: 60px;
    width: auto;
}

@media (max-width:768px) {
    header .logo img {
        height: 48px;
    }
}

@media (max-width:480px) {
    header .logo img {
        height: 38px;
    }
}

/* animations */
@keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
.fade-in{animation:fadeUp 600ms ease both}

/* responsive */
@media(max-width:900px){
  .grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .nav{display:none}
  .mobile-toggle{display:block}
  .hero{height:50vh}
}

/* CLAIMS HERO */
.claims-hero {
  background: url("assets/images/1.jpg") center/cover no-repeat;
  height: 45vh;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}

.claims-hero .overlay {
  width: 100%;
  height: 100%;
  background: rgba(11,99,213,0.6);
  display: flex;
  align-items: center;
}

.claims-hero h1 {
  font-size: 48px;
  margin: 0;
  animation: fadeUp 800ms ease both;
}

.claims-hero p {
  font-size: 18px;
  max-width: 600px;
  opacity: 0.9;
  animation: fadeUp 1000ms ease both;
}

/* CLAIM GRID */
.claims-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 25px;
}

.claim-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--blue);
  transition: transform .3s ease;
}

.claim-card:hover {
  transform: translateY(-6px);
}

.claim-card h3 {
  color: var(--blue);
  margin-bottom: 8px;
}

.claim-list {
  margin: 12px 0 18px 18px;
  list-style: disc;
}

.claim-btn {
  background: var(--red);
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: bold;
}

.claim-btn:hover {
  opacity: .85;
}

nav a.active {
  color: #ff6600;
  font-weight: bold;
}
.contactbtn a{
text-decoration: none;
 display: flex;
  
}

/* about HERO */
.about-hero {
  background: url("assets/images/1.gif") center/cover no-repeat;
  height: 80vh;
  display: flex;
 
  color: #fff;
  position: relative;
}

.about-hero .overlay {
  width: 100%;
  height: 100%;
  background: rgba(11,99,213,0.6);
  display: flex;
  
}

.about-hero h1 {
  font-size: 48px;
  margin: 12px;
  animation: fadeUp 800ms ease both;
}

.about-hero p {
  font-size: 18px;
  
  opacity: 0.9;
  animation: fadeUp 1000ms ease both;
}



/* servises HERO */
.service-hero {
  background: url("assets/images/1.gif") center/cover no-repeat;
  height: 30vh;
  display: flex;
 
  color: #fff;
  position: relative;
}

.service-hero .overlay {
  width: 100%;
  height: 100%;
  background: rgba(11,99,213,0.6);
  display: flex;
  
}

.service-hero h1 {
  font-size: 48px;
  margin: 12px;
  animation: fadeUp 800ms ease both;
}

.service-hero p {
  font-size: 18px;
  
  opacity: 0.9;
  animation: fadeUp 1000ms ease both;
}



 /* PULPING BUTTON */

.floating-chat-btn {
  position: fixed;      /* stays same position on every page */
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #3E4095;
  color: #0b0edf;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  z-index: 9999;        /* always on top */
  transition: transform .2s, box-shadow .2s;
  animation: pulse 1.6s infinite ease-out;
}

/* Hover effect */
.floating-chat-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 18px 18px rgba(237, 50, 55, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(237, 50, 55, 0);
  }
}


