/* Google Font Alternative (System font for performance) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}





/*TOP-BAR*/
.topbar {
  width: 100%;
  background: #0c6c88;
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
}

.topbar-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left span {
  font-weight: 600;
}

.topbar-right a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.topbar-right a:hover {
  text-decoration: underline;
}

/* Mobile Responsive (Hide Address) */



@media (max-width: 600px) {
  .topbar-container {
    justify-content: center;
    text-align: center;
  }

  .topbar-left {
    display: none; /* Hide Address */
  }
}


























/* Navbar Main */
.navbar {
  width: 100%;
  background: white;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;

}


/* Container */
.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.logo {
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img{
  width:200px;
  height:45px;
  object-fit:contain;
}

.logo span {
  color: #0c6c88;
}

/* Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

/* Links */
.nav-menu li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #0c6c88;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: white;
  border-radius: 10px;
  width: 200px;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}

/* Dropdown Links */
.dropdown-menu li a {
  display: block;
  padding: 12px 15px;
  font-size: 14px;
  color: #111;
}

.dropdown-menu li a:hover {
  background: #f3f7ff;
  color: #0c6c88;
}

/* Dropdown Show */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* Hide Checkbox */
#menu-toggle {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  
  .nav-menu {
    position: absolute;
    top: 65px;
    right: 0;
    background: white;
    width: 250px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-radius: 12px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 14px 15px;
    border-bottom: 1px solid #f2f2f2;
  }

  /* Show Menu when Checkbox Checked */
  #menu-toggle:checked ~ .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }

  /* Dropdown for Mobile */
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}







/* Hero Section */
.hero {
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url(ast/cover.jpeg);
  padding: 60px 0;



  background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

      /* Optional overlay */
      position: relative;

      display:flex;
      align-items:center;
      justify-content:center;
}

/* Container */
.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Content */
.hero-content {
  flex: 1;
  color: #0c6c88;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  max-width: 520px;
}
.hero-content span{
color: #000;
}
.hero-content p {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 500px;
  color: rgba(3, 46, 59, 0.85);
}

/* Buttons */
.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

/* Primary Button */
.btn.primary {
  background: #0c6c88;
  color: #fff;
}

.btn.primary:hover {
  background:rgba(3, 46, 59, 0.85);}

/* Secondary Button */
.btn.secondary {
  border: 2px solid #0c6c88;
  color: rgba(3, 46, 59, 0.85);
}

.btn.secondary:hover {
  background: #fff;
  color: #0c6c88;
}

/* Right Image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 34px;
    max-width: 100%;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    max-width: 320px;
  }
}

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}


/*CLIENT-LOGO*/
.clients {
  width: 100%;
  padding: 60px 0;
  background: #ffffff;
}

.client-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.client-heading {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 30px;
  color: #111;
}

/* Logo Row */
.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

/* Logo Image */
.client-logos img {
  width: 130px;
  height: auto;
  opacity: 0.75;
  transition: 0.3s ease;
  filter: grayscale(100%);
}

.client-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .client-heading {
    font-size: 22px;
  }

  .client-logos img {
    width: 100px;
  }
}





/* Service Section -------------------------------------------------------*/
/* Service Box Section */
.service-box-section {
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
}

.service-box-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.service-box-heading {
  text-align: center;
  margin-bottom: 45px;
}

.service-box-heading h2 {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}

.service-box-heading p {
  font-size: 15px;
  color: #555;
  max-width: 650px;
  margin: auto;
}

/* Content Layout */
.service-box-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Cards */
.service-box-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-box-card {
  background: #f7fbff;
  border: 1px solid #e6f0ff;
  padding: 22px;
  border-radius: 5px;
  text-decoration: none;
  color: #111;
  transition: 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;

   box-shadow: 0px 8px 18px rgba(0, 12, 30, 0.08);
}

/* Icon */
.service-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: #0c6c88;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: 0.3s ease;
}

/* Text */
.service-box-card h3 {
  font-size: 16px;
  font-weight: 800;
}

/* Hover Effects */
.service-box-card:hover {
  background: #0c6c88;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0px 12px 25px rgba(0, 119, 255, 0.25);
}

.service-box-card:hover .service-icon {
  background: white;
  color: #0c6c88;
}

/* Right Side Image */
.service-box-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.service-box-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 950px) {
  .service-box-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .service-box-cards {
    grid-template-columns: 1fr;
  }

  .service-box-image img {
    max-width: 100%;
  }

  .service-box-heading h2 {
    font-size: 26px;
  }
}


