/* ==================================================
   Easygolife.com – Master Stylesheet
   Author: Easygolife
   Purpose: Conversion-focused IT / AI website
================================================== */

/* =========================
   1. GLOBAL RESET & BASE
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
}

/* =========================
   2. HEADER & NAVIGATION
========================= */
/* ================= HEADER ================= */
/* ================= HEADER ================= */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  paDDING:10PX;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; /* needed for absolute nav on mobile */
}

/* Logo Styling */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 180px;       /* adjust size as needed */
  height: auto;
  margin-right: 10px;
}

.logo span {
  font-size: 22px;
  font-weight: 700;
  color: #222;
}

/* Hamburger remains same */
.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 18px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }

  nav.active {
    display: flex;
  }

  nav a {
    font-size: 16px;
    text-align: center;
  }
}


/* ================= DESKTOP NAV ================= */
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding:10px;
}

nav a {
  text-decoration: none;
  font-weight: 500;
  color: #222;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #0d6efd;
}

.btn-nav {
  padding: 8px 14px;
  background: #0d6efd;
  color: #fff !important;
  border-radius: 6px;
  font-size: 14px;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #111;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hamburger {
    display: block;
  }

  /* Hide nav by default on mobile */
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  /* Show nav only when active */
  nav.active {
    display: flex;
  }

  nav a {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }

  .btn-nav {
    width: auto;
  }
}

/* =========================
   3. HERO SLIDER SECTION
========================= */
./* ================= HERO SLIDER ================= */
/* ===== HERO SLIDER ===== */
/* Hero Section */
/*.hero {*/
/*  position: relative;*/
/*  width: 100%;*/
  height: 80vh; /* slider height */
/*  overflow: hidden;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/

/* Swiper Slides */
/*.heroSwiper {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*}*/

/*.heroSwiper .swiper-slide {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*}*/

/* Overlay */
/*.hero-overlay {*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: rgba(0, 0, 0, 0.4);*/
/*  z-index: 1;*/
/*}*/

/* Hero Content */
/*.hero-content {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*  text-align: center;*/
/*  color: #fff;*/
/*  max-width: 900px;*/
/*}*/

/* Buttons */
/*.hero-buttons a {*/
/*  margin: 10px;*/
/*}*/

/* Optional: adjust pagination & navigation buttons */
/*.swiper-button-next,*/
/*.swiper-button-prev {*/
/*  color: #fff;*/
/*}*/
/*.swiper-pagination-bullet {*/
/*  background: #fff;*/
/*}*/


/*.hero-trust {*/
/*  margin-top: 15px;*/
/*  font-size: 14px;*/
/*  opacity: 0.85;*/
/*}*/

/*.hero-trust {*/
/*  margin-top: 15px;*/
/*  font-size: 14px;*/
/*  opacity: 0.85;*/
/*}*/

/* Buttons */
.btn-primary { background: #ff5722; color: #fff; }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: #000; }

/* ================= HERO RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 28px; }
  .hero-content p { font-size: 16px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
}


/* =========================
   4. BUTTONS & CTA
========================= */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: #ff5722;
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,87,34,0.35);
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: #ffffff;
  color: #000000;
}

