   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #f9f9f9;
      color: #222;
    }

    header {
  background: #fff;
  padding: 15px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 10;
}

header img {
  height: 80px; 
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
  transition: all 0.3s ease;
}

nav a, .dropdown-toggle {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  position: relative;
  font-size: 16px;
  transition: 0.3s;
  cursor: pointer;
}

nav a:hover, .dropdown-toggle:hover {
  color: #3a7992;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 180px;
  padding: 10px 0;
  z-index: 20;
}

.dropdown-menu a {
  padding: 10px 20px;
  font-size: 15px;
  color: #222;
  display: block;
  transition: background 0.3s;
}

.dropdown-menu a:hover {
  background: #f0f0f0;
  color: #355f6f;
}

.dropdown.active .dropdown-menu {
  display: flex;
}

/* Menu toggle (mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: #222;
  margin: 3px 0;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 15px 30px;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f9f9f9;
    border-radius: 5px;
    padding: 5px 0;
  }

  .dropdown-menu a {
    padding: 8px 15px;
  }
}

  /* HERO SECTION */
.hero {
  position: relative;
  min-height: 90vh;
  color: white;
  overflow: hidden;
  background: url('img/hero-section.jpg') no-repeat center/cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* MAIN FLEX CONTAINER */
.hero-content {
  position: relative;
  display: flex;
  justify-content: center;   
  align-items: center;       
  gap: 60px;                 
  padding: 80px 6%;          
  max-width: 1250px;        
  margin: 0 auto;
  z-index: 2;
  flex-wrap: nowrap;         
  box-sizing: border-box;
}

/* LEFT SIDE */
.hero-left {
  flex: 1 1 45%;
  max-width: 500px;
  color: #fff;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}

.line {
  width: 70px;
  height: 3px;
  background: #fff;
  margin-bottom: 20px;
}

.hero-left ul {
  margin-bottom: 25px;
}

.hero-left ul li {
  margin: 10px 0;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.hero-left ul li::before {
  content: "✔";
  color: #00c853;
  margin-right: 10px;
}

/* ZIP INPUT BOX */
.input-box {
  display: flex;
  gap: 10px;
}

.input-box input {
  padding: 12px 15px;
  border-radius: 6px;
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
}

.input-box button {
  background: #133A49;
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  white-space: nowrap;
}

.input-box button:hover {
  background: #3a7992;
}

/* RIGHT BOX */
.hero-right {
  background: #fff;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  color: #222;
  flex: 1 1 50%;
  max-width: 600px;   
  box-sizing: border-box;
}

.hero-right h3 {
  margin-bottom: 25px;
  color: #133A49;
  font-size: 22px;
  text-align: center;
}

/* GRID ITEMS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px 20px;
}

.grid-item {
  text-align: center;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.grid-item i {
  font-size: 34px;
  margin-bottom: 12px;
  color: #133A49;
  transition: transform 0.3s ease, color 0.3s ease;
}

.grid-item:hover i {
  transform: scale(1.2);
  color: #3a7992;
}

.grid-item:hover p {
  color: #3a7992;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 40px;
    padding: 60px 5%;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .hero-right {
    width: 90%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 40px 25px;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .input-box {
    flex-direction: column;
  }

  .hero-right {
    width: 100%;
    padding: 35px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .hero-right {
    padding: 25px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .grid-item i {
    font-size: 28px;
  }

  .grid-item p {
    font-size: 14px;
  }
}

/* Intro Section */
.intro-section {
  text-align: center;
  padding: 60px 20px 30px;
  background: #fff;
}

.intro-section h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 0;
  color: #222;
}

.intro-section h1 span {
  color: #133A49; 
}

/*  RESPONSIVE DESIGN */

@media (max-width: 768px) {
  .intro-section {
    padding: 50px 15px 25px;
  }

  .intro-section h1 {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .intro-section {
    padding: 40px 10px 20px;
  }

  .intro-section h1 {
    font-size: 26px;
    line-height: 1.3;
  }
}


    /* Features Section */
.features-section {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.features-section img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(65%);
}

.content-box {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  max-width: 600px;
  margin-left: 5%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.content-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #111;
}

.content-box h2 span {
  color: #133A49;
}

.content-box ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.content-box ul li {
  margin-bottom: 10px;
  font-size: 17px;
  color: #555;
  list-style-type: disc;
}

.bold-text {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  color: #000;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-group input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
}

.input-group button {
  background-color: #133A49;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.input-group button:hover {
  background-color: #3a7992;
}

/*RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .features-section {
    height: auto;
    padding: 80px 0;
    justify-content: center;
  }

  .content-box {
    margin: 0 auto;
    max-width: 80%;
  }

  .content-box h2 {
    font-size: 32px;
  }

  .content-box ul li {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .features-section {
    flex-direction: column;
    height: auto;
    text-align: center;
    padding: 60px 20px;
  }

  .content-box {
    margin: 0;
    padding: 40px 25px;
    max-width: 90%;
  }

  .content-box h2 {
    font-size: 28px;
  }

  .content-box ul {
    padding-left: 0;
    list-style: none;
  }

  .content-box ul li {
    font-size: 15px;
  }

  .input-group {
    flex-direction: column;
    gap: 12px;
  }

  .input-group input,
  .input-group button {
    width: 100%;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .features-section {
    height: auto;
    padding: 40px 15px;
  }

  .content-box {
    padding: 30px 20px;
    max-width: 100%;
  }

  .content-box h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .bold-text {
    font-size: 16px;
  }

  .content-box ul li {
    font-size: 14px;
  }

  .input-group input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .input-group button {
    padding: 12px 18px;
    font-size: 14px;
  }
}


/*  PROJECTS SECTION */
.projects-section {
  padding: 60px 5%;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Header */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.section-header h2 span {
  color: #133A49;
}

/* Buttons */
.nav-buttons {
  display: flex;
  gap: 10px;
}

.scroll-btn {
  background: #133A49;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn i {
  color: #fff;
  font-size: 18px;
}

.scroll-btn:hover {
  background: #3a7992;
}

/* Scroll Container */
.projects-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.projects-scroll::-webkit-scrollbar {
  display: none;
}

/* Project Box */
.project-box {
  position: relative;
  flex: 0 0 calc(33.333% - 20px);
  overflow: hidden;
  border-radius: 18px;
  transition: transform 0.3s ease;
  cursor: pointer;
  min-width: 370px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-box:hover img {
  transform: scale(1.08);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  padding: 20px;
  color: #fff;
}

.overlay h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.overlay p {
  font-size: 15px;
  color: #ddd;
}

/*  Responsive Projects */
@media (max-width: 1200px) {
  .project-box {
    flex: 0 0 calc(50% - 20px);
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 24px;
  }

  .project-box {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .project-box img {
    height: 250px;
  }

  .overlay h3 {
    font-size: 18px;
  }

  .overlay p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .scroll-btn {
    width: 40px;
    height: 40px;
  }

  .overlay {
    padding: 15px;
  }
}

.insights-section {
  text-align: center;
  margin-top: 80px;
  padding: 0 5%;
}

.insights-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}

.insights-section h2 span {
  color: #133A49;
}

.insights-section p {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

.insights-grid-section {
  padding: 70px 8%;
  background: #fff;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.insight-box {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, max-height 0.5s ease;
}

.insight-box:hover {
  transform: translateY(-6px);
}

.insight-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.insight-content {
  padding: 22px 20px;
  position: relative;
}

.insight-content h3 {
  font-size: 20px;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.3;
}

.insight-content p {
  color: #777;
  font-size: 15px;
  margin-bottom: 18px;
}

.full-text {
  display: none;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  color: #133A49;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
  text-decoration: underline;
}

.read-more:hover {
  color: #3a7992;
}

/* Responsive */
@media (max-width: 1024px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-box img {
    height: 200px;
  }
}


/*  PRO MATCH SECTION */
.promatch-section {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  color: #111;
}


.promatch-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 0;
}
.promatch-box {
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 40px 35px;
  max-width: 400px;
  margin-left: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.promatch-box h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 25px 0;
  line-height: 1.2;
}

.promatch-box h1 span:first-child {
  color: #133A49;
}

.promatch-box h1 span:last-child {
  font-weight: 400;
  color: #111;
}

.promatch-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.promatch-box ul li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.check-icon {
  width: 22px;
  height: 22px;
  background-color: #133A49;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 10px;
}

.promatch-box p {
  font-weight: 600;
  margin: 15px 0;
  font-size: 17px;
  color: #222;
}
.zip-box {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.zip-box input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

.zip-box button {
  background-color: #133A49;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.zip-box button:hover {
  background-color: #3a7992;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .promatch-section {
    min-height: 400px;
    background-position: center top;
  }

  .promatch-box {
    margin-left: 40px;
    max-width: 380px;
    padding: 35px 30px;
  }

  .promatch-box h1 {
    font-size: 36px;
  }
}

@media (max-width: 900px) {
  .promatch-section {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
  }

  .promatch-box {
    margin: 0;
    max-width: 90%;
    padding: 35px 25px;
  }

  .promatch-box h1 {
    font-size: 34px;
  }

  .promatch-box ul li {
    justify-content: center;
  }

  .check-icon {
    margin-right: 8px;
  }

  .zip-box {
    flex-direction: column;
  }

  .zip-box input,
  .zip-box button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .promatch-section {
    border-radius: 18px;
    margin: 40px auto;
  }

  .promatch-box {
    padding: 28px 20px;
  }

  .promatch-box h1 {
    font-size: 30px;
  }

  .promatch-box p {
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .promatch-box h1 {
    font-size: 26px;
  }

  .zip-box button {
    font-size: 14px;
    padding: 10px 14px;
  }
}

/* Footer Base */
.footer {
  background: #133A49;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 8% 25px;
}

/* Top Section Layout */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Left Section */
.footer-left {
  flex: 0 0 30%;
  min-width: 300px;
}

.footer-left h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.address {
  font-size: 15px;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Social Media Icons */
.social-icons {
  margin-top: 25px;
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #FFD700;
  transform: scale(1.2);
}

/* Right Section */
.footer-right {
  flex: 0 0 65%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 70px;
  flex-wrap: nowrap;
}

.footer-column {
  min-width: 180px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #fff;
}

.footer-column a {
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
  margin: 6px 0;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #FFD700;
}

/* Bottom Line */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .footer-top {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
    justify-content: center;
  }

  .footer-right {
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 50px 5% 25px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-left h2 {
    font-size: 24px;
  }

  .address {
    font-size: 14px;
  }

  .social-icons a {
    font-size: 16px;
    margin-right: 10px;
  }
}




.campaign-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: #f4f7f8;
}

.campaign-box {
  background: #fff;
  padding: 60px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 1100px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.campaign-box h3 {
  margin-bottom: 40px;
  font-size: 26px;
  color: #133a49;
  text-align: center;
}

/* Grid Layout */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px 30px;
}

.campaign-item {
  text-align: center;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.campaign-item i {
  font-size: 38px;
  margin-bottom: 12px;
  color: #133a49;
  transition: transform 0.3s ease, color 0.3s ease;
}

.campaign-item:hover i {
  transform: scale(1.2);
  color: #3a7992;
}

.campaign-item:hover p {
  color: #3a7992;
}

/* Responsive Styling */
@media (max-width: 992px) {
  .campaign-box {
    padding: 40px;
    max-width: 90%;
  }

  .campaign-grid {
    gap: 30px 20px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}

@media (max-width: 600px) {
  .campaign-box {
    padding: 30px 20px;
  }

  .campaign-box h3 {
    font-size: 22px;
  }

  .campaign-item i {
    font-size: 30px;
  }

  .campaign-item p {
    font-size: 14px;
  }

  .campaign-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
  }
}