/*ABOUT-SECTION*/
.about-modern {
  width: 100%;
  padding: 80px 0;
  background: #f8fbff;
  overflow: hidden;
}

.about-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Image */
.about-image {
  flex: 1;
  animation: slideLeft 1s ease;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 50%;
  object-fit: cover;
}

/* Content */
.about-content {
  flex: 1;
  animation: slideRight 1s ease;
}

.about-content h2 {
  font-size: 34px;
  font-weight: 900;
  color: #111;
  margin-bottom: 12px;
}

.about-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Points */
.about-points {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.about-box {
  flex: 1;
  min-width: 140px;
  padding: 16px;
  border-radius: 14px;
  background: white;
  border: 1px solid #e8f0ff;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.10);
}

.about-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 15px 35px rgba(0, 119, 255, 0.25);
}

.about-box h3 {
  font-size: 22px;
  font-weight: 900;
  color: #0c6c88;
}

.about-box span {
  font-size: 13px;
  font-weight: 700;
  color: #555;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #0c6c88;
  color: white;
  font-weight: 800;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #0c6c88;
  transform: translateY(-3px);
}

/* Animations (Lightweight) */
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-points {
    justify-content: center;
  }
}


/*WHY CHOOSE US SECTION*/
.whychoose-modern {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
}

.whychoose-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* Left Side */
.whychoose-left {
  flex: 1;
}

.why-tag {
  font-size: 13px;
  font-weight: 800;
  color: #0077ff;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

.whychoose-left h2 {
  font-size: 38px;
  font-weight: 900;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.2;
}

.whychoose-left h2 span {
  color: #0c6c88;
}

.whychoose-left p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 25px;
}

/* Button */
.why-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #0c6c88;
  color: white;
  font-weight: 800;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.why-btn:hover {
  background: #0c6c88;
  transform: translateY(-3px);
}

/* Divider */
.why-divider {
  width: 2px;
  background: #e6f0ff;
  height: 230px;
  margin-top: 10px;
}

/* Right Side */
.whychoose-right {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Cards */
.why-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #eef5ff;
  background: #f8fbff;
  transition: 0.3s ease;
  cursor: pointer;
}

.why-card:hover {
  background: #0c6c88;
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(0, 119, 255, 0.25);
}

.why-card:hover h3,
.why-card:hover p {
  color: white;
}

.why-card:hover .why-icon {
  background: white;
  color: #0077ff;
}

/* Icon */
.why-icon {
  width: 50px;
  height: 50px;
  background: #0c6c88;
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s ease;
}

/* Text */
.why-text h3 {
  font-size: 16px;
  font-weight: 900;
  color: #111;
  margin-bottom: 6px;
}

.why-text p {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .whychoose-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .why-divider {
    display: none;
  }

  .whychoose-left p {
    max-width: 100%;
  }

  .whychoose-right {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .why-card {
   /* justify-content: center; */
    text-align: left;
  }
}

@media (max-width: 500px) {
  .whychoose-left h2 {
    font-size: 28px;
  }
}


/*INDUSTRY/SECTOR-SERVED*/
.industries {
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(135deg, #0c6c88, #192d44, #194c58);
  color: white;
}

.industries-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.industries-heading {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 10px;
}

.industries-subheading {
  font-size: 15px;
  max-width: 650px;
  margin: auto;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 45px;
  line-height: 1.6;
}

/* Grid Layout */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* Card */
.industry-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px 15px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
  cursor: pointer;
}

.industry-card i {
  font-size: 28px;
  margin-bottom: 12px;
  color: white;
}

.industry-card h3 {
  font-size: 15px;
  font-weight: 800;
}

/* Hover Effect */
.industry-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 1000px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 650px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-heading {
    font-size: 26px;
  }
}






/*---CITIES-WE-AVAILABLE--*/

.service-area {
  width: 100%;
  padding: 80px 0;
  background: #f8fbff;
  overflow: hidden;
}

.service-area-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.service-area-heading {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}

.service-area-subheading {
  font-size: 15px;
  color: #555;
  max-width: 650px;
  margin: auto;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Slider Wrapper */
.slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Track */
.slider-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollSlider 25s linear infinite;
}

/* City Card */
.city-card {
  width: 150px;
  min-width: 150px;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
  cursor: pointer;
}

