

.top-bar {
  width: 100%;
  height: 42px; /* adjust height */
  display: flex;
  position: relative;
  overflow: hidden;
}

/* LEFT BLACK AREA */
.left-section {
  background-color: #050562;
  flex: 1;
  position: relative;
}

/* ANGLED CUT SHAPE */
.left-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -90px; /* adjust angle width */
  width: 100px;
  height: 100%;
  background: #fa0303;
  transform: skewX(-25deg);
}

/* RIGHT YELLOW GRADIENT */
.right-section {
 /* background: linear-gradient(90deg, #009475 0%, #073B6F 100%); */
  background: #fa0303;
  width: 250px; /* adjust width of yellow area */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding-right: 20px;
}

/* Flag Style */
.flag {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}



/* Make logo responsive */
.cs-logi-header-logo img {
  width: auto;            /* No stretching */
  height: 60px;           /* Control logo height only */
  max-height: 60px;
  object-fit: contain;    /* KEEP PROPORTION */
  display: block;
}


/* Adjust size on tablet */
@media (max-width: 992px) {
  .cs-logi-header-logo img {
    width: 150px;
  }
}

/* Adjust size on mobile */
@media (max-width: 600px) {
  .cs-logi-header-logo img {
    width: 130px;
  }
}



/* Header background color */
/* GLOBAL FONT – Times New Roman */
.cs-logi-header-middle,
.cs_nav_list li a,
body {
  font-family: "Times New Roman", serif;
}

/* Header background (HD clean white) */
.cs-logi-header-middle {
  background-color: #ffffff;
  /* Optional soft shadow to look premium */

  
  padding: 10px 0;   /* reduced padding (was too big) */
}