.cta {
  background: linear-gradient(135deg, #ff5722, #ff784e);
  color: #ffffff;
  text-align: center;
}

/* =========================
   5. GENERIC SECTIONS
========================= */
/*section {*/
/*  padding: 10px 0;*/
/*}*/

h2 {
  text-align: center;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666666;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

.card h3 {
  margin-bottom: 15px;
}

.price {
  font-size: 28px;
  color: #ff5722;
}

/* =========================
   6. AUDIT PAGE (LEAD FORM)
========================= */
form input {
  width: 100%;
  padding: 14px 15px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #dddddd;
  outline: none;
  transition: 0.3s ease;
}

form input:focus {
  border-color: #ff5722;
  box-shadow: 0 0 0 3px rgba(255,87,34,0.15);
}

/* =========================
   7. ANIMATIONS
========================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   8. FOOTER
========================= */
/* ================= FOOTER ================= */
footer {
  background: #111111;
  color: #bbbbbb;
  padding: 60px 20px 40px 20px;
  padding-bottom: 80px; 
  font-family: 'Poppins', sans-serif;
}

footer a {
  color: #bbbbbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0d6efd;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: start;
  margin-bottom: 30px;
}

.footer-about h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-about .footer-logo img {
  width: 180px;
  margin-top: 10px;
}

/* Section titles */
.footer-links h4,
.footer-policies h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.footer-links p,
.footer-policies p,
.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

/* Copyright */
.copy {
  text-align: center;
  font-size: 14px;
  color: #999;
  border-top: 1px solid #222;
  padding-top: 20px;
}
/* Footer Grid */
footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Poppins, sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-about h3, .footer-links h4, .footer-policies h4, .footer-contact h4 {
  margin-bottom: 15px;
}

.footer-links p, .footer-policies p, .footer-contact p {
  margin: 5px 0;
}

.footer-links a, .footer-policies a, .footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover, .footer-policies a:hover, .footer-contact a:hover {
  color: #1e90ff;
}

.footer-logo img {
  width: 120px;
  margin-top: 10px;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.social-icons a svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: 0.3s;
}

.social-icons a:hover svg {
  fill: #1e90ff;
}

.copy {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width:768px){
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width:480px){
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
  }
  .footer-about, .footer-links, .footer-policies, .footer-contact {
    justify-self: center;
  }
  .footer-about .footer-logo img {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .footer-about .footer-logo img {
    width: 70px;
  }
}
.footer-social-icon {
  display: inline-block;
  margin-right: 12px;
  transition: transform 0.3s, fill 0.3s;
}

.footer-social-icon svg path {
  fill: #ccc;
  transition: fill 0.3s;
}

.footer-social-icon:hover svg path {
  fill: #fff;
  transform: scale(1.1);
}

.footer-social {
  margin-top: 15px;
}


/* =========================
   9. RESPONSIVE (MOBILE)
========================= */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 28px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* ================= STICKY CTA BAR ================= */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0b1c2d;
  color: #fff;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9998;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.sticky-cta p {
  margin: 0;
  font-size: 15px;
}

.sticky-btn {
  background: #ff6a00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.sticky-btn:hover {
  background: #e55d00;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .sticky-cta {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .sticky-cta p {
    font-size: 14px;
  }
}

/* INTERNSHIP */
.home-internship-teaser {
  background: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
  border-left: 4px solid #0d6efd;
  margin-top: 50px;
}

.home-internship-teaser .small-heading {
  font-size: 14px;
  color: #0d6efd;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.home-internship-teaser h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.home-internship-teaser p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.home-internship-teaser .btn-outline {
  background: transparent;
  color: #0d6efd;
  border: 2px solid #0d6efd;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
/*WHY AUDIT*/
/* ================= WHY AUDIT SECTION ================= */

.why-audit {
  background: #f5f8ff;
  padding: 60px 20px;
  text-align: center;
}

.why-audit .container {
  max-width: 900px;
  margin: 0 auto;
}

.why-audit h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 15px;
}

.why-audit p {
  font-size: 17px;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.why-audit ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.why-audit ul li {
  font-size: 16px;
  color: #222;
  margin: 12px 0;
  position: relative;
  padding-left: 30px;
  text-align: left;
}

/* ✅ Add check mark before each li */
.why-audit ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: 700;
}