.city-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.city-card h3 {
  padding: 12px;
  font-size: 15px;
  font-weight: 900;
  color: #0c6c88;
  letter-spacing: 1px;
}

/* Hover Effect */
.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 16px 35px rgba(0, 119, 255, 0.25);
}

/* Animation */
@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .city-card {
    width: 160px;
    min-width: 160px;
  }

  .city-card img {
    height: 100px;
  }

  .service-area-heading {
    font-size: 26px;
  }
}




/*TESTIMONIAL-------------------------------------*/
.testimonials {
  width: 100%;
  padding: 80px 0;
  background: #ffffff;
}

.test-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.test-heading {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}

.test-subheading {
  font-size: 15px;
  color: #555;
  max-width: 650px;
  margin: auto;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Wrapper */
.testimonial-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slider */
.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

/* Card */
.testimonial-card {
  min-width: 320px;
  max-width: 320px;
  background: #f8fbff;
  border: 1px solid #e6f0ff;
  border-radius: 18px;
  padding: 25px;
  text-align: left;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 16px 40px rgba(0, 119, 255, 0.25);
}

/* Stars */
.stars {
  color: #ffb400;
  font-size: 15px;
  margin-bottom: 12px;
}

/* Review */
.review {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Client Name */
.client-name {
  font-size: 16px;
  font-weight: 900;
  color: #111;
}

.client-sector {
  font-size: 13px;
  font-weight: 700;
  color: #0c6c88;
}

/* Buttons */
.test-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #0c6c88;
  color: white;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  position: absolute;
  z-index: 10;
}

.test-btn:hover {
  background: #0c6c88;
  transform: scale(1.05);
}

.test-btn.left {
  left: -15px;
}

.test-btn.right {
  right: -15px;
}

/* Responsive */
@media (max-width: 768px) {
  .test-btn {
    display: none;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
  }

  .test-heading {
    font-size: 26px;
  }
}

/*FAQs-SECTIONS--------------------------------------------*/
.faq-section {
  width: 100%;
  padding: 80px 0;
  background: #f8fbff;
}

.faq-container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.faq-heading {
  text-align: center;
  margin-bottom: 45px;
}

.faq-heading h2 {
  font-size: 32px;
  font-weight: 900;
  color: #111;
  margin-bottom: 10px;
}

.faq-heading p {
  font-size: 15px;
  color: #555;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border: 1px solid #e6f0ff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.10);
  transition: 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0px 14px 30px rgba(0, 119, 255, 0.18);
}

/* Question Button */
.faq-question {
  width: 100%;
  padding: 18px 18px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

/* Icon */
.faq-icon {
  font-size: 14px;
  color: #0c6c88;
  transition: 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding-bottom: 18px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Active FAQ */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 10px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 600px) {
  .faq-heading h2 {
    font-size: 26px;
  }

  .faq-question {
    font-size: 14px;
  }
}



/*GET-STARTED SECTION*/
.cta-section {
  width: 100%;
  padding: 90px 0;
  background: linear-gradient(135deg, #0c6c88, #192d44, #194c58);
  text-align: center;
}

.cta-container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.cta-container h2 {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
}

.cta-container p {
  font-size: 16px;
  color: #555;
  max-width: 750px;
  margin: auto;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: #0c6c88;
  color: white;
  text-decoration: none;
  font-weight: 800;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.3s ease;
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  background: #0c6c88;
  transform: translateY(-4px);
  box-shadow: 0px 18px 35px rgba(0, 119, 255, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 28px;
  }

  .cta-container p {
    font-size: 14px;
  }
}


/*CONTACT US -------------------------------------------------------------*/


.contact-section{
  max-width:1200px;
  margin:auto;
  background:#fff;
  display:flex;
  justify-content:space-between;
  gap:60px;
  padding:50px;
  border-radius:10px;
}

/* LEFT SIDE */
.contact-left{
  flex:1;
}

.contact-left h1{
  font-size:60px;
  font-weight:300;
  color:#111;
  margin-bottom:40px;
}

.contact-info{
  margin-bottom:25px;
}

.contact-info span,
.social-area span{
  display:block;
  font-size:14px;
  color:#555;
  margin-bottom:8px;
}

.contact-info p{
  color:#222;
  line-height:1.7;
  font-size:16px;
}

.social-area{
  margin-top:35px;
}

.social-icons{
  display:flex;
  gap:12px;
  margin-top:15px;
}

.social-icons a{
  width:36px;
  height:36px;
  background:#0c6c88;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:0.3s;
}

.social-icons a:hover{
  background:#333;
  transform:translateY(-3px);
}

/* RIGHT SIDE */
.contact-right{
  flex:1;
}

.input-row{
  display:flex;
  gap:20px;
}

.input-group{
  width:100%;
  margin-bottom:22px;
}

.input-group label{
  display:block;
  margin-bottom:10px;
  font-size:14px;
  color:#222;
}

.input-group input,
.input-group textarea{
  width:100%;
  border:none;
  background:#f3f3f3;
  padding:15px 18px;
  border-radius:10px;
  outline:none;
  font-size:15px;
}

.input-group textarea{
  height:180px;
  resize:none;
}

.send-btn{
  width:100%;
  background:#0c6c88;
  color:#fff;
  border:none;
  padding:17px;
  border-radius:10px;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.send-btn:hover{
  background:#222;
}

/* RESPONSIVE */
@media(max-width:900px){

  .contact-section{
    flex-direction:column;
    padding:35px;
    text-align: center;
  }

  .contact-left h1{
    font-size:45px;
  }
}

@media(max-width:600px){

  .contact-section{
    padding:20px;
    gap:30px;
  }

  .input-row{
    flex-direction:column;
    gap:0;
  }

  .contact-left h1{
    font-size:38px;
  }

  .send-btn{
    padding:15px;
  }
}





/* FOOTER */
.footer{
  background: linear-gradient(135deg, #0c6c88, #192d44, #194c58);
  color:#fff;
  padding:60px 8%;
}

/* TOP SECTION */
.footer-container{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:50px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.15);
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
}

.logo-icon{
  width:55px;
  height:55px;
  border-radius:12px;
  background: none;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.logo-icon img{
  width:100%;
  height:100%;
  object-fit:cover;
}



.logo-text h2{
  font-size:24px;
  color:#fff;
}

.logo-text span{
  font-size:13px;
  color:#b7bfd1;
}

/* ABOUT */
.footer-about p{
  color:#b7bfd1;
  line-height:1.8;
  margin-bottom:25px;
  max-width:350px;
}

/* SOCIAL */
.social-icons{
  display:flex;
  gap:12px;
}

.social-icons a{
  width:40px;
  height:40px;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:8px;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:0.3s;
}

.social-icons a:hover{
  background:#0c6c88;
  color:#071126;
  border-color:#12d6c5;
}

/* LINKS */
.footer-links h3{
  margin-bottom:20px;
  font-size:18px;
}

.footer-links a{
  display:block;
  text-decoration:none;
  color:#b7bfd1;
  margin-bottom:14px;
  transition:0.3s;
  font-size:15px;
}

.footer-links a:hover{
  color:#12d6c5;
  padding-left:4px;
}

/* BOTTOM */
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
  padding-top:25px;
}

.footer-bottom p{
  color:#b7bfd1;
  font-size:14px;
}

.bottom-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.bottom-links a{
  color:#b7bfd1;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.bottom-links a:hover{
  color:#12d6c5;
}

.badges{
  display:flex;
  gap:10px;
}

.badges span{
  border:1px solid rgba(255,255,255,0.2);
  padding:8px 14px;
  border-radius:20px;
  font-size:13px;
  color:#fff;
}


/* RESPONSIVE */
@media(max-width:991px){

  .footer-container{
    grid-template-columns:1fr 1fr;
    gap:40px;
  }
}

@media(max-width:600px){

  .footer{
    padding:50px 20px;
  }

  /* ABOUT SECTION FULL WIDTH */
  .footer-about{
    grid-column:1 / -1;
  }

  /* PRODUCTS + COMPANY + RESOURCES PARALLEL */
  .footer-container{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
  }

  .footer-links h3{
    font-size:16px;
    margin-bottom:15px;
  }

  .footer-links a{
    font-size:13px;
    margin-bottom:10px;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }

  .bottom-links{
    gap:10px;
  }

  .badges{
    flex-wrap:wrap;
  }

  .logo-text h2{
    font-size:22px;
  }
}




/*float-whatsapp*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  background: #1ebe5d;
}

.whatsapp-float i {
  font-size: 24px;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }

  .whatsapp-float i {
    font-size: 28px;
  }
}