* {
    margin: 0px;
    padding:0px;
    font-family: "Poppins", sans-serif;
}



.main_box .bg {
    position: absolute;
    width: 100%;
    height: 5%;
    backdrop-filter: blur(5px);
}

/* ==== Sidebar ==== */
.btn_one i {
    color: B;
    font-size: 30px;
    font-weight: 700;
    position: fixed;
    left: 15px;
    line-height: 60px;
    cursor: pointer;
    transition: all 0.3s linear;
}

.sidebar_menu {
    position: fixed;
    left: -300px;
    height: 100vh;
    width: 300px;
    background-color: rgba(62, 61, 61, 0.4);
    box-shadow: 0 0 6px rgba(255,255,255,0.5);
    transition: all 0.5s linear;
}

.sidebar_menu .logo {
    position: absolute;
    width: 100%;
    line-height: 60px;
    box-shadow: 0 2px 4px rgba(255,255,255,0.5);
    height: 60px;
}

.sidebar_menu .logo a {
    position: absolute;
    left: 50px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
}

.sidebar_menu .btn_two i {
    color: white;
    font-size: 25px;
    line-height: 60px;
    position: absolute;
    left: 275px;
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s linear;
}

.sidebar_menu .menu {
    position: absolute;
    width: 100%;
    top: 80px;
}

.sidebar_menu .menu li {
    margin-top: 6px;
    padding: 10px 20px;
    list-style: none;
}

.sidebar_menu .menu i, 
.sidebar_menu .menu a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.sidebar_menu .menu i {
    padding-right: 8px;
}

.sidebar_menu .social_media {
    position: absolute;
    left: 25%;
    bottom: 15%;
}

.sidebar_menu .social_media i {
    color: white;
    opacity: 0.5;
    padding: 0 5px;
}

/* ==== Buttons ==== */
.sidebar_menu .btn_three,
.sidebar_menu .btn_four {
    width: 100px;
    height: 30px;
    font-size: 15px;
    border-radius: 15px;
    color: white;
    background-color: rgba(62, 61, 61, 0.4);
    border: none;
    position: absolute;
    bottom: 22%;
    opacity: 0.5;
    cursor: pointer;
}

.sidebar_menu .btn_three { left: 5%; }
.sidebar_menu .btn_four { left: 45%; }

/* ==== Hover Effects ==== */
.sidebar_menu .menu li:hover {
    box-shadow: 0 0 4px rgba(255,255,255,0.5);
}
.btn_one i:hover { font-size: 40px; }
.btn_two i:hover { font-size: 30px; }
.sidebar_menu .social_media i:hover {
    opacity: 1;
    transform: scale(1.1);
}
.sidebar_menu .btn_three:hover,
.sidebar_menu .btn_four:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ==== Checkbox toggle ==== */
#check { display: none; }
#check:checked ~ .sidebar_menu { left: 0; }
#check:checked ~ .btn_one i { opacity: 0; }
#check:checked ~ .sidebar_menu .btn_two i { opacity: 1; }

/* ==== Responsive ==== */
@media (max-width: 768px) {
    .sidebar_menu {
        width: 240px;
        left: -240px;
    }
    .sidebar_menu .btn_two i {
        left: 215px;
    }
    .sidebar_menu .logo a {
        font-size: 14px;
        left: 20px;
    }
    .sidebar_menu .menu a {
        font-size: 18px;
    }
    .sidebar_menu .btn_three,
    .sidebar_menu .btn_four {
        width: 90px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sidebar_menu {
        width: 200px;
        left: -200px;
    }
    .sidebar_menu .btn_two i {
        left: 175px;
    }
    .sidebar_menu .logo a {
        font-size: 12px;
        left: 15px;
    }
    .sidebar_menu .menu a {
        font-size: 16px;
    }
    .sidebar_menu .social_media {
        left: 20%;
    }
    .sidebar_menu .btn_three,
    .sidebar_menu .btn_four {
        width: 80px;
        font-size: 12px;
    }
}


/* ====== Header Menubar ====== */
.top_navbar {
    width: 100%;
    height: 60px;
    background-color: rgba(62, 61, 61, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.top_navbar .logo_text {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.top_navbar .menu_links{
    position:absolute;
    right: 60px;
}

.top_navbar .menu_links a {
    color: white;
    text-decoration: none;
    margin-top: 6px;
    padding: 10px 20px;
    list-style: none;
   
}

.top_navbar .menu_links a:hover {
    box-shadow: 0 0 4px rgba(255,255,255,0.5);
}



/* Main box ko navbar ke niche dikhane ke liye padding */
.main_box {
    background-image: url(.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
    padding-top: 60px; /* Navbar height adjust */
}

/* ===== Responsive Navbar ===== */
@media (max-width: 768px) {
    .top_navbar {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
    }
    .top_navbar .menu_links {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: 100%;
    }
    .top_navbar .menu_links a {
        margin: 8px 0;
        font-size: 14px;
    }
}


/* ===== Modal Styling ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
}

.modal-content h2 {
  margin-bottom: 15px;
  color: #333;
  font-size: 20px;
}

.modal-content label {
  display: block;
  margin: 8px 0 4px;
  font-size: 14px;
  font-weight: 600;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.submit-btn {
  background: #007bff;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #0056b3;
}

.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.close:hover {
  color: #007bff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-content {
  background: #fff;
  margin: 6% auto;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 650px; /* Modal width increased */
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
}

.contact-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* responsive ke liye */
}

.contact-form, 
.contact-info {
  flex: 1;
  min-width: 250px;
}


.map-container {
  margin-top: 10px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

.contact-container {
  display: flex;
  gap: 25px; /* Form aur Address ke beech gap */
  flex-wrap: wrap; /* responsive ke liye */
}

.contact-info {
  flex: 1;
  min-width: 250px;
  padding: 15px;
  border: 1px solid #ddd; /* border */
  border-radius: 10px;    /* corner round */
  background: #f9f9f9;    /* halka sa background */
}

.contact-info h3 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #007bff;
}

.contact-info p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/*******about us**********/

.about-popup .about-intro, .about-popup .about-features {
    margin-top: 15px;
}

.feature-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    background: #f9f9f9;
}

/* About Us Modal Scrollable */
#aboutModal .modal-content {
    background: #fff;
    margin: 6% auto;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 650px;  /* Modal width */
    max-height: 80vh;   /* Limit height to 80% of viewport */
    overflow-y: auto;   /* Vertical scroll if content overflows */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
}

/* Optional: smooth scrollbar appearance */
#aboutModal .modal-content::-webkit-scrollbar {
    width: 8px;
}
#aboutModal .modal-content::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.3);
    border-radius: 4px;
}
#aboutModal .modal-content::-webkit-scrollbar-track {
    background: transparent;
}