.why-audit .btn-outline {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid #0d6efd;
  color: #0d6efd;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-audit .btn-outline:hover {
  background: #0d6efd;
  color: #fff;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
  .why-audit h2 {
    font-size: 26px;
  }

  .why-audit p {
    font-size: 16px;
  }

  .why-audit ul li {
    font-size: 15px;
    padding-left: 25px;
  }

  .why-audit .btn-outline {
    padding: 10px 22px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .why-audit h2 {
    font-size: 22px;
  }

  .why-audit p {
    font-size: 15px;
  }

  .why-audit ul li {
    font-size: 14px;
    padding-left: 20px;
  }

  .why-audit .btn-outline {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/*FINAL HOME CTA */
/* ================= FINAL HOME CTA ================= */

.final-home-cta {
  background: linear-gradient(135deg, #0d6efd 0%, #3a8dff 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 60px 0;
}

.final-home-cta .container {
  max-width: 900px;
  margin: 0 auto;
}

.final-home-cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.final-home-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e0eaff;
}

.final-home-cta a.btn {
  display: inline-block;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  margin: 8px 10px;
  transition: all 0.3s ease;
}

.final-home-cta a.btn-primary {
  background: #fff;
  color: #0d6efd;
  border: none;
}

.final-home-cta a.btn-primary:hover {
  background: #e6e6e6;
}

.final-home-cta a.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.final-home-cta a.btn-outline:hover {
  background: #fff;
  color: #0d6efd;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
  .final-home-cta h2 {
    font-size: 26px;
  }

  .final-home-cta p {
    font-size: 16px;
  }

  .final-home-cta a.btn {
    padding: 12px 25px;
    margin: 6px 5px;
  }
}

@media (max-width: 480px) {
  .final-home-cta h2 {
    font-size: 22px;
  }

  .final-home-cta p {
    font-size: 15px;
  }

  .final-home-cta a.btn {
    padding: 10px 20px;
    font-size: 14px;
    margin: 5px 0;
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
/*trust section*/
/* ================= 4-CARD TRUST SECTION ================= */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
  border-radius: 12px;
  margin: 60px 0;
  text-align: center;
}

.grid .card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.grid .card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 15px;
}

.grid .card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.grid .card .service-cta {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 6px;
  background: #0d6efd;
  color: #fff;
  transition: all 0.3s ease;
}

.grid .card .service-cta:hover {
  background: #0751c3;
  color: #fff;
}

/* ================= HIGHLIGHT 4th CARD ================= */
.centered-card {
  grid-column: span 2;
  background: #0d6efd;
  color: #fff;
}

.centered-card h3,
.centered-card p {
  color: #fff;
}

.centered-card .service-cta {
  background: #fff;
  color: #0d6efd;
}

.centered-card .service-cta:hover {
  background: #e6e6e6;
  color: #0d6efd;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 1024px) {
  .centered-card {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 15px;
  }

  .grid .card {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .grid .card h3 {
    font-size: 20px;
  }

  .grid .card p {
    font-size: 14px;
  }

  .grid .card .service-cta {
    width: 100%;
    padding: 12px 0;
  }
}

/* ================= HOME CTA STRIP (Below Hero) ================= */

.home-cta-strip {
  background: linear-gradient(135deg, #0d6efd 0%, #3a8dff 100%); /* dynamic gradient */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 20px 20px; /* slightly rounded bottom to separate from next section */
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.home-cta-strip h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.home-cta-strip p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.5;
  color: #e0eaff;
}

.home-cta-strip a.btn {
  display: inline-block;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary button styling */
.home-cta-strip a.btn-primary {
  background: #fff;
  color: #0d6efd;
  border: none;
}

.home-cta-strip a.btn-primary:hover {
  background: #e6e6e6;
  color: #0d6efd;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
  .home-cta-strip {
    padding: 50px 15px;
  }

  .home-cta-strip h2 {
    font-size: 26px;
  }

  .home-cta-strip p {
    font-size: 16px;
  }

  .home-cta-strip a.btn {
    padding: 12px 25px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .home-cta-strip h2 {
    font-size: 22px;
  }

  .home-cta-strip p {
    font-size: 15px;
  }

  .home-cta-strip a.btn {
    display: block;
    width: 80%;
    margin: 10px auto 0 auto;
    padding: 12px 0;
  }
}

/* ================= INTERNSHIP SECTION ================= */
#internship {
  padding: 60px 20px;
  background: #f9f9f9;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

#internship h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: #0d6efd;
}

#internship .subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #555;
}

#internship .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

#internship .card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#internship .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

#internship .card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0d6efd;
}

#internship .card ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

#internship .card p {
  font-size: 14px;
  line-height: 1.6;
}

#internship .btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #0d6efd;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

#internship .btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  #internship h2 {
    font-size: 24px;
  }

  #internship .subtitle {
    font-size: 15px;
  }

  #internship .grid {
    grid-template-columns: 1fr;
  }

  #internship .card {
    padding: 20px 15px;
  }

  #internship .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* ================= INTERNSHIP PAGE ================= */
