* {
         margin: 0;
         box-sizing: border-box;
         font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
         }
         body {
         overflow-x: hidden;
         }
         header {
         border-bottom: 1px solid #eee;
         }
         /* Navbar */
         .navbar {
         display: flex;
         justify-content: space-between;
         align-items: center;
         padding: 20px 50px;
         background-color: white;
         flex-wrap: wrap;
         position: relative;
         z-index: 1000;
         }
         .logo img {
         height: 50px;
         width: auto;
         object-fit: contain;
         }
         .nav-links {
         list-style: none;
         display: flex;
         gap: 30px;
         margin: 0;
         padding: 0;
         }
         .nav-links li a {
         text-decoration: none;
         color: #333;
         font-weight: 500;
         }
         .nav-actions {
         display: flex;
         gap: 15px;
         }
         @media (max-width: 768px) {
         .get-started-btn {
         display: none;
         }
         }
         @media (max-width: 768px) {
         .nav-actions {
         display: none !important;
         }
         }
         @media (max-width: 768px) {
  .journey-container {
    flex-direction: column-reverse;
  }
}

         .get-started-btn {
         background: #2196f3;
         border: none;
         padding: 8px 16px;
         border-radius: 6px;
         color: white;
         font-weight: 500;
         cursor: pointer;
         }
         /* Hamburger Menu */
         .hamburger {
         display: none;
         flex-direction: column;
         gap: 5px;
         cursor: pointer;
         }
         .hamburger span {
         width: 25px;
         height: 3px;
         background-color: #333;
         transition: 0.3s ease;
         }
         /* Hero Container */
         .container {
         display: flex;
         height: 100vh;
         width: 100%;
         }
         .text-section {
         flex: 1;
         padding: 50px;
         display: flex;
         flex-direction: column;
         justify-content: center;
         background-color: #fff;
         }
         .image-section {
         flex: 1;
         height: 100%;
         padding: 20px;
         min-width: 300px;
         }
         .image-section img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         border-radius: 10px;
         }
         /* Heading & Underline */
         h1 {
         font-size: 2.8rem;
         font-weight: 900;
         margin-bottom: 20px;
         line-height: 1.2;
         }
         .underline-svg {
         display: inline-block;
         position: relative;
         color: #2196f3;
         font-weight: bold;
         }
      .underline-svg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12px;
  background-image: url('../images/underline.png');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;

}

         p {
         font-size: 1rem;
         line-height: 1.6;
         max-width: 600px;
         }
         /* Journey Section */
         .journey-section {
         padding: 60px 50px;
         background-color: #fff;
         }
        .journey-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row; /* Ensure desktop layout is row */
  gap: 40px;
}

         .journey-image, .journey-content {
         flex: 1;
         min-width: 300px;
         }
         .journey-image img {
         width: 100%;
         height: auto;
         border: 1px solid #ccc;
         border-radius: 6px;
         }
         .journey-content h2 {
         font-size: 2.4rem;
         font-weight: 800;
         margin-bottom: 20px;
         }
         .stats-grid {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 30px 40px;
         }
         .stat-box h3 {
         font-size: 1.8rem;
         font-weight: 700;
         }
         .stat-box p {
         font-size: 0.95rem;
         color: #555;
         }
         /* Hero Section */
         .hero {
         display: flex;
         justify-content: space-between;
         gap: 2rem;
         padding: 3rem 2rem;
         background-color: #1e1e1e;
         color: white;
         flex-wrap: wrap;
         }
        .hero-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-row h1,
.hero-row .right {
  flex: 1 1 100%;
  max-width: 100%;
}