/* About Features Layout */
.about-popup .about-intro, 
.about-popup .about-features {
    margin-top: 15px;
}

.feature-card {
    border:1px solid #ddd;
    border-radius:8px;
    padding:12px;
    margin-bottom:10px;
    background:#f9f9f9;
}

/* About Us Modal Scrollable with border and background */
#aboutModal .modal-content {
    background: #d6f0ff;      /* Light blue background */
    margin: 6% auto;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 650px;         /* Modal width */
    max-height: 80vh;          /* Limit height to 80% of viewport */
    overflow-y: auto;          /* Vertical scroll if content overflows */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 4px solid #007bff; /* 4px solid blue border */
    animation: fadeIn 0.3s ease;
}







<style>
/* Popup Modal Background */
#imagePopupModal {
    display: none; /* by default hidden */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

/* Popup Modal Content */
#imagePopupModal .modal-content {
    margin: 5% auto;
    background: white;
    border-radius: 8px;
    padding: 10px;
    position: relative;
    text-align: center;
}

/* Popup Image */
#popupImage {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Close Button */
.close-image-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-image-popup:hover {
    color: #e53935;
}





/* General Body and Section Styling */


.why-choose-us-section {
    background: linear-gradient(rgba(23, 17, 41, 0.9), rgba(23, 17, 41, 0.9)), url('your-background-image.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

/* Content and Headings */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us-section h2 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choose-us-section p {
    font-size: 1.1em;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Cards Container (Flexbox) */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Individual Card Styling */
.card {
    flex: 1 1 300px; /* Allows cards to grow and shrink, with a base width of 300px */
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    font-size: 1.4em;
    font-weight: 600;
    margin: 20px 0 10px;
}

.card p {
    font-size: 1em;
    line-height: 1.6;
}

/* Card-specific Colors */
.card-blue {
    background-color: #2b3a58;
    color: white;
}

.card-white {
    background-color: white;
    color: #4a4a4a;
}

.card-red {
    background-color: #e53935;
    color: white;
}

/* Icon Styling */
.icon-box {
    font-size: 4em;
    margin-bottom: 20px;
}

.card-blue .icon-box,
.card-red .icon-box {
    color: white;
}

.card-white .icon-box {
    color: #e53935; /* Using the same red as the other card */
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.floating-btn {
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 1em;
    color: white;
}

.help-btn {
    background-color: #e53935;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.scroll-btn {
    background-color: #e53935;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
}

.scroll-btn.show {
    transform: scale(1);
}





/* Contact Modal - same style as Why Choose Us */
#contactModal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6); /* overlay */
    animation: fadeIn 0.3s;
}

#contactModal .modal-content {
    background-color: #fff;
    margin: 10% auto; /* center modal */
    padding: 30px;
    border-radius: 15px;
    width: 50%;
    max-width: 600px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    animation: slideIn 0.4s;
}

#contactModal .close-contact {
    color: #333;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

#contactModal .close-contact:hover {
    color: #ff6600;
}

/* Animations */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideIn {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}





.social_media {
  position: relative;
  z-index: 10; /* ensure links are clickable */
}

.social_media ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social_media ul li a {
  font-size: 24px;
  color: #fff;
  transition: color 0.3s;
}

.social_media ul li a:hover {
  color: #00aced;
}
