@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nata+Sans:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body{
    margin: 0px;
    padding: 0px;
    font-family: "Bricolage Grotesque", sans-serif;
}
/* --------------------------------------------------------------------------------------------------- */
/*  HEADER BACKGROUND */
.hero-header {
  background-image: url("assests/resources/index/homebg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 95vh;
  position: relative;
}
/* Dark overlay */
.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

/* Navbar above overlay */
.hero-header nav {
  position: relative;
  z-index: 1;
}

/* NAVBAR SECTION */
.custom-navbar {
  background: transparent;
  position: relative;
  width: 100%;
  z-index: 1000;
}

/* Logo */
.navbar-logo {
  max-width: 210px;
  height: auto;
}

/* Menu links */
.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: #a3a2a2 !important;
}

/* Navbar button */
.btn-quote {
  background-color: #005EE9;
  color: black;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  border: none;
  white-space: nowrap;
}

.btn-quote:hover {
  background-color: #0247af;
  color: black;
}

/* NAVBAR RESPONSIVE*/
/* Tablets & small laptops */
@media (max-width: 992px) {
  .navbar-logo {
    max-width: 170px;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 8px 12px;
  }

  .btn-quote {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .custom-navbar {
    background: rgba(0, 0, 0, 0.85);
    padding: 10px 15px;
  }

  /* Center menu items */
  .navbar-nav {
    text-align: center;
    margin-top: 15px;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
    font-size: 16px;
  }

  /* Hide quote button on mobile */
  .btn-quote {
    display: none;
  }

  /* Toggler icon visibility */
  .navbar-toggler {
    border: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }
}

/* Small mobile devices */
@media (max-width: 576px) {
  .navbar-logo {
    max-width: 150px;
  }

  .navbar-nav .nav-link {
    font-size: 15px;
  }
}
/*HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding-left: 80px;
  padding-top: 50px;
  max-width: 900px;
}

/* Headings */
.hero-content h1 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}

/* Paragraph */
.hero-content p {
  font-size: 18px;
  margin: 30px 0;
  color: #f1f1f1;
}

/* Buttons container */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* First Button */
.btn-first {
  background-color: #005EE9;
  color: black;
  padding: 10px 35px;
  font-size: 18px;
  border-radius: 50px;
  border: none;
}

.btn-first:hover {
  background-color: #0247af;
  color: black;
}

/* Second Button */
.btn-second {
  background: transparent;
  color: white;
  padding: 10px 35px;
  font-size: 18px;
  border-radius: 50px;
  border: 2px solid white;
}

.btn-second:hover {
  background-color: #03409c;
  color: black;
}
/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .hero-content {
    padding-left: 40px;
    padding-top: 160px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-buttons .btn {
    font-size: 16px;
    padding: 12px 30px;
  }
}
@media (max-width: 768px) {
  .hero-content {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 140px;
    max-width: 100%;
  }
  .hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
  }
  .hero-content p {
    font-size: 15px;
    margin: 20px 0;
  }
  .hero-buttons {
    gap: 15px;
  }
  .hero-buttons .btn {
    font-size: 16px;
    padding: 12px 28px;
  }
}
@media (max-width: 576px) {
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 120px;
    text-align: left;
  }
  .hero-content h1 {
    font-size: 36px;
    line-height: 1.25;
  }
 .hero-content p {
    font-size: 16px;
    margin: 15px 0;
  }
  .hero-buttons {
    flex-direction: row;
    flex-wrap: nowrap; 
    width: 100%;
    gap: 10px;
  }
  .hero-buttons .btn {
    flex: 1;            
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 13px;
  }
  .hero-buttons .btn {
    font-size: 13px;
    padding: 9px 0;
  }
}
/* --------------------------------------------------------------------------------------------------- */
/* about section */
.about-section {
  background-color: #fff;
}

/* Image */
.about-img {
  max-width: 100%;
  border-radius: 12px;
}

/* Content */
.about-content h5 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 10px;
}

