*{margin: 0; padding: 0; box-sizing: border-box;}
#wrapper {width: 100%; margin: 0px auto;}
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
#wrapper{
width: 98%;
      }
    }

p{font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  text-align: justify;
  font-size: 16px;
  letter-spacing: .5px;
  color: #575757;
  font-display: swap;
 }

/*starting of new header*/

/* Header Styles */
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 3%;
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(1px);
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    border-radius: 0 0 8px 8px;
    font-family: monospace;
    text-transform: capitalize;
}

header .logo {
    text-decoration: none;
    font-weight: bolder;
    font-size: 24px;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #3cf;
}

/* Navbar styles */
.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a,
.navbar ul li .dropdown-label {
    font-size: 15px;
    font-weight: bolder;
    padding: 20px 15px;
    color: #333;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar ul li a:hover,
.navbar ul li .dropdown-label:hover {
    background: rgba(255,255,255,0.7);
    color: #34495E;
}

/* Dropdown styles */
.navbar ul li ul {
    position: absolute;
    left: 0;
    width: 200px;
    background: rgba(255,255,255,0.95);
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    border-top: 2px solid #d2e016;
    border-radius: 0 0 8px 8px;
    z-index: 100;
}

.navbar ul li ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.navbar ul li ul li:last-child {
    border-bottom: none;
}

.navbar ul li ul li a {
    padding: 12px 15px;
    font-size: 14px;
    color: #000000 !important;
}

.navbar ul li ul li a:hover {
    color: #000000 !important;
    background: rgba(255,255,255,0.9);
}

/* Dropdown toggle functionality */
.dropdown-toggle {
    display: none;
}

.dropdown-label {
    position: relative;
}

/* Show dropdown on hover (desktop) */
.navbar ul li:hover > ul {
    display: block;
}

/* Show dropdown when checkbox is checked */
.dropdown-toggle:checked ~ ul {
    display: block !important;
}

/* Color styles for different menu items */
.navbar ul li:nth-child(1) a { color: #ffb3b3; }
.navbar ul li:nth-child(2) .dropdown-label { color: #89C35C; }
.navbar ul li:nth-child(3) .dropdown-label { color: #F87431; }
.navbar ul li:nth-child(4) .dropdown-label { color: #40E0D0; }
.navbar ul li:nth-child(5) a { color: #FAA18F; }
.navbar ul li:nth-child(6) a { color: #FF00FF; }
.navbar ul li:nth-child(7) a { color: #66CDAA; }
.navbar ul li:nth-child(8) a { color: #F87431; }
.navbar ul li:nth-child(9) a { color: #34495E; }

/* Burger menu styles */
#menu-bar {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #3cf;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 991px) {
    header {
        padding: 10px 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.95);
        border-top: 1px solid rgba(0,0,0,.1);
        display: none;
        box-shadow: 0 5px 10px rgba(0,0,0,.1);
        width: 100%;
        max-width: 100%;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .navbar ul li:last-child {
        border-bottom: none;
    }

    .navbar ul li a,
    .navbar ul li .dropdown-label {
        padding: 15px 20px;
        font-size: 16px;
        width: 100%;
    }

    .navbar ul li ul {
        position: relative;
        width: 100%;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid #d2e016;
    }

    .navbar ul li ul li {
        background: #f9f9f9;
    }

    .navbar ul li ul li a {
        padding-left: 40px;
        color: #000000 !important;
    }

    .navbar ul li ul li a:hover {
        color: #000000 !important;
    }

    .navbar ul li ul li ul {
        width: 100%;
        left: 0;
    }

    .navbar ul li ul li ul li a {
        padding-left: 60px;
    }

    /* Hide hover behavior on mobile */
    .navbar ul li:hover > ul {
        display: none;
    }

    /* Show only when checkbox is checked on mobile */
    .dropdown-toggle:checked ~ ul {
        display: block !important;
    }

    #menu-bar:checked ~ .navbar {
        display: block;
    }

    #menu-bar:checked ~ .menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    #menu-bar:checked ~ .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    #menu-bar:checked ~ .menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/*ending of new header*/
h1{
  font-size: 24px;
  text-align: center;
  margin: 20px auto;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

/*================css of table======================start*/

.div-table-cell{width: 100%;
  border-radius: 0px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 0px solid #575757;
  margin-top: -10px;
      }
  @media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
.div-table-cell{width: 98%;
  border-radius: 0px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 0px solid black;
      }
}
.divTableCell p{ 
              margin-left: 20px;
             vertical-align: middle;}
.divTableCell a{ 
              margin-left: 5px;
              }
@media all and (max-width: 768px), only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px), only screen and (min-resolution: 192dpi) and (max-width: 1024px), only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
.divTableCell a{
               margin-left: 1px;
    }
}
.divTable{
  display: table;
  width: 100%;
  margin-top: 15px;
}
.divTableRow {
  display: table-row;
}
.divTableHeading {
  background-color: #EEE;
  display: table-header-group;
}
.divTableCell, .divTableHead {
  border: 1px solid #999999;
  display: table-cell;
  padding: 3px 10px;
  font-size: 15px;
}
.divTableHeading {
  background-color: #EEE;
  display: table-header-group;
  font-weight: bold;
}
.divTableFoot {
  background-color: #EEE;
  display: table-footer-group;
  font-weight: bold;
}
.divTableBody {
  display: table-row-group;
}
/*================css of table======================End*/

.container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    margin-top: 50px;
}

.main-layout {
    flex: 0 0 30%;
    max-width: 30%;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative; /* Required for positioning elements within */
    overflow: hidden; /* Hide excess content */
}

.main-layout img {
    width: 100%;  /* Ensure the image takes up the full width */
    object-fit: cover; /* Maintain aspect ratio and cover the box */
}

.main-layout button {
    position: relative; /* Ensures it follows normal flow */
    font-size: 20px;
    font-weight: bolder;
    background-color: #3cf;
    width: 100%;
    color: white;
    padding: 8px 17px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    left: 0; /* Reset position offsets */
    transform: none; /* Remove centering translation */
    margin: 0 auto; /* Center button within parent */
    display: block; /* Ensure it's treated as a block element */
    margin-top: -10px;
}

.main-layout button:hover {
    background-color: #0056b3;
}
.button-link {
    display: inline-block;
    width: 100%;
    opacity: 90%;
    padding: 8px 17px;
    background-color: #3cf;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.button-link:hover {
    background-color: #0056b3;
}
.main-layout a {
    text-decoration: none; /* Remove underline from link */
}

.dropdown {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
    overflow: hidden;
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pkt-label {
    background-color: #3CF; /* Background color for the label */
    color: white; /* Text color for the label */
    padding: 10px 20px; /* Add padding */
    font-size: 16px; /* Adjust font size */
    font-weight: bold; /* Make text bold */
    border-radius: 5px 0 0 5px; /* Rounded corners on the left */
    margin-right: 10px; /* Space between label and dropdown image */
    text-align: center;
}

.pkt-label p{
  color: white;
}


.dropdown img {
    width: 80%; /* Make the image fit the container's width */
    max-width: 80%; /* Prevent the image from exceeding the container's width */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure the image scales properly within the container */
    display: block; /* Remove any inline spacing issues */
    box-sizing: border-box; /* Include padding and border in width calculation */
}

.dropdown .icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    transition: transform 0.3s ease;
}

.dropdown.open .icon {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-container {
    flex: 0 0 70%;
    max-width: 70%;
    margin-left: 10px;
}

.dropdown {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
    overflow: hidden;
}

.dropdown img {
    width: 100%;
    height: 50px; /* Show only the top part */
    object-fit: cover;
    transition: height 0.3s ease;
}

.dropdown.open img {
    height: auto; /* Show full image when opened */
}

.dropdown .icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #007bff;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.dropdown.open .icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .main-layout {
        width: 97%;
        max-width: 100%;
        margin-bottom: 20px;
        height: 30%; /* Limit the height of the image in mobile format */
        position: relative;
    }

    .main-layout img {
        height:250px /* Ensure the image takes up the entire container height */
    }

    .dropdown-container {
        width: 100%; /* Occupy full width */
        max-width: 100%; /* Remove any constraints */
        margin: 0; /* Remove any margin to fit screen */
    }

    .dropdown {
        width: 97%; /* Each dropdown will take the full width */
        margin-bottom: 10px;
        margin: 5px auto;
    }

    .dropdown img {
        width: 100%;
        object-fit: cover; /* Ensure proper scaling */
    }
}

.dropdown .icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    transition: transform 0.3s ease;
}

.dropdown.open .icon {
    transform: translateY(-50%) rotate(180deg);
}

/*links below*/
.link-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-left: auto;
      margin-right: auto;
/*            display: block;*/
      max-width: 100%;

      padding: 20px;
      background: #ffffff;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .link-container a {
      text-decoration: none;
      color: #004599;
      font-weight: bold;
      padding: 10px 20px;
      border: 1px solid #007BFF;
      border-radius: 5px;
      transition: all 0.3s ease;
      font-size: 16px;
      flex: 1 1 calc(20% - 10px); /* Adjust the width */
      text-align: center;
    }

    .link-container a:hover {
      background-color: #007BFF;
      color: #ffffff;
    }

    @media (max-width: 768px) {
      .link-container a {
        flex: 1 1 calc(50% - 10px); /* Two links per row on smaller screens */
      }
    }

    @media (max-width: 480px) {
      .link-container a {
        flex: 1 1 100%; /* Single link per row on very small screens */
      }
    }

    /*footer*/
    /* Footer Styles */
.footer {
    background: #0d1b2a;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(27, 188, 155, 0.2);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Urbanist', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Urbanist', sans-serif;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    font-family: 'Urbanist', sans-serif;
}

.footer-col {
    flex: 1;
    min-width: 300px;
    font-family: 'Urbanist', sans-serif;
}

.footer-section {
    padding: 0 15px;
    font-family: 'Urbanist', sans-serif;
}

/* Common style for footer headings */
.footer-col h5,
.footer-col h6 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
}

/* Solid underline */
.footer-col h5::after,
.footer-col h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background: #1bbc9b;
    height: 3px;
    width: 40px;
    border-radius: 3px;
}

.footer-col,
.footer-section {
    text-align: left !important;
    font-family: 'Urbanist', sans-serif;
}

/* Footer contact info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: 'Urbanist', sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Urbanist', sans-serif;
}

.contact-icon {
    color: #1bbc9b;
    font-size: 1.1rem;
    min-width: 22px;
    padding-top: 3px;
    font-family: 'Urbanist', sans-serif;
}

/* Rotated phone icon */
.phone-icon-rotated {
    transform: rotate(180deg);
    display: inline-block;
}

.contact-text {
    font-size: 1.075rem;
    color: #d1d1d1;
    line-height: 1.5;
    font-family: 'Urbanist', sans-serif;
}

/* Social section */
.social-section {
    display: flex;
    flex-direction: column;
    font-family: 'Urbanist', sans-serif;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    font-family: 'Urbanist', sans-serif;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-family: 'Urbanist', sans-serif;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    font-family: 'Urbanist', sans-serif;
}

.social-item:hover .social-icon {
    background: rgba(27, 188, 155, 0.25);
    transform: translateY(-3px);
}

.social-label {
    font-size: 0.65rem;
    color: #bbbbbb;
    margin-top: 5px;
    transition: color 0.3s;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
}

.social-item:hover .social-label {
    color: #ffffff;
}

.copyright {
    /*text-align: center;*/
    padding-top: 10px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
}

/* Responsive styles */
@media (max-width: 992px) {
    .footer-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-col {
        min-width: 100%;
    }
    
    .social-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 576px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .social-label {
        font-size: 0.6rem;
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .footer-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-col {
        min-width: 100%;
    }
    
    .social-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 576px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .social-label {
        font-size: 0.6rem;
    }
}

/*end of footer*/

/* WhatsApp Icon Styles */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000; /* Ensure it stays above other elements */
  transition: transform 0.3s ease;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
}

.whatsapp-icon:hover {
  transform: scale(1.1); /* Enlarge the icon slightly on hover */
}

/* Responsive */
@media (min-width: 768px) {
  .whatsapp-icon {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 10px;
  }
}

@media (max-width: 768px) {
  .whatsapp-icon {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .whatsapp-icon {
    width: 45px;
    height: 45px;
    bottom: 10px;
    right: 10px;
  }
}