body, html {
    font-family: 'Poppins', sans-serif;
}


.header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

/* LOGO */
.logo img {
    width: 180px;
    height: auto;
}

/* NAVIGATION */
.nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #112240;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav ul li a:hover {
    color: #0072ff;
}

/* BUTTON */
.header-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.header-btn:hover {
    background: linear-gradient(135deg, #005ce6, #00a8db);
    transform: translateY(-2px);
}



/* FULL SECTION */
.contact-section {
  padding: 80px 0;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

/* 2 COLUMN GRID */
.contact-container {
  width: 95%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* LEFT BLUE BOX */
.contact-info-box {
  background: linear-gradient(135deg, #0e5ae7, #14c6f8);
  padding: 50px;
  border-radius: 25px;
  color: white;
  box-shadow: 0px 20px 40px rgba(0,0,0,0.15);
}

/* BLUE BOX INSIDE TITLES */
.mini-title {
  color: #cfe9ff;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dark {
  color: #94a3b8;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cfe9ff;
}

.dark-dot {
  background: #0ea5e9;
}

/* SMALL PARAGRAPH */
.info-text {
  margin: 15px 0 25px;
  font-size: 15px;
  line-height: 1.7;
}

/* ICON ROWS */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 18px 0;
}

.info-item h5 {
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

.info-item p {
  margin: 3px 0 0;
  font-weight: bold;
}

.icon {
  width: 28px;
}

/* RIGHT FORM SIDE */
.contact-form-box h2 {
  font-size: 36px;
  margin: 10px 0 20px;
  color: #0f172a;
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 17px 20px;
  border-radius: 40px;
  border: 1px solid #e2e8f0;
  background: #f9fafb;
  font-size: 15px;
  outline: none;
}

.contact-form-box textarea {
  height: 150px;
  resize: none;
  border-radius: 20px;
}

/* SEND BUTTON */
.send-btn {
  background: #000;
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  transition: 0.3s;
}

.send-btn:hover {
  background: #0ea5e9;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}/* HERO section animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.animate-hero-section {
    padding: 80px 0;
    text-align: center;
    background: #eef3ff;
    opacity: 0 !important;
    animation: fadeHero 1s ease-out forwards !important;
}

.animate-hero-section h1,
.animate-hero-section p {
    opacity: 0 !important;
    animation: fadeUpHero 1s ease-out forwards;
}

.animate-hero-section h1 {
    animation-delay: .3s;
}

.animate-hero-section p {
    animation-delay: .6s;
}

/* animations */
@keyframes fadeHero {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUpHero {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* Remove default body margin/padding */
body {
    margin: 0;
    padding: 0;
}

/* Main Footer */
.main-footer {
    background: #0658c0;
    color: #fff;
    padding: 60px 0 30px; /* left-right padding remove kiya */
    background-image: url('images/footer-wave.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom; /* wave ko bottom pe fix kare */
}

/* Footer container - full width with max-width */
.footer-container {
    width: 100%;
    max-width: 1200px; /* jitna content chahiye */
    margin: 0 auto; /* center kare horizontally */
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    padding: 0 20px; /* optional inner spacing */
}

/* Footer Columns */
.footer-col h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Icons */
.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #0658c0;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #0658c0;
    color: #fff;
}

/* Footer Gallery */
.footer-gallery {
    width: 100%;
    max-width: 250px;
    border-radius: 5px;
}

.footer-gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    padding-top: 15px;
    color: #dcdcdc;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
}

