   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   body {
       font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;

   }

   header {
       border-bottom: 1px solid #ddd;
   }

   .navbar {
       display: flex;
       align-items: center;
       justify-content: space-between;
       padding: 20px 30px;
       background: #fff;
       position: relative;

       position: sticky;
       top: 0;
       z-index: 999;
       box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
       /* transform: translateY(-100%);
       transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out; */
   }

   .navbar.sticky {
       position: fixed;
       top: 0;
       width: 100%;
       background: #fff;

       z-index: 999;
       transform: translateY(0);
       box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
       transform: translateY(0);
       /* Slide in if you want to trigger from top again */
   }


   .logo {
       font-size: 24px;
       font-weight: bold;
       color: #222;
   }

   .nav-links {
       list-style: none;
       display: flex;
       gap: 30px;
   }

   .nav-links li a {
       text-decoration: none;
       color: #222;
       font-weight: 500;
       position: relative;
   }

   .nav-links li a.active {
       color: #7e85f7;
   }

   .nav-links li a.active::after {
       content: '';
       position: absolute;
       width: 100%;
       height: 2px;
       background: #7e85f7;
       bottom: -5px;
       left: 0;
   }

   .nav-right {
       display: flex;
       align-items: center;
       gap: 20px;
   }




   .signin {
       font-size: 12px;
       color: #222;
       text-transform: uppercase;
       text-decoration: none;
   }

   .get-started {
       padding: 10px 20px;
       background: #222;
       color: white;
       text-decoration: none;
       font-weight: bold;
       text-transform: uppercase;
       font-size: 12px;
   }

   .search-icon {
       font-size: 18px;
       color: #222;
       text-decoration: none;
   }

   /* Hide hamburger menu on desktop */
   .menu-toggle {
       display: none;
       font-size: 24px;
       cursor: pointer;
   }

   /* Responsive styles */
   @media (max-width: 768px) {
       .nav-links {
           position: absolute;
           top: 100%;
           left: 0;
           width: 100%;
           flex-direction: column;
           background: #fff;
           display: none;
           padding: 20px;
           border-top: 1px solid #ddd;
           z-index: 99;
       }

       .nav-links {

           gap: 10px;
       }

       .nav-links li {
           margin-bottom: 15px;
       }

       .nav-links li:last-child {
           margin-bottom: 0;
       }

       .nav-links.show {
           display: flex;
       }

       .menu-toggle {
           display: block;
       }

       .desktop-only {
           display: none;
       }

       .mobile-only {
           display: block;
       }
   }





































   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }


   .hero {
       position: relative;
       background: url('assets/images/banner1.jpg') center center/cover no-repeat;
       height: 70vh;
       color: #fff;
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: left;
       padding: 0 20px;
   }

   .hero1 {
       position: relative;
       background: url('assets/images/banner2.jpg') center center/cover no-repeat;
       height: 40vh;
       color: #fff;
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: left;
       padding: 0 20px;
   }

   .overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0, 0, 0, 0.4);
       z-index: 1;
   }

   .hero-content {
       position: relative;
       z-index: 2;
       max-width: 700px;
   }

   .hero-content h1 {
       font-size: 3rem;
       font-weight: bold;
       margin-bottom: 20px;
       opacity: 0;
       transform: translateY(30px);
       animation: fadeSlideUp 1s ease-out forwards;
   }

   /* Keyframes for the animation */
   @keyframes fadeSlideUp {
       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   .highlight {
       position: relative;
       display: inline-block;
       color: #fff;
   }

   .highlight::before {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 100%;
       height: 20px;
       background: #00bcd4;
       z-index: -1;
       border-radius: 25px;
   }

   .hero-content p {
       font-size: 1.1rem;
       margin-bottom: 30px;
       opacity: 0;
       transform: translateY(30px);
       animation: fadeSlideUp 1s ease-out forwards;
   }

   .search-form {
       display: flex;
       max-width: 500px;
       margin-bottom: 30px;
   }

   .search-form input {
       flex: 1;
       padding: 15px;
       border: none;
       border-radius: 5px 0 0 5px;
       font-size: 1rem;
   }

   .search-form button {
       padding: 15px 25px;
       background: #2f3b52;
       color: #fff;
       border: none;
       border-radius: 0 5px 5px 0;
       font-weight: bold;
       cursor: pointer;
   }

   .video-btn a {
       color: #fff;
       font-weight: bold;
       font-size: 1rem;
       display: flex;
       align-items: center;
       gap: 10px;
       text-decoration: none;
   }

   .play-icon {
       width: 40px;
       height: 40px;
       display: inline-flex;
       align-items: center;
       justify-content: center;
       border: 2px solid white;
       border-radius: 50%;
       font-size: 16px;
   }

   @media (max-width: 768px) {
       .hero-content h1 {
           font-size: 2.2rem;
           margin-top: 50px;
       }

       .search-form {
           flex-direction: column;
       }

       .search-form input,
       .search-form button {
           border-radius: 5px;
           margin-bottom: 10px;
       }

       .search-form button {
           margin-bottom: 0;
       }

       .video-btn {
           margin-top: 15px;
       }
   }








   /* about */



   .about-section {
       /* padding: 60px 20px; */
   }

   .container {
       display: flex;
       gap: 40px;
       /* align-items: center; */
       justify-content: center;
       flex-wrap: wrap;
       max-width: 1200px;
       margin: auto;
   }

   .about-image {
       position: relative;
       flex: 1 1 500px;
   }

   .about-image img {
       width: 100%;
       border-radius: 10px;
       display: block;
       height: auto;
   }

   /* Tablets (landscape and portrait) */
   @media (max-width: 991px) {
       .about-image img {
           height: 600px;
       }
   }

   /* Mobile devices */
   @media (max-width: 576px) {
       .about-image img {
           max-height: 300px;
       }
   }

   /* Large screens like Mac desktops */
   @media (min-width: 1200px) {
       .about-image img {
           max-height: 600px;
       }
   }


   .mission-box {
       position: absolute;
       bottom: 20px;
       left: 20px;
       background-color: #eefaff;
       padding: 25px;
       border-radius: 10px;
       max-width: 280px;
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
       /* Animation setup */
       opacity: 0;
       transform: translateY(30px);
       animation: fadeSlideUp 0.8s ease-out forwards;
       animation-delay: 0.3s;
       /* Optional delay */
   }

   .mission-box h3 {
       margin-bottom: 10px;
       font-size: 1.2rem;
       font-weight: 600;
   }

   .mission-box p {
       font-size: 0.95rem;
       line-height: 1.5;
   }

   .about-content {
       flex: 1 1 450px;
       opacity: 0;
       transform: translateY(30px);
       animation: fadeSlideUp 0.8s ease-out forwards;
       animation-delay: 0.s;
   }

   .section-subtitle {
       color: #7e85f7;
       font-weight: 600;
       display: block;
       margin-bottom: 10px;
   }

   .about-content h2 {
       font-size: 2.5rem;
       font-weight: 700;
       margin-bottom: 20px;
       line-height: 1.3;
   }

   .about-content p {
       margin-bottom: 25px;
       line-height: 25px;
       font-size: 1rem;
       color: #333;
   }

   .about-feature {
       display: flex;
       align-items: flex-start;
       gap: 15px;
       margin-bottom: 20px;
   }

   .about-icon {
       background-color: #7e85f7;
       color: white;
       font-size: 1.2rem;
       padding: 12px;
       border-radius: 50%;
   }

   .about-feature h4 {
       margin: 0;
       font-weight: 600;
       font-size: 1.1rem;
   }

   .about-feature p {
       margin: 5px 0 0 0;
       font-size: 0.95rem;
       color: #333;
   }

   .btn {
       display: inline-block;
       padding: 12px 20px;
       background-color: #7e85f7;
       color: white;
       border-radius: 6px;
       text-decoration: none;
       font-weight: 600;
       /* margin-top: 10px; */
       transition: background 0.3s;
   }

   .btn:hover {
       background-color: #444;
   }

   @media (max-width: 768px) {
       .about-content h2 {
           font-size: 2rem;
       }

       .container {
           /* flex-direction: column; */
       }

       .mission-box {
           position: relative;
           margin-top: 20px;
           left: 0;
           bottom: 0;
       }
   }

   /* servies */

















   .services-section {
       /* padding: 60px 20px; */
       background: #fff;
   }

   .services-container {
       max-width: 1200px;
       margin: auto;
       text-align: center;
   }

   .section-subtitle {
       color: #7e85f7;
       font-weight: 600;
       font-size: 0.95rem;
       display: block;
       margin-bottom: 12px;
   }



   /* footer */

   .footer {
       background-color: #075094;
       color: #fff;
       padding: 60px 20px 30px;
   }

   .footer-container {
       display: flex;
       flex-wrap: wrap;
       justify-content: space-between;
       max-width: 1200px;
       margin: auto;
       gap: 40px;
   }

   .footer-col {
       /* flex: 1 1 180px; */
   }

   .footer-col h4 {
       font-size: 1.1rem;
       margin-bottom: 20px;
       font-weight: bold;
   }

   .footer-col ul {
       list-style: none;
       padding: 0;
   }

   .footer-col ul li {
       margin-bottom: 12px;
   }

   .footer-col ul li a {
       color: #fff;
       text-decoration: none;
       opacity: 0.9;
   }

   .footer-col ul li a:hover {
       text-decoration: underline;
   }

   .footer-logo {
       font-size: 2rem;
       font-weight: bold;
       margin-bottom: 20px;
   }

   .footer p {
       max-width: 300px;
       line-height: 1.6;
       margin-bottom: 20px;

   }

   .footer-search {
       display: flex;
       max-width: 350px;
       margin-bottom: 20px;
   }

   @media (max-width: 767px) {
       .footer-p {
           max-width: none !important;
           line-height: 1.6;
           margin-bottom: 20px;
           padding: 0 15px;
           /* optional for side spacing */
       }
   }



   /* Responsive styles for mobile (≤767px) */
   @media (max-width: 767px) {
       .footer-p {
           max-width: none !important;
           padding: 0 15px;
       }
   }

   @media (min-width: 768px) and (max-width: 1024px) {
       .footer-p {
           max-width: none !important;
           /* padding: 0 20px; */
           /* Optional spacing */
           line-height: 1.6;
           margin-bottom: 20px;
       }
   }


   .footer-search input {
       flex: 1;
       padding: 12px;
       border: none;
       border-radius: 4px 0 0 4px;
       outline: none;
   }

   .footer-search button {
       background: #00b6bd;
       border: none;
       color: #fff;
       padding: 12px 16px;
       border-radius: 0 4px 4px 0;
       cursor: pointer;
   }

   .footer-contact {
       list-style: none;
       padding: 0;
   }

   .footer-contact li {
       margin-bottom: 12px;
       font-size: 0.95rem;
   }

   .footer-contact i {
       margin-right: 10px;
   }

   .footer-bottom {
       border-top: 1px solid rgba(255, 255, 255, 0.1);
       max-width: 1200px;
       margin: 40px auto 0;
       padding-top: 20px;
       text-align: center;
   }

   .footer-social a {
       color: white;
       border: 1px solid white;
       display: inline-flex;
       justify-content: center;
       align-items: center;
       margin: 0 6px;
       width: 40px;
       height: 40px;
       border-radius: 50%;
       text-decoration: none;
       font-size: 18px;
       /* Ensure same icon size */
       transition: background 0.3s ease;
   }

   .footer-social a:hover {
       background: #7e85f7;
       color: white;
   }


   .footer-links {
       margin: 20px 0;
   }

   .footer-links a {
       margin: 0 10px;
       color: #fff;
       text-decoration: none;
       font-size: 0.9rem;
   }

   .footer-links a:hover {
       text-decoration: underline;
   }

   .footer-bottom p {
       max-width: none !important;
       font-size: 0.85rem;
       color: #ddd;
   }

   /* Responsive */
   @media (max-width: 768px) {
       .footer-container {
           flex-direction: column;
           gap: 30px;
           text-align: center;
       }

       .footer-search {
           margin: auto;
           justify-content: center;
       }

       .footer-contact {
           text-align: center;
       }
   }




















   /* contact */

   .container {
       max-width: 1200px;
       margin: auto;
       padding: 60px 20px;
   }

   .contact-section {
       /* background: #f8f9fa; */
   }

   .contact-grid {
       display: flex;
       gap: 40px;
       flex-wrap: wrap;
   }

   /* Contact Info */
   .contact-info {
       flex: 1 1 45%;
   }

   .contact-info h2 {
       font-size: 32px;
       margin-bottom: 20px;
       font-weight: 700;
   }

   .contact-info p {
       color: #444;
       margin-bottom: 30px;
   }

   .contact-details>div {
       margin-bottom: 20px;
   }

   .contact-details h4 {
       font-size: 16px;
       font-weight: 600;
       margin-bottom: 5px;
   }

   .contact-details p {
       font-size: 15px;
       color: #555;
   }

   /* Contact Form */
   .contact-form {
       flex: 1 1 50%;
   }

   form {
       /* background: #fff; */
       padding: 30px;
       /* border-radius: 10px;
       box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
   }

   .form-row {
       display: flex;
       gap: 20px;
       margin-bottom: 20px;
       flex-wrap: wrap;
   }

   input[type="text"],
   input[type="email"],
   textarea {
       width: 100%;
       padding: 15px;
       border: 1px solid #ddd;
       border-radius: 5px;
       font-size: 15px;
       margin-bottom: 20px;
   }

   .form-row input {
       flex: 1 1 48%;
   }

   textarea {
       resize: vertical;
   }

   button {
       background-color: #7e85f7;
       color: #fff;
       padding: 14px 30px;
       border: none;
       font-size: 16px;
       border-radius: 5px;
       cursor: pointer;
       transition: 0.3s;
   }

   button:hover {
       background-color: #000000;
   }

   /* Responsive */
   @media (max-width: 768px) {
       .contact-grid {
           /* flex-direction: column; */
       }

       .form-row {
           flex-direction: column;
       }

       .form-row input {
           flex: 1 1 100%;
       }
   }