.about-content h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
/* Text */
.about-content p {
  font-size: 16px;
  color: #555;
  margin: 15px 0;
}
/* List */
.about-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.about-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 12px;
  color: #000;
}
.about-list img {
  width: 20px;
  margin-right: 10px;
}
/* Button */
.about-btn {
  margin-top: 20px;
  padding: 14px 35px;
  border-radius: 50px;
  border: 2px solid black;
  background: transparent;
  color: black;
  font-size: 16px;
  font-weight: 500;
}
.about-btn:hover {
  background-color: #005EE9;
  color: white;
}
/* --------------------------------------------------------------------------------------------------- */
  /* SERVICES SECTION*/
.services-section {
  background-color: #E7F6FF;
}

/* Headings */
.services-subtitle {
  color: #000;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
}

.services-title {
  color: #000;
  font-size: 50px;
  font-weight: 700;
}
.service-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  padding-top: 60px; /* space for vector */
  text-align: left;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* Card Titles */
.service-card h2 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

/* Card Text */
.service-card p {
  font-size: 15px;
  color: #333;
  margin: 15px 0 25px;
}
.service-vector,
.service-vectorman,
.service-vectorfarm {
  position: absolute;
  left: 25px;
  height: auto;
}

/* Desktop (Default ≥1200px) */
.service-vector {
  top: 25px;
  width: 33px;
}

.service-vectorman {
  top: 15px;
  width: 63px;
}

