*{margin: 0; padding: 0; box-sizing: border-box;}

/* Fix for body to ensure proper rendering */
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

#wrapper {
  width: 95%; 
  margin: 0px auto;
  position: relative;
}

@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: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

/* FIXED HEADER STYLES */
header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 3%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  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;
  z-index: 1001;
}

/* Navbar styles */
.navbar {
  display: flex;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a,
.navbar ul li .dropdown-label {
  font-size: 15px;
  font-weight: bolder;
  padding: 15px 12px;
  color: #333;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.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: 1002;
}

.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: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #3cf;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Overlay when menu is open */
.navbar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

/* Responsive Styles - FIXED */
@media (max-width: 991px) {
  header {
    padding: 10px 15px;
    position: relative;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    border-right: 1px solid rgba(0,0,0,.1);
    display: block;
    box-shadow: 0 5px 25px rgba(0,0,0,.1);
    transition: all 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .navbar.active {
    left: 0;
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
    padding: 60px 0 20px;
  }

  .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;
    display: none;
  }

  .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 {
    left: 0;
  }
  
  #menu-bar:checked ~ .navbar-overlay {
    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);
  }
}

/* Rest of your existing CSS continues below... */

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 table of content*/
 .toc-container{font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;}

        /* TOC Container */
        .toc-container {
            display: flex;
/*            justify-content: center;*/
            align-items: flex-start;
/*            padding: 10px;*/
        }

        /* Navigation Bar */
        .toc {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
            background: #fff;
            color: #575757;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 15px rgba(0, 0, 0.0, 0.2);
        }

        .toc li {
            border-bottom: 1px solid #95a5a6;
        }

        .toc li:last-child {
            border-bottom: none;
        }

        .toc a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 5px 20px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            color: #C70039;
            background: #fff;
            transition: background 0.3s, transform 0.3s;
        }

        .toc a span {
            font-size: 0.9rem;
            color: #888;
        }

        .toc a:hover {
            background: #ffcc70;
            transform: translateX(10px);
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            .toc {
                width: 100%;
            }

            h1 {
                font-size: 2rem;
            }
        }
/*end of table of content*/

/*================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*/

h1{
text-align: center;
 margin: 5px auto;
 font-size: 22px;
 color: #0C6450;
 font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
  @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) {
h1 {
     text-align:;
     width: 85%;
      }
    }
h2 {
  text-align: center;
  margin: 5px auto;
  font-size: 20px;
  color: #0C6450;
  width: 85%;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}
h3{
  text-align: center;
  margin: 10px auto;
  font-size: 20px;
  color: #0C6450;
  font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}


/*starting of our mission div*/
.box-1{
  width: 100%;
  /*border: 1px dotted #575757;*/
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  grid-gap: 20px;
  margin-top: 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) {
.box-1{
    width: 100%;
    margin: 0px auto;
    }
    }
/*sector 36 css*/

.room-1{
  width: 100%;
  margin: 0px auto;
  border: 1px dotted #575757;
  border-radius: 5px;
  display: grid;
  /*grid-template-columns: 45px 1fr;*/
  grid-gap: 5px;
}


.room-1 img {
 width: 85%; /* Keep the image responsive */
  height: 278px; /* Make image fill the height */
  object-fit: cover; /* Prevent image distortion */
  border-radius: 5px;
  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) {
.room-1 img{
    width: 98%;
    height: auto;
    margin-top: 20px;
      }
    }

.box-1 .room-1 .div1 p{
writing-mode: vertical-rl;
transform: rotate(180deg);
background-color: #0C6450;
margin-top: 20px;
color: white;
font-size: 16px;
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
border-radius: 3px;
}
/*sector 36 css*/


.room-2 { 
  width: 100%;
  margin: 0px auto;
  border: 1px dotted #575757;
  border-radius: 5px;
  display: grid;
  grid-template-rows: repeat(7, 36px);
  grid-template-columns: 45px 1fr;
  grid-gap: 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) {
.room-1 {
 display: none;
      }
}
.div1{
      grid-row: 1/8;
      border-radius: 5px;
      border: 1px dotted #575757; 
    }
.box-1 .room-2 .div1 p{
writing-mode: vertical-rl;
transform: rotate(180deg);
background-color: #0C6450;
margin-top: 20px;
color: white;
font-size: 16px;
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
border-radius: 3px;
}


.div2{ border-radius: 5px;
 border: 1px dotted #575757;
}
.div2 p{
  margin: 7px auto;
  width: 85%; 
  font-size: 16px;
  color: #575757;
}
.div3{ border-radius: 5px; 
     border: 1px dotted #575757;
    }
