body {
  margin: 0;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  color: #333;
}

/*  Navbar */
.custom-navbar {
  background: linear-gradient(to right, #0d1b2a, #1b263b);
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.custom-brand span {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.collapse {
  padding-right: 10rem;
}

.navbar-nav .nav-link {
  color: #dce6f7;
  margin: 0 15px;
  padding: 8px 0;
  position: relative;
  transition: all 0.4s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .dropdown:hover .nav-link {
  color: #00d4ff;
}

.dropdown-menu {
  background: rgba(16, 42, 67, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 12px;
  padding: 10px 0;
  min-width: 250px;
  z-index: 999;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  color: #f0f4f8;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease, color 0.3s ease, padding-left 0.3s;
  border-radius: 0;
}

.dropdown-item:hover {
  background-color: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  padding-left: 28px;
}

.dropdown-item::before {
  content: '➤';
  display: inline-block;
  margin-right: 10px;
  color: transparent;
  transition: color 0.3s;
}

.dropdown-item:hover::before {
  color: #00d4ff;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23FFFFFF' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
  .navbar-toggler {
    border: 2px solid #fff !important;
    border-radius: 6px;
    padding: 6px 10px;
  }
}



/*  Hero */
.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-fullscreen .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.1), rgba(1, 1, 68, 0.2));
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  max-width: 850px;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  opacity: 0.95;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-fullscreen {
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
  }

  .hero-content h1{
    font-size: 30px;
  }

  .hero-content p{
    font-size: 15px;
  }
}

.primary-btn,
.secondary-btn {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #00aaff;
  color: white;
  box-shadow: 0 4px 14px rgba(0, 170, 255, 0.4);
}

.primary-btn:hover {
  background: #008ecc;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 170, 255, 0.6);
}

.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/*  Body */

.trusted,
.services,
.value,
.industries,
.case-study{
  padding: 3rem 2rem 0;
  text-align: center;
}

.logo-scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: slideIn 1s ease-out;
}

.logo-scroll img {
  height: 45px;
  margin: 3rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.logo-scroll img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* What we do */
.services {
  padding: 4rem 2rem;
  text-align: center;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto 0 auto;
  max-width: 1200px;
}

.card {
  flex: 0 1 calc(25% - 2rem);
  max-width: calc(25% - 2rem);
  background-color: white;
  border-radius: 16px;
  padding: 0;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.card-content {
  padding: 1.5rem;
}

.card h3 {
  color: #1a1a1a;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: #333;
  font-size: 0.85rem;
  line-height: 1.4;
}

.card:hover {
  background: rgb(27, 30, 56);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card:hover h3,
.card:hover p {
  color: white;
}

.see-all {
  display: inline-block;
  margin-top: 3rem;
  font-weight: 500;
  text-decoration: none;
  color: #1a73e8;
  transition: color 0.3s ease;
}

.see-all:hover {
  color: #0d47a1;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90% !important;
    max-width: 90% !important;
    flex: none !important;
  }
}


/* Why CloudInnovex */
.value {
  padding: 5rem 2rem;
  text-align: center;
  background: url('../img/1345.jpg') center center / cover no-repeat fixed;
  position: relative;
  z-index: 1;
  color: white;
}

.value::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.value h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.value-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin: 2rem;
}

.value-item {
  background: rgba(15, 23, 42, 0.35);
  border-radius: 16px;
  padding: 2rem;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px); /* Add this first */
  backdrop-filter: blur(10px);         /* Then this */
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.value-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.value-item p {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.5;
}

.value-item img {
  width: 60px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* industries */
.industries {
  padding: 5rem 2rem;
  text-align: center;
}

.industry-grids {
  margin: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.industry-cards {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.industry-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.industry-cards:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.industry-cards::after {
  content: attr(class);
  display: none;
}

.industry-cards.fintech {
  background-image: url("../img/industry-fintech.jpg");
}

.industry-cards.healthcare {
  background-image: url("../img/2149611211.jpg");
}

.industry-cards.retail {
  background-image: url("../img/37849.jpg");
}

.industry-cards.others {
  background-image: url("../img/120776.jpg");
}

.industry-cards span {
  z-index: 2;
}

.industry-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.industry-grid div {
  background: white;
  border: 1px solid #ddd;
  padding: 1rem;
  width: 200px;
  border-radius: 8px;
}

/* Footer */
.custom-footer {
  background: linear-gradient(to right, #0d1b2a, #1b263b);
  color: #dce6f7;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.6rem;
  max-width: 240px;
  color: #b0c4d8;
}

.footer-links,
.footer-contact,
.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  margin-bottom: 15px;
  color: #00d4ff;
}

.footer-links a,
.footer-contact p,
.footer-social a {
  display: block;
  color: #dce6f7;
  margin-bottom: 8px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #00d4ff;
}

.footer-social a {
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 0.85rem;
  color: #8faecf;
}

.footer-bottom a {
  color: #8faecf;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: #00d4ff;
}


.hamburger {
  display: none;
  cursor: pointer;
}


/* Services */
.hero-solutions {
  background-image: url('../img/108502.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay .container {
  text-align: left;
}

.hero-title {
  max-width: 600px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: .9;
  margin-bottom: 20px;
  margin-left: -30px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  max-width: 600px;
  color: #d3e1f0;
  font-size: 1.3rem;
  margin-left: -30px;
  margin-bottom: 3px;
  opacity: 0.95;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .hero-overlay .container {
    text-align: center;
  }

  .hero-title,
  .hero-subtitle {
    margin-left: 0;
  }
}


/* Services cards*/
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto 0 auto;
  margin-bottom: 3rem;
  max-width: 1200px;
}

.card {
  flex: 0 1 calc(33.33% - 2rem);
  max-width: calc(33.33% - 2rem);
  background-color: white;
  border-radius: 16px;
  padding: 0;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.card-content {
  padding: 1.5rem;
}

.card h3 {
  color: #1a1a1a;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}

.card:hover {
  background: rgb(27, 30, 56);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card:hover h3,
.card:hover p {
  color: white;
}

/* Services methodology */
.cloud-process-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cloud-process-bg {
  background-image: url('../img/456324.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 2rem;
}

/* Section title */
.section-title {
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/* Card container */
.cloud-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Glass effect cards */
.cloud-card {
  flex: 0 1 calc(33.333% - 2rem);
  max-width: calc(33.333% - 2rem);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cloud-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* Card content */
.card-content {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Step title */
.step-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .cloud-card {
    flex: 0 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .cloud-card {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .cloud-process-bg {
    background-attachment: scroll;
  }
}


/*services contact us*/
.contact-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  margin-bottom: 5rem;
  text-align: center;
  color: white;
  overflow: hidden;
}

.contact-cta .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 10, 40, 0.6);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
  animation: fadeInUp 1s ease-in-out;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #48c774;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(72, 199, 116, 0.6);
}

.cta-btn:hover {
  background: #3ab265;
  box-shadow: 0 0 30px rgba(72, 199, 116, 0.8);
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*About section*/
.hero-about-section {
  background-image: url('../img/454944.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-about-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* overlay */
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  text-align: left;
  margin-left: -756px;
}

.about-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 0.9;
  margin-bottom: 20px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.about-hero-content p {
  color: #d3e1f0;
  font-size: 1.3rem;
  margin-bottom: 3px;
  opacity: 0.95;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* about.css */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #222;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-solutionss {
  background: url('../img/454944.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Mission Section */
.mission-section {
  padding: 5rem 2rem;
  background: white;
}

.mission-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.mission-text {
  flex: 1 1 500px;
  max-width: 600px;
  margin-right: 2rem;
}

.mission-image {
  flex: 1 1 400px;
  text-align: center;
}

.mission-image img {
  max-width: 100%;
  border-radius: 20px;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .mission-section .container {
    text-align: center;
  }
}


/* Ethos Section */
.ethos-section {
  background: url('../img/1336.jpg') center/cover fixed;
  padding: 5rem 2rem;
  color: white;
}

.ethos-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.ethos-card.glass-card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  width: 250px;
  transition: transform 0.3s ease;
}

.ethos-card:hover {
  transform: translateY(-10px);
}

.ethos-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #6ee7b7;
}

/* Leadership Section */
.team-section {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.team-member {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  width: 220px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-member img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* Approach Section */
.approach-section.enhanced-approach {
  background: linear-gradient(to right, #0d1b2a, #1b263b);
  padding: 4rem 2rem;
  color: white;
}

.approach-section.enhanced-approach p{
  margin-top: 1rem;
  text-align: justify;
}

/* Core Values Section */
.core-values-section {
  padding: 5rem 2rem;
  text-align: center;
  background-color: white;
}

.values-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.value-card {
  border-radius: 15px;
  padding: 2rem;
  width: 230px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bg-blue {
  background: #e0f2fe;
  color: #0c4a6e;
}

.bg-green {
  background: #d1fae5;
  color: #065f46;
}

.bg-yellow {
  background: #fef9c3;
  color: #78350f;
}

.bg-purple {
  background: #ede9fe;
  color: #5b21b6;
}

/*about end*/

/*Contact page*/

/* Hero Section */
.hero-contact {
  background: url('../img/39249.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-contact .overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-about h1 {
  text-align: start;
  max-width: 600px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: .9;
  margin-bottom: 20px;
  margin-left: -550px;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-about p{
  max-width: 600px;
  color: #d3e1f0;
  font-size: 1.3rem;
  margin-left: -519px;
  margin-bottom: 3px;
  text-align: start;
  opacity: 0.95;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* Hero Section end */

/* Contact Section */
.contact-section {
  padding: 5rem 1rem;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.contact-section h2 {
  text-align: center;
  color: #003366;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.subheading {
  text-align: center;
  margin-bottom: 3rem;
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  animation: fadeIn 1.2s ease-in-out;
}

.contact-form {
  flex: 1 1 55%;
  background: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.contact-info {
  flex: 1 1 35%;
  padding: 2rem;
  background: #d9f0fa;
  border-radius: 15px;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h3,
.contact-info h4 {
  margin-top: 1.5rem;
  color: #005288;
  font-size: 1.2rem;
}

.contact-info i {
  margin-right: 8px;
  color: #14b8a6;
}

.contact-info p {
  line-height: 1.6;
}

.contact-info p a {
  color: #007acc;
  text-decoration: none;
}

.contact-info p a:hover {
  text-decoration: underline;
}

.social-links a {
  display: block;
  margin-top: 0.5rem;
  color: #005288;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: #003366;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #003366;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007acc;
  outline: none;
}

.btn-submit {
  background: #007acc;
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #005fa3;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
