/* ==========================
   GLOBAL STYLES
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "  Times New Roman";
}

body {
  background-color: #ffffff;
  color: #001f3f;
  line-height: 1.6;
  font-family: " Times New Roman ";
  
}

/* ==========================
   NAVBAR
========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #001f3f;
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00aaff;
}

/* ==========================
   HERO SECTION
========================== */
.hero {
  background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)),
    url('https://images.unsplash.com/photo-1568605114967-8130f3a36994')
      center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 1.5rem;
}

.hero-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* CONTACT HERO */
.contact-hero {
  background: linear-gradient(rgba(0, 31, 63, 0.8), rgba(0, 31, 63, 0.8)),
    url('https://images.unsplash.com/photo-1493809842364-78817add7ffb')
      center/cover no-repeat;
}

/* ==========================
   SECTIONS
========================== */
.section {
  padding: 4rem 1.5rem;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  color: #001f3f;
  margin-bottom: 2rem;
  position: relative;
}

.section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #001f3f;
  margin: 0.5rem auto 0;
}

/* ==========================
   SERVICE CARDS
========================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: 0.3s ease;
}

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

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  padding: 1rem;
  background: #fff;
  color: #001f3f;
}

/* ==========================
   FAQ SECTION
========================== */
.faq-item {
  max-width: 800px;
  margin: 1rem auto;
  background: #f1f5f9;
  padding: 1rem 1.5rem;
  border-left: 5px solid #001f3f;
  text-align: left;
  border-radius: 6px;
}

/* ==========================
   NEWS SECTION
========================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: 0.3s ease;
}

.news-card:hover {
  transform: scale(1.02);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card h3 {
  color: #001f3f;
  margin: 1rem;
}

.news-card p {
  margin: 0 1rem 1rem;
}

.read-more {
  display: block;
  margin: 0 1rem 1rem;
  padding: 0.6rem 1rem;
  background: #001f3f;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.read-more:hover {
  background: #003366;
}

/* ==========================
   CONTACT FORM
========================== */
.contact-form form {
  max-width: 500px;
  margin: 0 auto;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  display: block;
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #001f3f;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  width: 100%;
  padding: 0.8rem;
  background: #001f3f;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #003366;
}

/* ==========================
   FOOTER
========================== */
 



/* ==========================
   FLOATING BUTTONS
========================== */
.float-btn {
  position: fixed;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  right: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 0.3s ease;
}

.float-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.whatsapp {
  bottom: 90px;
  background: #25d366;
}

.location {
  bottom: 20px;
  background: #001f3f;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* ==========================
   POPUP
========================== */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  color: #001f3f;
}

.popup-content button {
  background: #001f3f;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 5px;
  margin-top: 1rem;
  cursor: pointer;
}

.popup-content button:hover {
  background: #003366;
}

