html {
  scroll-behavior: smooth;
}

/* ====== Global Styles ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}


/* === Social Media Icons on Hero Page === */
.social-hero-icons {
  position: fixed;
  top: 12%;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 10px;
  border-radius: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: right 0.5s ease, opacity 0.5s ease;
}

.social-hero-icons a {
  color: #0056b3;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-hero-icons a:hover {
  color: #007bff;
  transform: scale(1.2);
}

/* Hide icons when scrolling down (slide right) */
.social-hero-icons.hide {
  right: -100px;
  opacity: 0;
}
/* ===== Social Media Icons - Homepage Only ===== */
.social-icons-homepage {
  position: fixed;
  top: 100px; /* right below navbar */
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 12px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: right 0.5s ease, opacity 0.5s ease;
}

.social-icons-homepage a {
  color: #0056b3;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons-homepage a:hover {
  color: #007bff;
  transform: scale(1.2);
}

/* Slide right when hidden */
.social-icons-homepage.hide {
  right: -80px;
  opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .social-hero-icons {
    right: 10px;
    padding: 8px;
    gap: 10px;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white; /* or your chosen color */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: transform 0.4s ease-in-out; /* Smooth transition */
}

/* When user scrolls down */
.navbar.hide {
  transform: translateY(-100%); /* Moves navbar up smoothly */
}

/* ===== Navigation Bar Styling ===== */
.navbar {
  position: fixed;
  top: -20;
  width: 100%;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 80px;
  box-shadow: 0 2px 8px rgba(0, 0, 50, 0.1);
  z-index: 1000;
  transition: top 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}

/* When hidden */
.navbar.hide {
  top: -100px;
  opacity: 0;
}

/* Logo */
.navbar .logo img {
  height: 55px;
  width: auto;
}

/* Navigation Links */
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #002060;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding-bottom: 4px;

}

.navbar .nav-links a:hover {
  color: #007bff;

}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 20px;
  }
  .navbar .nav-links {
    gap: 20px;
    font-size: 0.9rem;
  }
  .navbar .logo img {
    height: 45px;
  }
}
/* ===== Navigation Bar ===== */
.navbar {
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  transition: top 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  width: 150px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #002060;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

/* ===== Dropdown Menu ===== */
.dropdown .dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  top: 100%;
  left: 0;
  z-index: 999;
  padding: 10px 0;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #002060;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #007bff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: transparent;
  }

  .dropdown-content a {
    padding-left: 40px;
  }
}


section,
.products-section,
.product-details {
  padding-top: 120px;
}


/* Hero */
.hero {
  height: 100vh;
  background: url('images/Gemini_Generated_Image_i21v9fi21v9fi21v.png') no-repeat center center/cover;
  background-attachment: fixed;
  position: relative;
}
.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,40,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}
.hero .hero-content h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero .hero-content h2 {
  color: #ffcc00;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.hero .hero-content p {
  color: #f0f0f0;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}
.btn {
  background: #ffcc00;
  color: #003366;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: bold;
}
.btn:hover {
  background: #ffd633;
}
/* ===== Products Section ===== */
.products-section {
  padding: 100px 60px;
  text-align: center;
  background-color: #f4f8fc;
}

.products-section h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Container for product cards */
.products-container {
  display: flex;
  justify-content: center;     /* centers the cards horizontally */
  align-items: stretch;        /* makes both cards same height */
  gap: 40px;                   /* space between the cards */
  flex-wrap: nowrap;           /* keeps them side-by-side */
  max-width: 900px;            /* controls total width */
  margin: 0 auto;              /* centers the container */
}

/* Product Card Design */
.product-card {
  background-color: white;
  border: 2px solid #003366;
  border-radius: 12px;
  padding: 30px;
  width: 400px;                /* equal width */
  height: 380px;               /* equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Product Text */
.product-card h3 {
  font-size: 22px;
  color: #003366;
  margin-bottom: 15px;
}

.product-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

/* Button Style */
.more-btn {
  background-color: #003366;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.more-btn:hover {
  background-color: #007bff;
  transform: scale(1.05);
}

/* Hover Effect for Cards */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.2);
}