/* Desktop styles */
@media (min-width: 768px) {
  .hero-row h1,
  .hero-row .right {
    flex: 1;
    max-width: 48%;
  }
}

         /* Cards Section */
         .cards {
         display: flex;
         gap: 2rem;
         padding: 2rem;
         justify-content: center;
         flex-wrap: wrap;
         background-color: #1e1e1e;
         }
         .card {
         background-color: #ffffff;
         border: 1px solid #ccc;
         width: 260px;
         border-radius: 5px;
         overflow: hidden;
         display: flex;
         flex-direction: column;
         }
         .card img {
         width: 100%;
         height: 150px;
         object-fit: cover;
         }
         .card-content {
         padding: 1rem;
         }
         .card-content h3 {
         margin-bottom: 0.5rem;
         }
         .card-content p {
         font-size: 0.9rem;
         color: #000000;
         }
         .card-content .btn {
         margin-top: 1rem;
         display: inline-block;
         border: 1px solid #000000;
         padding: 0.5rem 1rem;
         text-decoration: none;
         color: #000000;
         border-radius: 3px;
         text-align: center;
         }
         /* Contact Section */
         .contact-section {
         background: linear-gradient(to right, #f0f4f8, #e8eef5);
         padding: 60px 20px;
         }
         .contact-container {
         display: flex;
         flex-wrap: wrap;
         max-width: 1200px;
         margin: auto;
         border-radius: 12px;
         overflow: hidden;
         background: #fff;
         box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
         }
         .contact-form {
         flex: 2;
         padding: 30px;
         max-width: 580px;
         margin: auto;
         }
         .contact-map {
         flex: 1;
         min-height: 450px;
         max-width: 90%;
         margin-top: 10%;
         margin-right: 5%;
         margin-bottom: 10%;
         }
         .contact-form input,
         .contact-form textarea {
         width: 100%;
         padding: 12px 14px;
         margin-top: 6px;
         border: 1px solid #ccc;
         border-radius: 8px;
         background-color: #f9f9f9;
         font-size: 15px;
         }
         .contact-form textarea {
         resize: vertical;
         min-height: 120px;
         }
         .contact-form label {
         margin-top: 15px;
         display: block;
         font-weight: 500;
         }
         .submit-btn {
         margin-top: 20px;
         background-color: #007bff;
         color: white;
         border: none;
         padding: 12px 24px;
         font-size: 16px;
         border-radius: 30px;
         cursor: pointer;
         }
         .contact-map iframe {
         width: 100%;
         height: 100%;
         border: none;
         }
         /* Footer */
         .site-footer {
         background-color: #0c1a2b;
         color: #fff;
         padding: 60px 20px 30px;
         }
         .footer-container {
         max-width: 1200px;
         margin: auto;
         }
         .footer-row {
         display: flex;
         flex-wrap: wrap;
         justify-content: space-between;
         }
         .footer-col {
         flex: 1 1 220px;
         margin: 20px;
         }
         .footer-col h4 {
         font-size: 18px;
         margin-bottom: 15px;
         border-bottom: 2px solid #007bff;
         padding-bottom: 5px;
         }
         .footer-col p,
         .footer-col a {
         color: #ccc;
         font-size: 14px;
         line-height: 1.7;
         text-decoration: none;
         }
         .footer-col a:hover {
         color: #fff;
         }
         .footer-col ul {
         list-style: none;
         padding: 0;
         }
         .footer-col ul li {
         margin-bottom: 10px;
         }
         .social-icons a {
         color: #ccc;
         margin-right: 12px;
         font-size: 18px;
         transition: 0.3s ease;
         }
         .social-icons a:hover {
         color: #007bff;
         }
         .footer-bottom {
         text-align: center;
         padding-top: 30px;
         border-top: 1px solid #1d2a3a;
         font-size: 14px;
         color: #aaa;
         }
         /* Responsive */
         @media (max-width: 1024px) {
         .navbar {
         padding: 15px 30px;
         }
         .cards .card {
         width: 45%;
         }
         .stats-grid {
         grid-template-columns: 1fr 1fr;
         }
         }
         @media (max-width: 768px) {
         .navbar {
         padding: 15px;
         }
         .nav-links,
         .nav-actions {
         display: none;
         flex-direction: column;
         align-items: center;
         text-align: center;
         position: absolute;
         top: 65px;
         left: 0;
         right: 0;
         background-color: #f0f8ff;
         z-index: 999;
         padding: 20px 0;
         box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
         }
         .navbar.open .nav-links,
         .navbar.open .nav-actions {
         display: flex;
         }
         .hamburger {
         display: flex;
         }
         .container,
         .hero,
         .journey-container,
         .cards {
         flex-direction: column;
         }
         .cards .card {
         width: 100%;
         }
         .text-section,
         .image-section {
         width: 100%;
         padding: 1rem;
         }
         .stats-grid {
         grid-template-columns: 1fr;
         }
         .contact-container {
         flex-direction: column;
         }
         .contact-map {
         height: 300px;
         }
         .footer-row {
         flex-direction: column;
         text-align: center;
         }
         .footer-col {
         margin: 20px 0;
         }
         }
         header { background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 15px 50px; flex-wrap: wrap; }
.navbar .logo img { height: 50px; }
.nav-links { list-style: none; display: flex; gap: 25px; padding-left: 0; margin: 0; }
.nav-links li a { text-decoration: none; color: #333; font-weight: 600; padding: 8px 12px; border-radius: 6px; transition: 0.3s; }
.nav-links li a:hover, .nav-links li a.active { background: #007bff; color: #fff; }
.get-started-btn { padding: 8px 20px; border: none; border-radius: 6px; background: #007bff; color: #fff; cursor: pointer; transition: 0.3s; }
.get-started-btn:hover { background: #0056b3; }

/* Dropdown */
.nav-links li { position: relative;list-style: none; }
.nav-links .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 200px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); border-radius: 6px; z-index: 99; }
.nav-links .dropdown-menu li a { margin-left: -40px; display: block; padding: 10px 20px; color: #333; font-weight: 500; text-decoration: none; }
.nav-links .dropdown-menu li a:hover {margin-left: -40px; background: #f2f2f2; color: #007bff; }
.nav-links .dropdown:hover .dropdown-menu { display: block; }