/* ================= GENERAL ================= */
.internship-container {
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 50px 20px;
}

.internship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.internship-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.internship-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

/* ================= HERO ================= */
.internship-hero {
  background: #0d6efd;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.internship-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.internship-hero-subtitle {
  margin-top: 15px;
  font-weight: 500;
}

.internship-hero-buttons .internship-btn {
  margin: 10px 10px 0 0;
}

/* ================= BUTTONS ================= */
.internship-btn {
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.internship-btn-primary {
  background: #ff5722;
  color: #fff;
  border: none;
}

.internship-btn-outline {
  background: transparent;
  color: #ff5722;
  border: 2px solid #ff5722;
}

.internship-text-center {
  text-align: center;
}

.internship-paid-program {
  font-weight: 600;
  color: #ff5722;
}

/* ================= FAQ ================= */
.internship-faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* ================= FORM ================= */
.internship-apply-form input,
.internship-apply-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.internship-apply-form button {
  width: 100%;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .internship-hero-content h1 {
    font-size: 2rem;
  }

  .internship-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= MONETARY CTA ================= */
.internship-cta-heading {
  font-size: 1.8rem;
  color: #0d6efd; /* blue = trust + growth */
  margin-bottom: 10px;
  font-weight: 700;
}

.internship-cta-sub {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

.hire-cta {
  background: linear-gradient(90deg, #0d6efd, #198754); /* blue to green = trust + profit */
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
}

.hire-cta a.internship-btn {
  margin-top: 15px;
  font-size: 1.1rem;
  padding: 12px 25px;
  border-radius: 8px;
  transition: 0.3s;
}

.hire-cta a.internship-btn:hover {
  background: #ffc107; /* golden = profit */
  color: #000;
}
/* ================= HIRE CTA ================= */
.hire-cta {
  background: linear-gradient(90deg, #0d6efd, #198754); /* blue → green = trust + growth */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 30px 0;
}

.hire-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hire-cta p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 25px auto;
}

.hire-cta a.internship-btn {
  display: inline-block;
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 8px;
  background: #ffc107; /* golden = profit */
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.hire-cta a.internship-btn:hover {
  background: #ffd54f;
  transform: scale(1.05);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
  .hire-cta {
    padding: 40px 15px;
    border-radius: 8px;
  }

  .hire-cta h2 {
    font-size: 1.6rem;
  }

  .hire-cta p {
    font-size: 1rem;
  }

  .hire-cta a.internship-btn {
    width: 100%;
    font-size: 1rem;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .hire-cta h2 {
    font-size: 1.4rem;
  }

  .hire-cta p {
    font-size: 0.95rem;
  }
}
/*client*/
.home-portfolio-strip{
  padding:80px 0;
  background:#0f172a;
  color:#fff;
  text-align:center;
}

.home-portfolio-strip .section-sub{
  max-width:720px;
  margin:12px auto 40px;
  opacity:.9;
}

.home-portfolio-logos{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(110px,1fr));
  gap:25px;
  align-items:center;
  margin-bottom:35px;
}

.home-portfolio-logos img{
  max-width:100%;
  height:auto;
  opacity:.55;
  filter:grayscale(100%);
  transition:.3s ease;
}

.home-portfolio-logos img:hover{
  opacity:1;
  filter:none;
  transform:scale(1.05);
}

.home-portfolio-cta{
  margin-top:10px;
}

/*CLIENT LOGOS*/
.client-logos-grid{
  background:#ffffff;
  padding:40px 20px;

  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap:30px;
  align-items:center;
}

.client-logo-item{
  display:flex;
  align-items:center;
  justify-content:center;
}

.client-logo-item img{
  max-width:100%;
  max-height:60px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:0.85;
  transition:all .3s ease;
}

.client-logo-item img:hover{
  filter:none;
  opacity:1;
}
/*About Us*/
/* ===========================
   ABOUT US PAGE – EASYGOLIFE
=========================== */

.about-hero{
  padding:90px 20px 60px;
  background:#0f172a;
  color:#fff;
  text-align:center;
}

.about-hero h1{
  font-size:40px;
  margin-bottom:10px;
}

.about-tagline{
  font-size:18px;
  opacity:.9;
}

/* Intro */

.about-intro{
  padding:60px 20px;
  background:#ffffff;
}

.about-intro p{
  max-width:900px;
  margin:0 auto 15px;
  font-size:17px;
  line-height:1.7;
  color:#333;
}

/* Highlights */

.about-highlights{
  background:#f8fafc;
  padding:70px 20px;
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.about-card{
  background:#ffffff;
  padding:28px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.about-card h3{
  font-size:18px;
  margin-bottom:10px;
  color:#0f172a;
}

.about-card p{
  font-size:15px;
  line-height:1.6;
  color:#444;
}

/* Founder / leadership */

.about-founder{
  padding:70px 20px;
  background:#ffffff;
}

.founder-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
  align-items:start;
}

.founder-text h2{
  margin-bottom:12px;
  color:#0f172a;
}

.founder-text p{
  margin-bottom:12px;
  line-height:1.7;
  color:#444;
}

.founder-box{
  background:#0f172a;
  color:#fff;
  padding:28px;
  border-radius:16px;
}

.founder-box h4{
  margin-bottom:12px;
  font-size:18px;
}

.founder-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.founder-box li{
  padding:8px 0;
  font-size:14px;
  border-bottom:1px solid rgba(255,255,255,.15);
}

.founder-box li:last-child{
  border-bottom:none;
}

/* CTA */

.about-cta{
  padding:70px 20px;
  background:linear-gradient(135deg,#2563eb,#0ea5e9);
  color:#fff;
  text-align:center;
}

.about-cta h2{
  margin-bottom:10px;
  font-size:28px;
}

.about-cta p{
  max-width:750px;
  margin:0 auto 20px;
  line-height:1.6;
}

.about-cta .btn-primary{
  display:inline-block;
  padding:12px 26px;
  background:#ffffff;
  color:#0f172a;
  border-radius:30px;
  font-weight:600;
  text-decoration:none;
}

/* Responsive */

@media(max-width:900px){
  .founder-grid{
    grid-template-columns:1fr;
  }

  .about-hero h1{
    font-size:30px;
  }
}

/* =========================
   SERVICES – EASYGOLIFE
========================= */

.services-hero{
  padding:90px 20px 70px;
  background:#0f172a;
  color:#fff;
  text-align:center;
}

.services-hero h1{
  font-size:38px;
  margin-bottom:10px;
}

.services-hero .subtitle{
  margin-bottom:25px;
  font-size:17px;
  opacity:.9;
}

.btn-primary{
  display:inline-block;
  padding:12px 26px;
  background:#2563eb;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}


/* main section */

.services-section{
  padding:70px 20px;
  background:#ffffff;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.service-card{
  background:#f8fafc;
  border-radius:16px;
  padding:28px;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
}

.service-card h3{
  margin-bottom:10px;
  color:#0f172a;
  font-size:18px;
}

.service-card p{
  font-size:15px;
  line-height:1.6;
  color:#444;
}

.service-card ul{
  padding-left:18px;
  margin:12px 0 10px;
  color:#444;
  font-size:14px;
}

.service-card ul li{
  margin-bottom:6px;
}

.price{
  margin-top:auto;
  font-weight:600;
  color:#0f172a;
  margin-bottom:10px;
}

.card-cta{
  font-size:14px;
  text-decoration:none;
  color:#2563eb;
  font-weight:600;
}


/* trust note */

.services-note{
  padding:40px 20px;
  background:#f1f5f9;
  text-align:center;
}

.services-note p{
  max-width:900px;
  margin:auto;
  font-size:15px;
  line-height:1.6;
  color:#333;
}


/* bottom CTA */

.services-cta{
  padding:70px 20px;
  background:linear-gradient(135deg,#2563eb,#0ea5e9);
  color:#fff;
  text-align:center;
}

.services-cta h2{
  font-size:28px;
  margin-bottom:10px;
}

.services-cta p{
  max-width:750px;
  margin:0 auto 20px;
  line-height:1.6;
}

.services-cta .btn-primary{
  background:#ffffff;
  color:#0f172a;
}


/* responsive */

@media(max-width:768px){
  .services-hero h1{
    font-size:28px;
  }
}

/*BLOG*/
/* =========================
   BLOG – EASYGOLIFE
========================= */

.blog-hero{
  padding:90px 20px 60px;
  background:#ffffff;
  text-align:center;
}

.blog-hero h1{
  font-size:38px;
  margin-bottom:8px;
  color:#0f172a;
}

.blog-hero .subtitle{
  font-size:16px;
  color:#555;
}


/* blog list */

.blog-section{
  padding:60px 20px;
  background:#f8fafc;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.blog-card{
  background:#ffffff;
  padding:28px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.blog-card h3{
  font-size:18px;
  margin-bottom:10px;
  color:#0f172a;
}

.blog-card p{
  font-size:15px;
  line-height:1.6;
  color:#444;
  margin-bottom:14px;
}

.read-link{
  font-size:14px;
  font-weight:600;
  color:#2563eb;
  text-decoration:none;
}


/* soft CTA */

.blog-soft-cta{
  padding:50px 20px;
  background:#ffffff;
  text-align:center;
}

.blog-soft-cta p{
  font-size:16px;
  margin-bottom:12px;
  color:#333;
}

.btn-outline{
  display:inline-block;
  padding:10px 24px;
  border:2px solid #2563eb;
  color:#2563eb;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}


/* responsive */

@media(max-width:768px){
  .blog-hero h1{
    font-size:28px;
  }
}
/*AUDIT*/
/* =================== Growth Audit Page CSS =================== */

/* General Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* =================== Hero Section =================== */
.audit-hero {
  background: #f9f9f9;
  text-align: center;
  padding: 80px 20px;
}

.audit-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #111;
}

.audit-hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.cta-buttons a {
  display: inline-block;
  margin: 10px 15px 0 15px;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-outline {
  border: 2px solid #007bff;
  color: #007bff;
}

.btn-outline:hover {
  background: #007bff;
  color: #fff;
}

/* =================== Pain Section =================== */
.audit-pain {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.audit-pain h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.audit-pain ul.audit-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 600px;
  color: #555;
}

.audit-pain ul.audit-list li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* =================== Deliverables Section =================== */
.audit-deliverables {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.audit-deliverables h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.audit-deliverables .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
}

.audit-deliverables .card {
  background: #fff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-size: 1rem;
  color: #333;
}

/* Note under cards */
.audit-note {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #777;
}

/* =================== Trust Section =================== */
.audit-trust {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.audit-trust h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
}

.trust-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  font-size: 1rem;
  color: #111;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

/* =================== Form Section =================== */
.audit-form-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.audit-form-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.audit-form {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}

.audit-form input,
.audit-form select {
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.audit-form button {
  margin-top: 15px;
}

.privacy-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 5px;
  text-align: left;
}

/* Next Steps */
.audit-next-steps {
  margin-top: 40px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.audit-next-steps h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.audit-next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audit-next-steps ul li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #555;
}

/* =================== Responsive =================== */
@media screen and (max-width: 768px) {
  .audit-hero h1 {
    font-size: 2rem;
  }
  .audit-deliverables .grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .cta-buttons a {
    width: 100%;
    margin: 10px 0 0 0;
  }
}

/* =================== Privacy Policy Page CSS =================== */
.page-section {
  padding: 60px 20px;
  background: #f9f9f9;
  color: #111;
  line-height: 1.7;
}

.page-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
}

.page-section .subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.policy-content h3 {
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #222;
}

.policy-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

.policy-content a {
  color: #007bff;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .page-section h2 {
    font-size: 2rem;
  }
  .policy-content {
    padding: 30px 20px;
  }
}

/* =================== Terms & Conditions Page CSS =================== */
.page-section {
  padding: 60px 20px;
  background: #f9f9f9;
  color: #111;
  line-height: 1.7;
}

.page-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
}

.page-section .subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.policy-content h3 {
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #222;
}

.policy-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

.policy-content a {
  color: #007bff;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .page-section h2 {
    font-size: 2rem;
  }
  .policy-content {
    padding: 30px 20px;
  }
}
/* =================== Cookie Policy Page CSS =================== */
.page-section {
  padding: 60px 20px;
  background: #f9f9f9;
  color: #111;
  line-height: 1.7;
}

.page-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
}

.page-section .subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.policy-content h3 {
  font-size: 1.3rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #222;
}

.policy-content p, 
.policy-content ul {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

.policy-content ul li {
  margin-bottom: 8px;
}

.policy-content a {
  color: #007bff;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .page-section h2 {
    font-size: 2rem;
  }
  .policy-content {
    padding: 30px 20px;
  }
}

/* ========== Footer ========== */
footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Poppins, sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-about h3,
.footer-links h4,
.footer-policies h4,
.footer-contact h4 {
  margin-bottom: 15px;
}

.footer-links p,
.footer-policies p,
.footer-contact p {
  margin: 5px 0;
}

.footer-links a,
.footer-policies a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-policies a:hover,
.footer-contact a:hover {
  color: #1e90ff;
}

.footer-logo img {
  width: 120px;
  margin-top: 10px;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.social-icons a svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: all 0.3s;
}

.social-icons a:hover svg {
  fill: #1e90ff;
  transform: scale(1.2);
}

.copy {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.7;
}

/* ========== Contact Page ========== */
.contact-hero {
  background: #1e90ff;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-info {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-info .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-info p {
  margin: 5px 0;
  line-height: 1.6;
}

.contact-info a {
  color: #1e90ff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Google Map responsive */
.contact-info iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .contact-hero h1 {
    font-size: 2rem;
  }
  .contact-hero p {
    font-size: 1rem;
  }
  .contact-info .grid {
    grid-template-columns: 1fr;
  }
}
/* ================= Contact Page ================= */

/*section {*/
/*  padding: 10px 0;*/
/*  background: #f9f9f9;*/
/*}*/

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
}

.subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* ================= Cards ================= */
.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
}

.card p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
}

.card a {
  color: #007bff;
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

/* ================= Form ================= */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #007bff;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #0056b3;
}

/* ================= Social Icons ================= */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a svg {
  width: 28px;
  height: 28px;
  fill: #555;
  transition: fill 0.3s;
}

.social-icons a:hover svg {
  fill: #007bff;
}

/* ================= Map ================= */
.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .social-icons {
    justify-content: center;
  }
}
/* ================= Contact Hero ================= */
.contact-hero {
  background: #f5f7fa; /* light background */
  padding: 80px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #111;
}

.contact-hero .contact-tagline {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.contact-hero .btn {
  margin: 0 10px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
}

.contact-hero .btn-primary {
  background: #007bff;
  color: #fff;
  border: none;
  transition: background 0.3s;
}

.contact-hero .btn-primary:hover {
  background: #0056b3;
}

.contact-hero .btn-outline {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  transition: all 0.3s;
}

.contact-hero .btn-outline:hover {
  background: #007bff;
  color: #fff;
}