/* Responsive (stack only on mobile) */
@media (max-width: 900px) {
  .products-container {
    flex-wrap: wrap;      /* stack when screen is small */
  }
  .product-card {
    width: 90%;           /* full width on mobile */
    margin-bottom: 20px;
  }
}
/* ===== Product Details Page ===== */
.products-details {
  padding: 120px 60px;
  background-color: #f8f9fb;
}

.products-details h1 {
  text-align: center;
  font-size: 36px;
  color: #003366;
  margin-bottom: 50px;
  text-transform: uppercase;
}

/* Product Card Layout */
.product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 40px;
  margin-bottom: 50px;
  border-radius: 20px;
  display:flex;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image img {
  width: 280px;
  height: 280px;
  object-fit: contain;
}

.product-info {
  flex: 1;
  margin-left: 40px;
}

.product-info h2 {
  color: #003366;
  font-size: 26px;
  margin-bottom: 15px;
}

.product-info h3 {
  color: #007bff;
  margin-top: 20px;
  margin-bottom: 10px;
}

.product-info p {
  color: #333;
  line-height: 1.6;
}

.product-info ul {
  list-style: disc;
  margin-left: 20px;
  color: #444;
}

/* Responsive Design */
@media (max-width: 900px) {
  .product-card {
    flex-direction: column;
    text-align: center;
  }

  .product-image img {
    margin-bottom: 20px;
  }

  .product-info {
    margin-left: 0;
  }
}

/* ===== About Us Section ===== */
/* ===== About Section (Home Page) ===== */
.about-section {
  background: #ffffff;
  padding: 80px 10%;
}

.about-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.about-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

.about-content {
  flex: 2;
  min-width: 320px;
  color: #333;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}

.about-content strong {
  color: #003366;
}

/* Read More Button */
.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #003366;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #0055aa;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image img {
    max-width: 90%;
  }

  .about-content p {
    text-align: left;
  }
}
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 10%;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image img {
  width: 420px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  color: #0056b3;
  margin-bottom: 15px;
}

.about-content p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #0056b3;
}

/* ====== Product Section (Home & Products Page) ====== */

.products-section {
  padding: 120px 80px;
  background-color: #f8f9fb;
  text-align: center;
}

.products-section h1 {
  font-size: 36px;
  color: #003366;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ====== Product Grid Layout ====== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  justify-content: center;
}

/* ====== Product Card ====== */
.product-card {
  background-color: #ffffff;
  border: 2px solid #e6eaf0;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.1);
  padding: 40px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 51, 102, 0.15);
}

/* ====== Product Title ====== */
.product-card h2 {
  font-size: 24px;
  color: #003366;
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 2px solid #007bff;
  display: inline-block;
  padding-bottom: 5px;
}

/* ====== Product Description ====== */
.product-card p {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
  margin: 15px 0;
}

/* ====== Product Information List ====== */
.product-card ul {
  list-style: none;
  margin: 10px 0 20px 0;
  padding: 0;
  color: #333;
}

.product-card ul li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
  font-size: 15px;
}

.product-card ul li::before {
  content: "✔";
  color: #007bff;
  position: absolute;
  left: 0;
}

/* ====== Product Image ====== */
.product-card img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