.div3 p{
  margin: 7px auto;
  width: 85%; 
  font-size: 16px;
  color: #575757;
}
.div4-contra{border-radius: 5px;
 border: 1px dotted #575757
}
.div4-contra p{
  margin: 7px auto;
  width: 85%; 
  font-size: 16px;
  color: #575757;
}
.div5,.div5n{ border-radius: 5px;
 border: 1px dotted #575757
}
.div5 p{

  margin: 7px auto;
  width: 85%; 
  font-size: 16px;
  color: #575757;
}
.div5n p{
  margin: 7px auto;
  width: 85%; 
  font-size: 16px;
  color: #575757;
}

 /*==================end of our mission div===============*/

.str37{width: 100%; margin: 0px auto;}
.str37 p{text-align: justify; color: #575757; margin: 10 px auto;}

/*--------------starting of css of layout div-----------*/
.layout {
  display: flex; /* Flexbox for layout */
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  width: 100%;
  margin: 1px auto;
  padding: 5px;
  border-radius: 10px;
}

.p-graph {
  flex: 1 1 100%; /* Make the paragraph take the full width */
  order: 1; /* Keep paragraph first in desktop */
  margin-bottom: 15px; /* Add space below the paragraph */
}
.p-graph p{text-align: justify;}
#one {
  flex: 0 0 35%; /* Image takes 35% width */
  margin-right: 15px; /* Space to the right of the image */
  order: 2; /* Image comes after the paragraph in desktop */
}

#one img {
  width: 100%; /* Image responsive */
  height: auto; /* Maintain aspect ratio */
  margin-top: 20px;
}

#two {
  flex: 1; /* Table takes remaining space */
  min-height: 170px;
  color: #575757;
  order: 3; /* Table comes after image */
}

/* Responsive layout for smaller screens (mobile/tablets) */
@media all and (max-width: 768px) {
  .layout {
    flex-direction: column; /* Stack elements vertically on mobile */
  }

  .p-graph {
    order: 2; /* Move the paragraph below the image on mobile */
  }

  #one {
    flex: 1 1 auto; /* Image takes full width */
    margin-right: 0; /* Remove right margin */
    width: 100%; /* Full width for image */
    order: 1; /* Make sure image is on top */
  }

  #two {
    order: 3; /* Move the table below the paragraph on mobile */
    flex: 1 1 auto; /* Allow flexible width/height */
    width: 100%; /* Full width for table */
  }
}

/*--------------ending of css of layout div-----------*/

.price-37{
  width: 100%;
  margin: 15px auto;
}
.price-37 .divTable{width: 70%; margin: 10px 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) {
.price-37 .divTable {
 width: 100%;
      }
}
/* Paragraph Styling */
.content-paragraph {
  font-size: 1rem;
  color: #575757;
  text-indent: 50px;
  text-align: justify; /* Justifies the text for a clean look */
  line-height: 1.8; /* Comfortable line spacing */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .content-image {
    float: none; /* Removes float on mobile */
    display: block;
    margin: 0 auto 10px auto; /* Center the image */
    width: 100%; /* Image takes full width */
    max-width: 400px; /* Prevents the image from being too large */
  }

  .image-link {
    text-align: center; /* Center-align the link */
  }

  .content-paragraph {
    text-align: justify; /* Optional: Adjust text alignment for better readability */
  }
}

/*future starting*/
.new-2{width: 100%; margin: 1px auto;
/*      border: 1px solid #575757; */
      border-radius: 5px; 
      padding: 5px;
    }
.pahara{margin: 0px;}
.new-2 .pahara p{margin: 0px;}
.new-2 img{
  float: left;
  width: 380px;
  height: auto;
  border: 1px solid #575757;
  border-radius: 15px;
  margin: 0px 10px 0px 0px
}
@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) {
.new-2 img { 
width: 100%;
margin: 10px;
margin: 0px 0px 10px 0px
}
}

.new-2 p {
  text-align: justify;
  margin: 5px;
  width: 98%;
  color: #575757;
}

@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) {
.new-2 p { 
width: 100%;
/*text-indent: 40px;*/
/*text-align: center;*/
letter-spacing: 1px;
}
}

/*.geo{
  width: 100%;
  display: grid;
  margin: 20px auto;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-column-gap: 15px;
  grid-row-gap: 10px;
  grid-auto-rows: auto;
}*/


