:root {
  --primary: #0B2A4A;       /* Deep navy */
  --accent: #DC3545;        /* Vibrant red */
  --bg-white: #ffffff;
  --text-dark: #212529;
  --light-gray: #F8F9FA;
  --card-bg: #ffffff;
  --card-shadow: rgba(0,0,0,0.08);
  --input-bg: rgba(255, 255, 255, 0.9);
  --input-border: #ccc;
  --button-hover: #0a1f3a;
  --transition-speed: 0.4s;
}


/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 100px 0;
}

.light-bg {
  background: var(--light-gray);
}

.center {
  text-align: center;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--accent);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px 25px;
  font-weight: 500;
  font-size: 0.95rem;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  background: var(--primary);
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: background var(--transition-speed);
}

.header:hover {
  background: var(--button-hover);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
  transition: all var(--transition-speed);
}

.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--accent);
  left: 0;
  bottom: -6px;
  transition: width var(--transition-speed);
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: var(--accent);
}

/* ===== Hero Section ===== */
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform var(--transition-speed);
}

.hero img:hover {
  transform: scale(1.03);
}

/* ===== Trust Section ===== */
.trust-bar {
  background: var(--primary);
  color: white;
  padding: 40px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  margin: 30px 0;
}

.trust-grid {
  display: grid;
  gap: 25px;
  text-align: center;
  font-weight: 500;
}

.trust-grid div {
  font-size: 1rem;
  transition: transform var(--transition-speed);
}

.trust-grid div:hover {
  transform: translateY(-5px);
  color: var(--accent);
}

/* ===== Buttons ===== */
.btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: all var(--transition-speed);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--accent);
  color: white;
}

.btn-accent:hover {
  background: #b22b3c;
  transform: translateY(-3px);
}

/* ===== Inputs / Contact Form ===== */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  transition: all var(--transition-speed);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(220,53,69,0.2);
}

/* Modern Form Button */
.contact-form button {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  background: var(--primary);
  color: white;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.contact-form button:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220,53,69,0.3);
}

/* ===== Responsive Grids ===== */
@media (min-width: 768px) {
  .hero-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 2fr 3fr;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* Services */
.services-grid {
  display: grid;
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

/* ===== About Us Cards ===== */
.about-grid {
  display: grid;
  gap: 30px;
  margin-top: 50px;
}

.about-card {
  background: #0B2A4A;
  color: white;
  padding: 35px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
}

.about-icon {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.about-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.about-card p {
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Desktop */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ===== Materials Section ===== */
.materials-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  padding: 80px 0;
}

/* Image Styling */
.materials-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.materials-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Content Styling */
.materials-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 30px;
}

.materials-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 2;
}

.materials-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: default;
}

/* Custom icons on the left */
.materials-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s ease, color 0.3s ease;
}

.materials-list li:hover::before {
  transform: scale(1.3);
  color: var(--primary);
}

.materials-list li:hover {
  transform: translateX(5px);
  color: var(--primary);
}

/* Responsive layout */
@media (min-width: 768px) {
  .materials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .materials-content h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
}

/* Scroll Animation */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.2s; /* slight stagger */
}

.fade-in-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Modern Contact Section ===== */
#contact {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

/* Contact Form Card */
.contact-form {
  background: #f9fafc;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: var(--primary);
}

/* Inputs */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 42, 74, 0.1);
}

/* Submit Button */
.contact-form button {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  font-weight: 600;
}

/* Contact Info Card */
.contact-info {
  background: #0B2A4A;
  color: white;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-info p {
  margin-bottom: 18px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.6;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}


/* ===== Footer (Balanced & Professional) ===== */
.footer {
  background: #0B2A4A;
  color: #E6EDF3; /* softer white */
  padding: 60px 0 30px;
}

.footer h4 {
  color: #FFFFFF;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer p {
  color: #D1D9E0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 35px;
}

.footer a {
  color: #C9D4DF;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #FFFFFF;
}

.footer input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  margin-top: 10px;
}

.footer .copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #AEBBCC;
}

/* Desktop layout */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366; /* WhatsApp green */
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 10000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2.5s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.15);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  animation: none;
}

.whatsapp-btn svg {
  width: 40px;  /* Adjust size to fit button */
  height: 40px;
  fill: #ffffff;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Animations – FIXED */
.fade-in {
  opacity: 1; /* visible by default */
}

/* Responsive */
@media (min-width: 768px) {
  .hero-grid,
  .team-grid,
  .contact-grid,
  .materials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Modern Interactive Hover for Services Cards */
.service-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03); /* Lift and slight scale */
  box-shadow: 0 25px 50px rgba(0,0,0,0.15); /* Bigger shadow */
  background: linear-gradient(135deg, #0B2A4A, #DC3545); /* Gradient pop */
  color: white; /* Ensure text is readable on gradient */
}

.service-card:hover h3,
.service-card:hover p {
  color: white; /* Headings and paragraph white on hover */
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  transition: transform 0.5s ease, color 0.5s ease;
}

.service-card:hover .icon {
  transform: scale(1.4); /* Icon pops */
  color: white;          /* Icon turns white */
}

/* Ensure mobile scaling is smooth */
@media (max-width: 767px) {
  .service-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  }

  .service-card:hover .icon {
    transform: scale(1.2);
  }
}
#services h2 {
  font-size: 3rem;      /* Large heading */
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--primary);
  text-align: center;
}

.service-image {
  width: 100%;
  height: 160px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Image zoom on hover */
.service-card:hover .service-image img {
  transform: scale(1.15);
}

/* ===== Why Choose Us Section ===== */

.why-choose-us {
  background-color: #0B2A4A;
  color: #FFFFFF;
  border-radius: 20px;
  padding: 80px 0;
}

.why-grid {
  display: grid;
  gap: 50px;
  align-items: center;
}

.why-logo img {
  width: 100%;
  max-width: 200px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.why-logo img {
  width: 100%;
  max-width: 300px; /* increase from 200px to 600px */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}


.why-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 35px;
}

.why-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 2.2;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 20px;
  border-radius: 12px;
  background: #FFFFFF;
  color: #0B2A4A;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: default;
}

.why-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.why-list .icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  color: #DC3545;
  transition: transform 0.3s ease;
}

.why-list li:hover .icon {
  transform: scale(1.15);
}

/* Scroll Animation */
.fade-in-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr 2fr;
  }

  .why-content h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 767px) {
  .why-content h1 {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
}

New year code here 



/* ===== Compact Modern Location Section ===== */
.location-section {
  background: linear-gradient(180deg, #f7f9fc, #eef2f7);
  padding: 40px 16px; /* reduced */
}

.location-section .container {
  max-width: 800px; /* smaller width */
  margin: auto;
}

.location-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px; /* reduced */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.location-badge {
  display: inline-block;
  padding: 4px 10px;
  background: #0b3a66;
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.65rem; /* smaller */
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.location-card h2 {
  font-size: 1.4rem; /* smaller heading */
  margin-bottom: 6px;
  color: #0b3a66;
}

.location-desc {
  color: #555;
  max-width: 520px;
  margin-bottom: 16px;
  line-height: 1.5;
  font-size: 0.9rem;
}

.map-container {
  position: relative;
  width: 100%;
  padding-top: 45%; /* shorter map */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.location-footer strong {
  color: #0b3a66;
}

.location-btn {
  padding: 8px 16px; /* smaller button */
  background: #0b3a66;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(11, 58, 102, 0.3);
}