/* ==========================
   RESPONSIVE DESIGN
========================== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hero-content h2 {
    font-size: 1.6rem;
  }

  .section {
    padding: 3rem 1rem;
  }
}






/* ===== ABOUT SECTION ===== */
.about {
  background: #f7faff;
  padding: 80px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-container img {
  width: 420px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.about-text {
  flex: 1;
  color: #002244;
  font-size: 17px;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 15px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #001b44;
  color: #fff;
  padding: 80px 20px;
}

.faq-section h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 900px;
  margin: 20px auto;
  background: #022b6b;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s, background 0.3s;
}

.faq-item:hover {
  transform: translateY(-4px);
  background: #023a8b;
}

.faq-item h4 {
  color: #ffffff;
  margin-bottom: 8px;
}

.faq-item p {
  color: #d6e2ff;
  line-height: 1.7;
}






/* --- About Page Banner --- */
.about-hero {
  background: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?auto=format&fit=crop&w=1350&q=80") center/cover no-repeat;
  color: #fff;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.about-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}
.about-hero h2 {
  font-size: 2.2rem;
  color: #fff;
}
.about-hero p {
  font-size: 1.1rem;
  color: #f3f3f3;
  margin-top: 10px;
}

/* --- About Page Text Sections --- */
.about-section {
  padding: 60px 10%;
  background: #fafafa;
  color: #333;
  line-height: 1.8;
}
.about-section h2 {
  font-size: 1.8rem;
  color: #022b6b;
  margin-top: 40px;
}
.about-section p {
  font-size: 1.05rem;
  margin-top: 15px;
  text-align: justify;
}



 








 /* Contact Page Hero with House Background */
.contact-hero {
  background: url("https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1350&q=80") center/cover no-repeat;
  color: #fff;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
}
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.contact-hero .hero-content {
  position: relative;
  z-index: 2;
}

/* Contact Form Container */
.contact-section {
  padding: 60px 10%;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
}
.contact-container {
  background: #fff;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 12px;
}
.contact-container h2 {
  text-align: center;
  color: #022b6b;
  margin-bottom: 20px;
}
.contact-container label {
  display: block;
  margin-top: 15px;
  color: #022b6b ;
  font-weight: 600;
}
.contact-container input,
.contact-container textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.contact-container button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #022b6b;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s ease;
}
.contact-container button:hover {
  background-color: #022b6b;
}

/* Floating Buttons */
.float-btn.whatsapp img,
.float-btn.location img {
  width: 50px;
  height: 50px;
  border-radius: 25%;
}



 
 
 
 
 
 
 
 
 
 
 
 
 /* ========== FOOTER ========== */
footer {
  background: #002244 ;
  color: white;
  text-align: center;
  padding: 30px 10%;
}

.footer-info p { margin: 5px 0;
font-size: 1.rem;
  
  
}

/* footer social icons already styled above; keep behavior */
.social-icons { margin: 15px 0; }

.social-icons a {
  color: white; font-size: 1.8em; margin: 0 10px; transition: color .25s, transform .25s;
  
  justify-content: center;
  text-align: center;
  
}

.social-icons a:hover { color: #ffb703; transform: scale(1.08); }

 
 
 
 
 
 
 
 
 
 
 
 
 


 footer-bottom {
  max-width: 1100px;
  margin: 25px auto 0;
  padding: 15px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #bdbdbd;
  border-top: 1px solid rgba(255,255,255,0.15);
  
  animation: bounce 0.4s infinite ease-in-out;
  
  
  
  
}




/* Slide in from right */
@keyframes slideIn {
  from {
    right: -120px;
    opacity: 0;
  }
  to {
    right: 25px;
    opacity: 1;
  }
}

/* Gentle bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}







.footer-social {
  display: flex;
  gap: 17px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-social a {
  width: 50px;
  height: 50px;
  border-radius: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  transition: 0.3s;
}













/* Brand colors */
.facebook { background: #1877F2; }
.twitter { background: #000000; }
.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  
  justify-content: center;
  justify-items: center;
  text-align: center;
  
}
.youtube { background: #FF0000; }
.tiktok { background: #000000; }
.linkedin { background: #0077B5; }
.whatsapp { background: #25D366; 
  justify-content: center;
  justify-items: center;
  text-align: center;
  
  
}

/* Hover animation */
.footer-social a:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  opacity: 0.9;
}















 /* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: -120px; /* start hidden for slide-in */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  animation: slideIn 1.2s ease-out forwards;
}

/* Individual buttons */
.floating-buttons a {
  width: 40px;
  height: 40px;
  border-radius: 15%;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: bounce 0.4s infinite ease-in-out;
  
  border-radius: 15%;
  
  
  
}

.floating-buttons a img {
  width: 28px;
  height: 28px;
  border-radius: 25%;
}

/* Color accents for each */
.floating-buttons a.whatsapp {
  background-color: white;
}
.floating-buttons a.call {
  background-color:  white;
}
.floating-buttons a.location {
  background-color: white;
}

/* Hover pop effect */
.floating-buttons a:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Slide in from right */
@keyframes slideIn {
  from {
    right: -120px;
    opacity: 0;
  }
  to {
    right: 25px;
    opacity: 1;
  }
}

/* Gentle bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
 
 
 
 
 
 
 
 
 /* Why Choose Us Section */
.why-choose {
  padding: 60px 20px;
  background-color: #f5f7fa; /* soft background to contrast with your hero section */
  text-align: center;
}

.why-choose h2 {
  font-size: 2rem;
  color: #002244;
  margin-bottom: 40px;
  font-weight: 700;
}

.why-choose .reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.why-choose .reason {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 30px 20px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-choose .reason:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.why-choose .reason i {
  font-size: 3rem;
  color: #002244;
  margin-bottom: 15px;
}

.why-choose .reason h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #002244;
}

.why-choose .reason p {
  font-size: 1rem;
  color:#002244;
  line-height: 1.6;
}
 
 