/* ====== Product Button ====== */
.btn-more {
  background-color: #003366;
  color: white;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  align-self: center;
  margin-top: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-more:hover {
  background-color: #007bff;
  transform: scale(1.05);
}

/* ====== Product Details Page Layout ====== */
.product-detail {
  padding: 140px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background-color: #ffffff;
}

.product-detail img {
  width: 45%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-detail-info {
  width: 50%;
}

.product-detail-info h2 {
  color: #003366;
  font-size: 32px;
  margin-bottom: 20px;
}

.product-detail-info p {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

.product-detail-info ul {
  list-style: none;
  margin-top: 15px;
}

.product-detail-info ul li {
  margin: 8px 0;
  color: #333;
  padding-left: 18px;
  position: relative;
}

.product-detail-info ul li::before {
  content: "➤";
  color: #007bff;
  position: absolute;
  left: 0;
}

/* ====== Responsive Design ====== */
@media (max-width: 1024px) {
  .products-section {
    padding: 80px 40px;
  }

  .product-detail {
    flex-direction: column;
    text-align: center;
  }

  .product-detail img,
  .product-detail-info {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 25px;
  }
}


/* ===== Applications Section ===== */
#applications {
  padding: 80px 100px; /* Same padding as About Us & Founder */
  background-color: #f8faff;
  text-align: center;
}

#applications h2 {
  font-size: 2.3rem;
  color: #002060;
  margin-bottom: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Grid Layout */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: start;
}

/* Application Card */
.app-card {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #dce3f0;
  padding: 25px 20px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 32, 96, 0.1);
  transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 32, 96, 0.15);
}

/* Icons */
.app-card i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 12px;
}

/* Title */
.app-card h3 {
  font-size: 1.2rem;
  color: #002060;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Description */
.app-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

/* Responsive Layout */
@media (max-width: 768px) {
  #applications {
    padding: 60px 30px;
  }
  .app-card {
    max-width: 100%;
  }
}

/* Contact Section */
.contact {
  padding: 60px 40px;
  text-align: center;
}
.contact h2 {
  color: #003366;
  margin-bottom: 20px;
text-align: center;
}
.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact input,
.contact textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}
.contact button {
  width: fit-content;
  margin: 0 auto;
  background: #003366;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.contact button:hover {
  background: #0055aa;
}

/* ===== Footer ===== */
footer {
  background-color: #003580;
  color: white;
  padding-top: 50px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10% 40px;
}

.footer-left, .footer-right {
  flex: 1;
  min-width: 300px;
  margin-bottom: 30px;
}

.footer-left h3, .footer-right h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-left: 4px solid #00c2ff;
  padding-left: 10px;
}

.quick-links {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin: 10px 0;
}

.quick-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.quick-links a i {
  margin-right: 10px;
  color: #00c2ff;
}

.quick-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-right p {
  font-size: 0.95rem;
  color: #d6d6d6;
  line-height: 1.7;
}

.footer-right a {
  color: #ffffff;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  background-color: #003580;
  padding: 15px;
  font-size: 0.9rem;
  color: #dcdcdc;
  border-top: 1px solid rgba(255,255,255,0.2);
}
/* ===== Milestone Section (Modern Grid Style) ===== */
/* ===== Milestone Section (Horizontal Timeline) ===== */
.milestone-section {
  background: linear-gradient(to bottom, #f4f8fb, #ffffff);
  padding: 100px 8%;
  text-align: center;
}

.milestone-section h2 {
  color: #002060;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.milestone-subtext {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 60px;
}

/* Horizontal timeline container */
.milestone-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  padding: 20px 0;
}

/* Connecting line */
.milestone-timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #007bff, #00c2ff);
  z-index: 1;
  border-radius: 2px;
}

/* Each milestone item */
.milestone-item {
  position: relative;
  width: 18%;
  text-align: center;
  z-index: 2;
}

.milestone-dot {
  width: 22px;
  height: 22px;
  background-color: #007bff;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 0 0 6px rgba(0, 123, 255, 0.2);
}

.milestone-item:hover .milestone-dot {
  transform: scale(1.2);
  background-color: #0056b3;
}

/* Text styling */
.milestone-item h3 {
  color: #003366;
  font-size: 1.3rem;
  margin-top: 15px;
  margin-bottom: 8px;
}

.milestone-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Animation for fade-up effect */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.milestone-item {
  animation: fadeUp 0.8s ease both;
}

/* Responsive Design */
@media (max-width: 992px) {
  .milestone-timeline {
    flex-direction: column;
    align-items: center;
  }

  .milestone-timeline::before {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
  }

  .milestone-item {
    width: 100%;
    margin-bottom: 60px;
  }

  .milestone-dot {
    margin: 0 auto 15px auto;
  }
}