.geo1 p{width: 98%; color: #575757; text-align: justify; }
.geo2 p{width: 98%; color: #575757; text-align: justify; letter-spacing: 2px;}
.geo3 p{width: 98%; color: #575757; text-align: justify; letter-spacing: 2px;}

.geo4{border: 1px solid #575757;}
.geo4 img{width: 95%; height: 280px; margin-left: auto; margin-right: auto; display: block;}
.geo4 p{width: 100%; text-align: center; color: #575757;}

.geo5{border: 1px solid #575757;}
.geo5 img{width: 95%; height: 275px; margin-left: auto; margin-right: auto; display: block;}
.geo5 p{width: 98%; text-align: center; color: #575757;}

.geo6{border: 1px solid #575757;}
.geo6 img{width: 95%; height: 280px; margin-left: auto; margin-right: auto; display: block;}
.geo6 p{width: 95%; text-align: center; color: #575757;}

.geo7{border: 1px solid #575757;}
.geo7 iframe{width: 95%; height: 280px; margin-left: auto; margin-right: auto; display: block;}
.geo7 p{width: 95%; text-align: center; color: #575757;}

.geo8{border: 1px solid #575757;}
.geo8 img{width: 95%; height: 280px; padding: 20px; margin-left: auto; margin-right: auto; display: block;}
.geo8 p{width: 95%; text-align: center; color: #575757;}

.geo9{border: 1px solid #575757;}
.geo9 img{width: 95%; height: 280px; padding: 20px; margin-left: auto; margin-right: auto; display: block;}
.geo9 p{width: 95%; text-align: center; color: #575757;}

.geo10{border: 1px solid #575757;}
.geo10 img{width: 95%; height: 280px; margin-left: auto; margin-right: auto; display: block; align-items: center;}
.geo10 p{width: 100%; text-align: center; color: #575757;}

.geo10{border: 1px solid #575757;}
.geo10 img{width: 95%; height: 280px; margin-left: auto; margin-right: auto; display: block; align-items: center;}
.geo10 p{width: 95%; text-align: center; color: #575757;}

.geo11{border: 1px solid #575757;}
.geo11 img{width: 95%; padding: 20px; height: 300px; margin-left: auto; margin-right: auto; display: block; align-items: center;}
.geo11 p{width: 95%; text-align: center; color: #575757;}
/*future ending*/

.exis-dev{width: 95%; margin:0px auto;}
.exis-dev p{text-indent: 0px; margin:5px auto; color: #575757; text-align: justify;}
.dev .divTable{width: 70%; margin: 20px 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) {
.dev .divTable{
width: 98%;
       }
    }


/* Content Container */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 20px;
}

.content-container {
  width: 95%;
  margin: 0 auto;
/*  background: white;*/
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(.5, .5, .4, 0.4);
  display: block;
}
@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) {
.content-container{
 width: 98%;
       }
    }
/* Image Styling */
.content-image {
  float: left; /* Floats the image to the left */
  width: 300px; /* Adjust size as needed */
  height: auto;
  margin-right: 20px; /* Space between image and text */
  border-radius: 10px;
}

/* Link Styling */
.image-link {
  display: block; /* Ensures the link appears on a new line */
  margin: 10px 0 20px 0; /* Adds space above and below the link */
  color: #007BFF; /* Link color */
  text-decoration: none; /* Remove underline */
  font-size: 0.9rem;
  font-weight: bold;
}

.image-link:hover {
  text-decoration: underline; /* Add underline on hover for better UX */
}

.ddb {
  width: 65%;
  margin: 20px auto;
  border-radius: 5px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
}

.ddb-1 img, .ddb-2 img {
  width: 100%;
  height: 300px; /* Consistent height across all screen sizes */
  border-radius: 10px;
  object-fit: cover; /* Ensures images fill their containers without distortion */
}

@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) {
  .ddb {
    width: 100%;
    margin: 20px auto;
    border-radius: 5px;
    display: grid;
    grid-template-rows: repeat(auto, 300px); /* Auto-adjust rows to image height */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 10px; /* Reduced gap for smaller screens */
  }

  .ddb-1 img, .ddb-2 img {
    width: 100%;
    height: 250px; /* Uniform height across all devices */
    border-radius: 10px;
    object-fit: cover;
  }
}



.mata-a , .mata-b{
  margin: 20px auto;
  width: 100%;
}
.mata-a p{
   width: 98%;
   text-align: justify;
   margin-left: auto;
   margin-right: auto;
   display: block;
   color: #575757;
   letter-spacing: 1px;
}
.mata-b p{
   width: 98%;
   text-align: justify;
   /*text-indent: 75px;*/
   /*margin-top: 15px;*/
   margin-left: auto;
   margin-right: auto;
   display: block;
   color: #575757;
   letter-spacing: 1px;
}
.feena img {width: 50%; margin: 15px auto; display: block;}
@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) {
.feena img{
    width: 100%;
      }
    }
/* Paragraph Styling */
.content-paragraph {
  font-size: 1rem;
  color: #575757;
  text-align: justify; /* Justifies the text for a clean look */
  line-height: 1.8; /* Comfortable line spacing */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .content-image {
    float: none; /* Removes float on mobile */
    display: block;
    margin: 0 auto 10px auto; /* Center the image */
    width: 100%; /* Image takes full width */
    max-width: 400px; /* Prevents the image from being too large */
  }

  .image-link {
    text-align: center; /* Center-align the link */
  }

  .content-paragraph {
    text-align: left; /* Optional: Adjust text alignment for better readability */
  }
}


/*--------starting of css of FAQ -------------*/

.ques{
  width: 70%;
  margin: 10px 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) {
.ques{
    width: 90%;
      }
    }

 *::before, *::after {
   box-sizing: border-box;
}
 .questionbody {
  /*border: 1px dotted #575757;*/
   margin: 0;
   padding: 0;
   color: #575757;
   display: flex;
   /*min-height: 100vh;*/
}
 .containerd {
   margin: 0 auto;
   /*padding: 2rem;*/
   width: 100%;
}

@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) {
.containerd{
  width: 95%;
      }
}
 .accordion .accordion-item {
   border-bottom: 1px solid #e5e5e5;
}
 .accordion .accordion-item button[aria-expanded='true'] {
   border-bottom: 1px solid #03b5d2;
}
 .accordion button {
   position: relative;
   display: block;
   text-align: left;
   width: 100%;
   padding: 1em 0;
   color: #7288a2;
   font-size: 1rem;
   font-weight: 400;
   border: none;
   background: none;
   outline: none;
}
 .accordion button:hover, .accordion button:focus {
   cursor: pointer;
   color: #03b5d2;
}
 .accordion button:hover::after, .accordion button:focus::after {
   cursor: pointer;
   color: #03b5d2;
   border: 1px solid #03b5d2;
}
 .accordion button .accordion-title {
   /*padding: 1em 1.5em 1em 0;*/
   text-align: justify;
   color: #575757;
}

 .accordion button .accordion-title p {
   text-align: justify;
   width: 90%;

}


 .accordion button .icon {
   display: inline-block;
   position: absolute;
   top: 18px;
   right: 0;
   width: 22px;
   height: 22px;
   border: 1px solid;
   border-radius: 22px;
}
 .accordion button .icon::before {
   display: block;
   position: absolute;
   content: '';
   top: 9px;
   left: 5px;
   width: 10px;
   height: 2px;
   background: currentColor;
}
 .accordion button .icon::after {
   display: block;
   position: absolute;
   content: '';
   top: 5px;
   left: 9px;
   width: 2px;
   height: 10px;
   background: currentColor;
}
 .accordion button[aria-expanded='true'] {
   color: #03b5d2;
}
 .accordion button[aria-expanded='true'] .icon::after {
   width: 0;
}
 .accordion button[aria-expanded='true'] + .accordion-content {
   opacity: 1;
   max-height: 50em;
   transition: all 200ms linear;
   will-change: opacity, max-height;
   /*margin-left: 15px;*/
}
 .accordion .accordion-content {
   opacity: 0;
   max-height: 0;
   overflow: hidden;
   transition: opacity 200ms linear, max-height 200ms linear;
   will-change: opacity, max-height;
   /*margin-left: 15px;*/
}
 .accordion .accordion-content p {
   font-size: 17px;
   margin: 15px;
   padding: 5px;
   color: #575757;
   text-align: justify;
}

/*--------ending of css of FAQ -------------*/
/*starting of 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;
    }
}
/*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;
  }
}
/*end of footer*/



    .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: 95%;

      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: #007BFF;
      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 */
      }
    }

    
.eeat-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  width: 100%;
  margin: 10px auto;
  background-color: #f9f9f9;
  background: linear-gradient(119deg, rgba(255, 255, 255, 1) 0%, rgba(249, 249, 249, 1) 100%);
}

.eeat-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.eeat-author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.eeat-author-info .eeat-author-role {
  color: green;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
}

.eeat-author-info .eeat-author-name {
  font-size: 16px;
  margin: 4px 0;
  font-weight: 600;
  text-align: left;
}

.eeat-author-info .eeat-date {
  color: #777;
  font-size: 14px;
}

@media (max-width: 320px) {
  .eeat-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .eeat-author-img {
    margin-bottom: 10px;
  }
}


.know{width:98%;
      margin: 5px auto;    
}
.know .divTableCell {border: 1px solid #575757;}
/*starting of cons div*/

.cons {width: 75%; margin: 10px 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) {
.cons {
 width: 98%;
      }
}
.cons .divTable {
  display: table;
  width: 100%;
}

.cons .divTableRow {
  display: table-row;
}

.cons .divTableCell {
  border: 1px solid #999999;
  display: table-cell;
  text-align: justify;
  padding: 3px 10px;
  width: 50%; /* Each cell will take 50% of the row */
  box-sizing: border-box; /* Ensures padding and borders are included in the width */
}

/* Optional additional styles */
.cons .divTableHeading {
  background-color: #EEE;
  display: table-header-group;
  font-weight: bold;
}

.cons .divTableFoot {
  background-color: #EEE;
  display: table-footer-group;
  font-weight: bold;
}

.cons .divTableBody {
  display: table-row-group;
}

/*end of cons div*/