/* UL list styling */
.cs_nav_list {
  display: flex;
  align-items: center;
  gap: 32px; /* reduced from 45px */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Menu links */
.cs_nav_list li a {
  font-size: 20px;
  font-weight: 600;
  color: #06245F;
  text-decoration: none;
  transition: color 0.25s ease;
}

/* Hover color */
.cs_nav_list li a:hover {
  color: #ff3b2e;
}

/* Active menu */
.cs_nav_list li a.active,
.cs_nav_list li a span.active {
  color: #ff3b2e !important;
}

/* Remove dropdown toggle arrow */
.cs_munu_dropdown_toggle {
  display: none;
}


.cs_nav_list li {
  margin: 0 !important;
  padding: 0 !important;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 200;
}


.cs_nav_list li a {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;   /* same thickness as screenshot */
  color: #000;        /* black text */
}


.cs_nav_list li a.active {
  color: #f2c410 !important; /* yellow highlight */
}



/* ==========================Tracking============================== */

.cs-header-additional-item a {
  display: inline-block;
  background-color: #032e65;   /* Yellow */
  color: #f8f5f5;                 /* Black text */
  font-size: 18px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

/* + icon color */
.cs-header-additional-item a .cs_accent_color {
  color: #fffdfd !important; /* Make + black to match design */
  font-weight: 700;
  margin-right: 5px;
}

/* Hover Effect */
.cs-header-additional-item a:hover {
  background-color: #068984;  /* darker yellow */
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}


.cs-social-common {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 2px;           /* distance between phone & email */
}

.cs-social-common p {
  margin: 0;
  padding: 0;
  color: #ffffff;      /* white text */
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;            /* space between icon & text */
}

.cs-social-common p i {
  color: #ffffff;      /* white icon */
  font-size: 18px;
}


/* Desktop (Default) */
.cs-social-common {
  display: flex;
  align-items: center;
  gap: 25px;
  white-space: nowrap;   /* Prevent breaking */
}

.cs-social-common p {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cs-social-common p i {
  color: #ffffff;
  font-size: 18px;
}




/* ============================= */
/* 📱 Tablet (max-width 991px)   */
/* ============================= */
@media (max-width: 991px) {
  .cs-social-common {
    gap: 12px;                /* Reduce spacing */
  }

  .cs-social-common p {
    font-size: 15px;
  }

  .cs-social-common p i {
    font-size: 16px;
  }
}



/* ================================== */
/* 📱 Mobile (max-width 768px)        */
/* ================================== */
@media (max-width: 768px) {
  .cs-social-common {
    flex-direction: column;   /* Stack vertically */
    align-items: flex-start;  /* Align left */
    gap: 8px;
    white-space: normal;      /* Allow line wrap on mobile */
  }

  .cs-social-common p {
    font-size: 12px;
  }
}



.cs-logi-header-logo {
  position: relative;
  z-index: 10;
}

.cs-logi-header-logo img {
  height: 100px;          /* real image size */
  width: auto;
  padding-top: 5px;
  padding-right: 20%;
  padding-bottom: 3px;


  /* 🔥 FORCE BIG LOGO */
  transform: scale(1.6);
  transform-origin: left center;

  /* 🚫 theme restriction remove */
  max-height: none !important;
}


.cs-header-additional-item a .cs_accent_color {
  color: #ffffff !important;
}

.cs-header-additional-item a {
  color: #ffffff !important;   /* pure white */
}




@media (max-width: 991px) {
  .cs_side_header {
    width: 100%;
  }

  .cs_side_header_in {
    padding: 20px;
  }

  .cs-sidebar-about-brand img {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .cs-sidebar-middle-area p {
    font-size: 14px;
  }

  .cs-sidebar-emai-phone a {
    font-size: 14px;
  }

  .cs-logi-newsletter {
    flex-direction: column;
  }

  .cs-newsletter-btn {
    width: 100%;
  }
}



/* ==============================slider =========================== */


.cs-hero-slide-content {
  position: relative;
  z-index: 2;
}

.cs-hero-caption {
  margin-bottom: 20px;
  color: #fff;
}

.cs-hero-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.cs-hero-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffb007;
  margin-bottom: 10px;
}

.cs-hero-desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
}


.cs-hero-slide-content {
  position: absolute;          /* 🔥 key fix */
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;                 /* image se upar */
  max-width: 650px;
  color: #fff;
}



/* ===================================chanal parter ================================= */


.partner-card {
    width: 150px !important;
    height: 150px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 5px;
}



element.style {
}
.partner-card {
    width: 150px !important;
    height: 150px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 5px;
}


.partner-card {
  background: #fff;
  border-radius: 12px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.partner-card img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Prevent vertical stacking */
.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

/* 
==========================footer================================ */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 48, 82, 0.9);
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
}

.site-footer {
  background-image:
    url("../img/map/map-over-img.png"),
    url("../img/map/map-htspot-img.png");

  background-size: contain, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;

  color: #fff;
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
}



.site-footer {
  background: linear-gradient(135deg, #083b66, #0a4f85);
  color: #fff;
  padding: 60px 0;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #dbe9f5;
}

.footer-about h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.newsletter {
  display: flex;
  gap: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  color: #fff;
  outline: none;
}

.newsletter input::placeholder {
  color: #cddcec;
}

.newsletter button {
  background: #ff6a00;
  border: none;
  padding: 10px 18px;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  width: 25px;
  height: 3px;
  background: #ff6a00;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #dbe9f5;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #ff6a00;
}

.footer-contact .contact-item {
  display: flex;
  gap: 6px;
  margin-bottom: 1px;
  font-size: 14px;
}

.footer-contact span {
  font-size: 20px;
  color: #ff6a00;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}



.cs-counter-section {
  padding: 80px 0;
  background: #f5f8fc;
}

.cs-counter-card {
  height: 100%;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.cs-counter-card:hover {
  transform: translateY(-8px);
}

.cs-counter-item .cs-count-text {
  margin-bottom: 15px;
}

.cs-counter-item p {
  font-size: 15px;
  opacity: 0.95;
}

/* 🎨 Different background colors */
.bg-1 {
  background: linear-gradient(135deg, #ff6a00, #ff9500);
}

.bg-2 {
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
}

.bg-3 {
  background: linear-gradient(135deg, #43a047, #66bb6a);
}

.bg-4 {
  background: linear-gradient(135deg, #8e24aa, #ba68c8);
}

/* Responsive spacing */
@media (max-width: 767px) {
  .cs-counter-card {
    margin-bottom: 30px;
  }
}


.site-footer h3 {
  color: #ffffff !important;
}


.footer-logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 10px;
}


.country-code {
  margin-right: 6px;
}