/* ===== Founder Section ===== */
.founder-section {
  padding: 100px 60px;
  background: #ffffff;
}

.founder-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.founder-image {
  flex: 1;
  text-align: center;
}

.founder-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 32, 96, 0.1);
}

.founder-content {
  flex: 2;
}

.founder-content h2 {
  color: #002060;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.founder-content h3 {
  color: #007bff;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.founder-content p {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}


/* ===== CEO SECTION ===== */
.ceo-section {
  padding: 60px 20px;
  background: #f7f9fc;
}

.ceo-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* CEO Content */
.ceo-content {
  flex: 1;
  min-width: 300px;
}


.ceo-name-link {
  color: #007BFF;
  text-decoration: none;
  transition: 0.3s;
}




.ceo-content h2 {
  color: #002060;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.ceo-content h3 {
  color: #007bff;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.ceo-content p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

/* View full profile button */
.ceo-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #007BFF;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.ceo-btn:hover {
  background: #0056b3;
}

/* CEO Image */
.ceo-image {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.ceo-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.ceo-image img:hover {
  transform: scale(1.03);
}

/* ===== Responsive for Mobile ===== */
@media (max-width: 768px) {
  .ceo-container {
    flex-direction: column-reverse; /* Image first, then content */
    text-align: center;
  }

  .ceo-content h2 {
    font-size: 24px;
  }
}
/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .founder-container,
  .ceo-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-image img,
  .ceo-image img {
    max-width: 300px;
  }
}
html {
  scroll-behavior: smooth;
}


/* ================================
   Floating Enquiry Button
================================ */
.floating-enquiry-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #007BFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.floating-enquiry-btn:hover {
  transform: scale(1.1);
}

.floating-enquiry-btn img {
  width: 30px;
  filter: brightness(0) invert(1);
}

.floating-enquiry-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
/* ================================
   Enquiry Slide Form
================================ */
/* ================================
   Enquiry Slide Form (MOVES WITH PAGE)
================================ */
.enquiry-form-container {
  position: fixed;        /* moves with scroll */
  bottom: 20px;              /* stays above bottom */
  right: -500px;             /* hidden by default */
  width: 500px;              /* proper desktop width */
  max-width: 75%;            /* responsive but same size feel */
  height: auto;              /* auto height */
  max-height: 80vh;          /* prevents large white bottom */
  background: #ffffff;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  transition: right 0.4s ease;
  z-index: 9998;
  padding: 25px;
  overflow-y: auto;          /* form scrolls inside */
}

.enquiry-form-container.active {
  right: 0;                  /* Slide in */
}

.enquiry-form h2 {
  margin-bottom: 15px;
  color: #007BFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.enquiry-form label {
  font-weight: 600;
  margin: 10px 0 5px;
  display: block;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 15px;
}

.enquiry-form textarea {
  resize: none;
}

.submit-btn {
  width: 100%;
  background: #007BFF;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
  font-size: 16px;
}

.submit-btn:hover {
  background: #0056c1;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  transition: 0.3s ease;
}

.close-btn:hover {
  color: #007BFF;
}

/* ================================
   Mobile Responsive
================================ */
@media (max-width: 480px) {
  .floating-enquiry-btn {
    width: 50px;
    height: 50px;
  }

  .floating-enquiry-btn img {
    width: 24px;
  }

  .enquiry-form-container {
    width: 90%;
  }
}





.applications-home {
  text-align: center;
  padding: 80px 10%;
  background-color: #f9f9f9;
}

.applications-home h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #003366;
}

.applications-home p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.1rem;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.app-card {
  background: white;
  border-radius: 15px;
  padding: 25px 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.app-card i {
  font-size: 40px;
  color: #0078d7;
  margin-bottom: 15px;
}

.app-card h3 {
  font-size: 1.2rem;
  color: #004080;
  margin-bottom: 10px;
}

.app-card p {
  font-size: 0.95rem;
  color: #555;
}