.service-vectorfarm {
  top: 12px;
  width: 45px;
}
.service-img {
  width: 100%;
  height: 180px; 
  border-radius: 10px;
  object-fit: cover;
  margin-top: auto;
}
.services-btn {
  padding: 14px 40px;
  border-radius: 50px;
  border: 2px solid #000;
  background: transparent;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.services-btn:hover {
  background-color: #005EE9;
  color: black;
}

/*  RESPONSIVE BREAKPOINTS*/
/* ≤1200px */
@media (max-width: 1200px) {
  .services-title {
    font-size: 42px;
  }

  .service-card h2 {
    font-size: 21px;
  }

  .service-vector {
    width: 30px;
  }

  .service-vectorman {
    width: 58px;
  }

  .service-vectorfarm {
    width: 42px;
  }
}

/* ≤992px */
@media (max-width: 992px) {
  .services-title {
    font-size: 38px;
  }

  .service-card {
    padding: 22px;
    padding-top: 55px;
  }
  .service-img {
    height: 170px;
  }
  .service-card h2 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-vector {
    width: 28px;
    top: 22px;
  }

  .service-vectorman {
    width: 50px;
    top: 14px;
  }

  .service-vectorfarm {
    width: 38px;
    top: 12px;
  }
}

/* ≤768px */
@media (max-width: 768px) {
  .services-title {
    font-size: 34px;
  }

  .services-subtitle {
    font-size: 13px;
  }

  .service-card {
    padding: 20px;
    padding-top: 50px;
  }

  .service-card h2 {
    font-size: 19px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-vector,
  .service-vectorman,
  .service-vectorfarm {
    left: 20px;
  }

  .service-vector {
    width: 26px;
  }

  .service-vectorman {
    width: 45px;
  }

  .service-vectorfarm {
    width: 34px;
  }

  .services-btn {
    padding: 12px 35px;
  }
}

/* ≤576px */
@media (max-width: 576px) {
  .services-title {
    font-size: 32px;
    line-height: 1.2;
  }
  .service-img {
    height: 160px;
  }
  .service-card {
    padding: 18px;
    padding-top: 48px;
  }

  .service-card h2 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13.5px;
  }

  .service-vector {
    width: 24px;
    top: 18px;
  }

  .service-vectorman {
    width: 40px;
    top: 12px;
  }

  .service-vectorfarm {
    width: 32px;
    top: 10px;
  }

  .service-img {
    margin-top: 15px;
  }

  .services-btn {
    width: 100%;
    font-size: 15px;
  }
}

/* ≤400px */
@media (max-width: 400px) {
  .services-title {
    font-size: 26px;
  }

  .service-card h2 {
    font-size: 17px;
  }
  .service-card p {
    font-size: 13px;
  }
 .service-vector {
    width: 22px;
  }
  .service-vectorman {
    width: 36px;
  }
  .service-vectorfarm {
    width: 28px;
  }
  .services-btn {
    padding: 12px 25px;
  }
}
/* --------------------------------------------------------------------------------------------------- */
   /* CHOOSE SECTION */
.choose-section {
  background-color: #0F172A;
  color: #ffffff;
}

/* Subtitle */
.choose-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

/* Leaf icon */
.leaf-icon {
  width: 18px;
  color: #ffffff;
}

/* Title */
.choose-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

/* Choose items */
.choose-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.choose-item h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

.choose-item p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 0;
} 
.star-icon {
  width: 30px;
  margin-top: 4px;
}
.choose-image {
  width: 100%;
  height: auto;
  max-height: 320px;  
  object-fit: cover;
  border-radius: 5px;
}
.choose-section hr {
  border-color: rgba(255, 255, 255, 0.15);
}
/* RESPONSIVE */
.choose-section {
  background-color: #0F172A;
  color: #ffffff;
}
.choose-subtitle {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.leaf-icon {
  width: 14px;
}
.choose-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}
.choose-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.choose-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.choose-item p {
  font-size: 13px;
  color: #cbd5e1;
}
.star-icon {
  width: 14px;
  margin-top: 4px;
}
.choose-image {
  width:100%;
  max-width: 100%;
  border-radius: 15px;
  margin-top: 70px;
}
.choose-section hr {
  border-color: rgba(247, 244, 244);
}
@media (min-width: 576px) {
  .choose-title {
    font-size: 30px;
  }
  .choose-item h5 {
    font-size: 17px;
  }
  .star-icon {
    width: 16px;
  }
  .leaf-icon {
    width: 16px;
  }
}
@media (min-width: 768px) {
  .choose-title {
    font-size: 34px;
  }
  .choose-item {
    gap: 12px;
  }
  .choose-item p {
    font-size: 14px;
  }
  .choose-image {
    max-width: 80%;
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .choose-title {
    font-size: 40px;
  }
  .choose-subtitle {
    font-size: 14px;
  }
  .choose-item h5 {
    font-size: 18px;
  }
  .star-icon {
    width: 18px;
  }
  .choose-image {
    max-width: 85%;
  }
}
@media (min-width: 1200px) {
  .choose-title {
    font-size: 44px;
  }
  .choose-item {
    gap: 14px;
  }
.choose-image {
    max-width: 90%;
  }
}
@media (min-width: 1400px) {
  .choose-title {
    font-size: 48px;
  }
  .choose-item h5 {
    font-size: 19px;
  }
  .choose-item p {
    font-size: 15px;
  }
  .choose-image {
    max-width: 95%;
  }
}
/* ----------------------------------------------------------------------------------------------------- */
/* grow section */
.cta-heading {
  padding: 60px 15px; 
}
.cta-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 576px) {
  .cta-heading {
    padding: 80px 15px;
  }
  .cta-title {
    font-size: 34px;
  }
}
@media (min-width: 768px) {
  .cta-heading {
    padding: 100px 15px;
  }
  .cta-title {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .cta-heading {
    padding: 120px 15px;
  }
  .cta-title {
    font-size: 54px; 
  }
}
@media (min-width: 1200px) {
  .cta-heading {
    padding: 140px 15px;
  }
}
@media (min-width: 1400px) {
  .cta-heading {
    padding: 160px 15px;
  }
}
/* -------------------------------------------------------------------------------------------------- */
/* GET STARTED SECTION */
.get-started-section {
  position: relative;
  background-image: url("assests/resources/index/getstarted.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0; 
  color: #ffffff;
}
.get-started-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); 
}
.get-started-section > * {
  position: relative;
  z-index: 1;
}
.get-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
}
.get-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #e5e7eb;
  margin-bottom: 20px;
}
.get-btn {
  background-color: #2563eb; /* blue */
  color: #000000;           /* black text */
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
}
.get-btn:hover {
  background-color: #0746f3;
  color: #000000;
}
/* RESPONSIVE */
@media (min-width: 768px) {
  .get-started-section {
    padding: 120px 0;
  }
  .get-title {
    font-size: 40px;
  }
  .get-subtitle {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .get-started-section {
    padding: 150px 0;
  }
  .get-title {
    font-size: 48px;
  }
}
@media (min-width: 1400px) {
  .get-started-section {
    padding: 180px 0;
  }
}
/* -------------------------------------------------------------------------------------------------- */
/* footer section */
.footer-section {
  background-color: #E7F6FF;
  color: #000;
}
.footer-logo {
   width: 100%;
  max-width: 180px;
  height: auto;
}
.footer-title {
  font-weight: 600;
  font-size: 18px;
}
.footer-text {
  font-size: 14px;
  color: #334155;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  text-decoration: none;
  color: #334155;
  font-size: 14px;
}
.footer-links a:hover {
  color: #2563eb;
}
.footer-divider {
  border-color: rgba(0, 0, 0, 0.5);
}
.footer-copy {
  font-size: 16px;
  color: #475569;
}
@media (min-width: 576px) {
  .footer-logo {
    max-width: 200px;
  }
}
@media (min-width: 768px) {
  .footer-logo {
    max-width: 220px;
  }
}
@media (min-width: 992px) {
  .footer-logo {
    max-width: 260px;
  }
}
@media (min-width: 1200px) {
  .footer-logo {
    max-width: 280px;
  }
}
/* ---------------------------------------------------------------------------------------------------- */
/* about page */
.abouthero-header {
  background-image: url("assests/resources/about/header-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 90vh;
  position: relative;
}
.abouthero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.abouthero-header nav {
  position: relative;
  z-index: 1;
}
/* ---------------------------------------------------------------------------------------------------- */
/* story section */
.story-img {
  border-radius: 10px;
  object-fit: cover;
}
.story-stats {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.stat-box h2 {
  font-size: 36px;
  color: #000;
}
.stat-box p {
  color: #000;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .stat-box h2 {
    font-size: 28px;
  }
}
/* ---------------------------------------------------------------------------------------------------- */
/* PROCESS SECTION */
.process-section {
  background-color: #070614;
  color: #ffffff;
}
/* Subtitle */
.process-subtitle {
  font-size: 16px;
  letter-spacing: 2px;
  color: #ffffff;
}
/* Cards */
.process-card {
  background-color: #E7F6FF;
  color: #0F172A;
  padding: 50px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
/* Hover effect (optional but nice) */
.process-card:hover {
  transform: translateY(-5px);
}
/* Text inside card */
.process-card h3 {
  margin-bottom: 12px;
}
.process-card p {
  margin-bottom: 0;
  font-size: 15px;
}
/* Responsive heading */
@media (max-width: 768px) {
  .process-section h1 {
    font-size: 32px;
  }
}
/* --------------------------------------------------------------------------------------------------- */
/* Mission section */
.mission-img {
  border-radius: 10px;
  object-fit: cover;
}
/* Content box */
.mission-content {
  padding: 20px;
}
/* Headings */
.mission-content h1 {
  margin-bottom: 12px;
}
/* Subtitle */
.mission-content h5 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #0F172A;
}
/* Responsive text */
@media (max-width: 768px) {
  .mission-content h1 {
    font-size: 30px;
  }
}
/* ---------Service page----------------------------------------------------------------------------- */
.servicehero-header {
  background-image: url("assests/resources/services/servicebg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  position: relative;
}
.servicehero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.servicehero-header nav {
  position: relative;
  z-index: 1;
}
/* ---Allserv section--------------------------------------------------------------------------------- */
.allserv-section {
  background-color: #E7F6FF;
}
.allserv-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000;
}
.allserv-title {
  font-size: 42px;
  font-weight: 700;
  color: #000;
}
.allserv-card {
  background: #fff;
  border-radius: 20px;
  padding: 160px 30px 30px; /* space for image */
  height: 100%;
  box-shadow: 0 8px 34px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: visible;
}
.allserv-img {
  position: absolute;
  top: -35px;
  right: 30px;
  width: 300px;
  height: 180px; 
  max-width: 75%;
   object-fit: cover;  
  border-radius: 28px;
  z-index: 3;
}
.allserv-vector {
  width: 45px;
  margin-bottom: 15px;
}
.allserv-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.allserv-card p {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
}
/* Large tablets / small laptops */
@media (max-width: 992px) {
  .allserv-img {
    width: 220px;
     height: 150px;
    top: -30px;
    right: 20px;
  }
  .allserv-card {
    padding-top: 140px;
  }
}
/* Tablets */
@media (max-width: 768px) {
  .allserv-title {
    font-size: 32px;
  }
  .allserv-img {
    width: 180px;
    top: -25px;
    right: 15px;
    height: 130px;
  }
  .allserv-card {
    padding: 130px 25px 25px;
  }
}
/* Mobile */
@media (max-width: 576px) {
  .allserv-img {
    width: 140px;
    top: -20px;
    right: 15px;
    height: 110px;
  }
  .allserv-card {
    padding: 110px 20px 25px;
    margin-bottom: 80px; 
  }
  .allserv-card h3 {
    font-size: 20px;
  }
}
/* --Contact page------------------------------------------------------------------------------------- */
.contacthero-header {
  background-image: url("assests/resources/contact/contactbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  position: relative;
}
.contacthero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.contacthero-header nav {
  position: relative;
  z-index: 1;
}
/* --CONTACT SECTION--------------------------------------------------------------------------------- */
.contact-section {
  background-color: #ffffff;
}
/* Subtitle */
.contact-subtitle {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
/* Title */
.contact-title {
  font-size: 42px;
  font-weight: 700;
}
/* Description */
.contact-desc {
  font-size: 16px;
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
}
/* Box */
.contact-box {
  background: #E7F6FF;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
/* Button */
.contact-btn {
  background-color: #005EE9;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 32px;
}
.contact-btn:hover {
  background-color: #0047c4;
  color: #000;
}
/* Large devices (≤1200px) */
@media (max-width: 1200px) {
  .contact-title {
    font-size: 38px;
  }
  .contact-desc {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .contact-title {
    font-size: 32px;
  }
  .contact-box {
    padding: 24px;
  }
  .contact-desc {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .contact-subtitle {
    font-size: 14px;
  }
  .contact-title {
    font-size: 28px;
  }
  .contact-desc {
    font-size: 14px;
  }
  .contact-box {
    padding: 20px;
  }
  .contact-btn {
    width: 100%;
    text-align: center;
  }
}
/* Extra small devices (≤576px) */
@media (max-width: 576px) {
  .contact-title {
    font-size: 24px;
  }
  .contact-desc {
    font-size: 13px;
  }
  .contact-box {
    padding: 16px;
    border-radius: 16px;
  }
}
@media (max-width: 400px) {
  .contact-title {
    font-size: 22px;
  }
  .contact-subtitle {
    letter-spacing: 1px;
  }
}
/* ---CONTACT INFO SECTION--------------------------------------------------------------------------- */
.contact-info-section {
  background-color: #E7F6FF;
} 
/* Card */
.contact-info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
   display: flex;
  flex-direction: column;
  height: 100%;
}
/* Icon */
.contact-info-card img {
  width: 50px;
  height: auto;
}
/* Title */
.contact-info-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
/* Text */
.contact-info-card p {
  font-size: 15px;
  color: #000;
  margin-bottom: 6px;
}
/* Bottom Line */
.contact-info-card hr {
  margin-top: auto;
  border: none;
  height: 2px;
  width: 60px;
  background-color: #000;
}
/* Responsive */
@media (max-width: 767px) {
  .contact-info-card {
    padding: 20px;
  }

  .contact-info-card h3 {
    font-size: 20px;
  }
}
