*{margin:0; padding: 0; box-sizing: border-box;}
#wrapper{ max-width: 93%;
          margin: auto; 
/*          background-color: yellowgreen;*/
        }

 @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: 95%;
      }
}

p{
  margin-top: 1px;
  letter-spacing: 1px;
  text-align: justify;
  font-size: 16px;
  color: grey;
}


/* Container and Image Styles */
.containerz {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
}

.containerz img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
}

.containerz::after {
    content: "";
    display: block;
    height: 40px;
}

/* Header Styles */
header {
    position: absolute;
    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);
    }
}

/* Image height adjustments */
@media (min-width: 769px) {
    .containerz img {
        max-height: 450px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .containerz img {
        max-height: 300px;
        min-height: 200px;
    }
}

.phone-number {
            position: fixed;
            top: 50%;
            left: 3px;
            transform: translateY(-50%) rotate(180deg);
            background-color: #545454;
            color: white;
            padding: 5px;
            font-size: 18px;
            font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
            font-weight: normal;
            border-radius: 5px;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
            writing-mode: vertical-lr; /* Left to right */
            text-orientation: mixed;
            /*margin-left: 5px;*/
        }

        .phone-number a {
            color: white;
            text-decoration: none;
        }

        .phone-number a:hover {
/*            text-decoration: underline;*/
        }

/*================css of table======================start*/
.div-table-cell{width: 100%;
  border-radius: 0px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 0px solid grey;
  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;
  /*margin-top: px;*/
      }
}
.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;
}
.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;
   font-size: 25px;
   color: #3CF;
   font-family: monospace;
   /*margin-bottom: 15px;*/
   /*margin-top: 20px;*/
 }

h2{text-align: center;
color: #3cf;
font-size: 20px;
margin-top: 20px;
margin-bottom: 5px;
font-family: monospace;
text-decoration: underline;
}

h3{
text-align: center;
font-size: 20px;
text-decoration: underline;
margin-top: 10px;
margin-bottom: 5px;
color: #3cf;
font-family: monospace;
}

h4{
text-align: center;
font-size: 20px;
text-decoration: underline;
margin-top: 10px;
margin-bottom: 10px;
color: #3cf;
font-family: monospace;
}


h5{
text-align: center;
font-size: 17px;
text-decoration: underline;
margin-top: 10px;
margin-bottom: 10px;
color: #3cf;
font-family: monospace;
}


h6{
text-align: center;
font-size: 17px;
text-decoration: underline;
margin-top: 10px;
margin-bottom: 10px;
color: #3cf;
font-family: monospace;
}


.font{width: 95%; margin: 20px auto;}
.font p{ font-size: 16px; letter-spacing: 1px; text-align: justify;}
.font img{width: 95%; margin-left: auto; margin-right: auto; display: block; margin-top: 25px;}
@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) {
.font img{
  width: 100%;
      }
    }

 

.div37{
  width: 100%;
}

.div37, .rp p{
   width: 95%;
   text-align: justify;
   text-indent: 75px;
   margin-top: 15px;
   margin-left: auto;
   margin-right: auto;
   display: block;
   color: grey;
   letter-spacing: 1px;
   font-size: 16px;
   /*font-style: italic;*/
}
 @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) {
.div37, .rp p{
width: 98%;
      }
}



/*--------------starting of css of layout div-----------*/
.layout {
  width: 98%; 
  /*border : 1px solid grey; */
  overflow:hidden;
  margin: 1px auto;
  padding: 10px;
  border-radius: 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) {
.layout{
width: 100%;
      }
}
.layout p{
   width: 98%;
   text-align: justify;
   /*text-indent: 75px;*/
   /*margin-top: 15px;*/
   margin-left: auto;
   margin-right: auto;
   display: block;
   color: grey;
   letter-spacing: 1px;
   /*font-style: italic;*/
}

 @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) {
.layout p{
width: 100%;
      }
}

#one {
  float:left; 
  margin-right:15px;
  width:35%;
  /*border:2px dashed #3cf;*/
  /*border-radius: 0px 70px;*/
}
#one img{
  width: 100%;
  height: 275px;
  margin-top: 20px;
  /*margin-bottom: 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) {
#one img{ margin-bottom: 0px; margin-top: 0px; height: auto;}
}


#two { 
  overflow:hidden;
  /*margin:10px;*/
  /*border:1px dashed #ccc;*/
  min-height:170px;
  /*border-radius: 0px 70px;*/
  color: grey;
}

@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) {
#one{float: none;
    margin-right:0;
    width:auto;
    border:0;
       }
}
.pahara{margin: 0px;}
.new-2 .pahara p{margin: 0px;}
.new-2{border-radius: 15px;}
.new-2 img{
  float: left;
  width: 380px;
  height: auto;
  border: 1px solid grey;
  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: grey;
}

@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;
}
}

.ddo, .ddb{
 width: 75%;
 margin: 20px auto;
 /*border:1px dotted grey;*/
 border-radius: 5px;
 display: grid;
 /*grid-template-rows: repeat(2, 150px);*/
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 grid-gap: 15px;
}

@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) {
.ddo, .ddb{
 width: 100%;
 margin: 20px auto;
 border:1px dotted grey;
 border-radius: 5px;
 display: grid;
 /*grid-template-rows: repeat(2, 150px);*/
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 grid-gap: 15px;
       }
    }

.ddo-1 img{width: 98%; height: 275px;}
.ddo-2 img{width: 98%; height: 275px;}


.ddb-1 img{width: 98%; height: 300px;}

.ddb-2 img{width: 98%; height: 300px;}

.zero{width: 95%; margin: 0px auto;}

/*--------------starting of css of lay div-----------*/
.lay {
  width: 98%; 
  /*border : 1px solid #DCDCDC; */
  background-color: lightcyan;
  overflow:hidden;
  margin: 0px auto;
  border-radius: 15px;
}

#zon-one {
  float:left; 
  /*margin-right:10px;*/
  width:60%;
}
#zon-one p{
 text-align: justify;
 text-indent: 70px;
 padding: 10px;
 color: grey;
}
#zon-two { 
  overflow:hidden;
  /*margin:10px;*/
  border:1px solid white;
  min-height:170px;
  /*border-radius: 0px 70px;*/
}
#zon-two img{
  width: 90%;
  height: 312px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: 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) {
#zon-two img { 
height: auto;
width: 98%;
}
}

@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) {
#zon-one { 
 margin-right:0;
    width:auto;
    border:0;
}
}

#zon-audi{ overflow:hidden;
  border:1px solid white;
  min-height:170px;
}
#zon-audi img{
  width: 90%;
  height: 375px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: 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) {
#zon-audi img { 
height: auto;
width: 98%;
}
}



#zon-35 { 
  overflow:hidden;
  /*margin:10px;*/
  border:1px solid white;
  min-height:170px;
  /*border-radius: 0px 70px;*/
}
#zon-35 img{
  width: 90%;
  height: 385px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: 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) {
#zon-35 img { 
height: auto;
width: 98%;
}
}

.dora img{
  width: 95%; 
  height: 180px;
  /*border: 1px solid grey; */
  margin-left: auto; 
  margin-right: auto;display: block ;
}

.dori img{
  width: 95%; 
  height: 180px;
  /*border: 1px solid grey; */
  margin-left: auto; 
  margin-right: 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) {
.dori img { 
  width: 95%; 
  height: 125px;
  /*border: 1px solid grey; */
  margin-left: auto; 
  margin-right: auto;display: block ;
}
}

#saga-2{ 
  overflow:hidden;
  margin-top: 5px;
  border:1px solid #DCDCDC;
  min-height:170px;
  /*margin-right: 30px;*/
  border-radius: 10px;
}
#saga-2 img{
  width: 100%;
  height: 320px;
}

@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) {
#saga-2 img { 
  width: 100%;
  margin-left: auto;
  margin-right: auto; 
  display:block; 
  border-radius: 10px;
  height: auto;
}
}

.sagi-2{ 
  overflow:hidden;
  margin-top: 5px;
  border:1px solid #DCDCDC;
  min-height:170px;
  /*margin-right: 30px;*/
  border-radius: 10px;
}
.sagi-2 img{
  width: 100%;
  height: 320px;
}

@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) {
.sagi-2 img{ 
  width: 100%;
 
  height: 250px;
  border-radius: 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) {
#saga-1 { 
 margin-right:0;
    width:auto;
    border:0;
}
}

/*-------------------*/
.teja {
  width: 98%; 
  /*border : 1px solid #DCDCDC; */
  overflow:hidden;
  margin: 0px auto;
}

#teja-1 {
  float:left; 
  /*margin: 0px auto;*/
  width:65%;
  /*border: 1px solid #DCDCDC;*/
}
#teja-1 p{
 margin: 0px;
 color: grey;
}

#dot img{
  width: 95%;
  margin: 0px; 
}

#teja-2 { 
  overflow:hidden;
  margin-top: 5px;
  border:1px solid #DCDCDC;
  min-height:170px;
  /*margin-right: 30px;*/
  border-radius: 10px;
}



#teja-2 img{
  width: 100%;
  height: 320px;
  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) {
#teja-2 img { 
  width: 90%;
  margin-left: auto;
  margin-right: auto; 
  display:block; 
  border-radius: 10px;
  height: 250px;
}
}

@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) {
#teja-1 { 
 margin-right:0;
    width:auto;
    border:0;
}
}


/*end of div11*/
/*----------------------*/
.layout-maps { width: 95%; margin:10px auto; }
.layout-maps p{color: grey; padding: 0px; text-align: center; text-align: justify;}


/*.dom{background-color: yellowgreen;}*/
.dom img{width: 70%; margin-left: auto; margin-right: auto; display: block; 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) {
#dom img { 
width: 100%;
}
}
.pic{width: 90%; 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) {
.pic{ 
width: 100%;
}
}

/*-------ending of css of lay div------------*/

/*-----------------starting of DD-1 div---REal vs fake price analysis------------*/

.DD-1{
 width: 75%;
 margin: 20px auto;
 /*border:1px dotted grey;*/
 /*border-radius: 10px;*/
 display: grid;
 /*grid-template-rows: repeat(2, 150px);*/
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 grid-gap: 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) {
.DD-1{
    width: 100%;
       }
}

/*.DD-1 .z-1 img{
  width: 98%;
}*/

.z-1{
       border: 1px dotted grey;
       border-radius: 10px;
       padding: 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) {
.z-1{
    width: 90%;
    margin-left: auto;
  margin-right: auto;
  display: block;
       }
}


.DD-1 .z-1 img{
  width: 90%;
  margin-left: auto;
  margin-right: 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) {
.DD-1 .z-1 img{
    width: 98%;
    height: auto;
      }
    }*/
.z-2{
       border: 1px dotted grey;
       border-radius: 10px;
       padding: 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) {
.z-2{
    width: 90%;
    margin-left: auto;
  margin-right: auto;
  display: block;
       }
}


.DD-1 .z-2 img{
  width: 90%;
  margin-left: auto;
  margin-right: 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) {
.DD-1 .z-2 img{
    width: 98%;
    height: auto;
      }
    }*/
/*-----------------ending of DD-1 div---REal vs fake price analysis------------*/

.price-calculation img{
  width: 98%;
  margin-left: auto;
  margin-right: 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) {
.price-calculation img{
    width: 98%;
    height: auto;
      }
    }

.price-calculation-sheet img{
  width: 70%;
  margin-left: auto;
  margin-right: 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) {
.price-calculation-sheet img{
    width: 98%;
    height: auto;
      }
    }

.existing p{
  width: 95%;
   text-align: justify;
   /*text-indent: 75px;*/
   /*margin-top: 15px;*/
   margin-left: auto;
   margin-right: auto;
   display: block;
   color: grey;
   letter-spacing: 1px;
   /*font-style: italic;*/
}
.futuristic-development{
  margin: 10px auto;
  width: 98%;
}
.futuristic-development p{
   width: 98%;
   text-align: justify;
   margin-left: auto;
   margin-right: auto;
   display: block;
   color: grey;
   letter-spacing: 1px;
}

.dolo{width: 87%; 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) {
.dolo{
    width: 100%;
    height: auto;
      }
    }
.futu{width: 85%; margin: 15px 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) {
.futu{
    width: 100%;
    height: auto;

      }
    }
.futuristic-development img{
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 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) {
.futuristic-development img{
    width: 95%;
    height: auto;
      }
    }
.lop img{
 width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 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) {
.lop img{
    width: 95%;
    height: auto;
      }
    }
.dev{
  margin: 35px auto;
  width: 75%;
  color: grey;
     }
@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{
    width: 95%;

       }
}
.dev p{
  font-size: 16px;
  margin-left: 2px;
  vertical-align: middle;
}
.nic{width: 100%;}
.nic img{width: 90%; margin-left: auto; margin-right: auto; display: block; margin-top: 20px;}
@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) {
.nic img{
    width: 100%;
      }
    }
.mata{
width: 30%;
margin-left: auto;
margin-right: auto;
display: block;
color: grey;
}


@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) {
.mata{
    width: 75%;
      }
    }
.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: grey;
   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: grey;
   letter-spacing: 1px;
}

.feena{width: 30%; margin: 15px 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) {
.feena{
    width: 75%;
      }
    }
.heena img{width: 100%;}

.heena{width: 30%; margin: 15px 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) {
.feena{
    width: 75%;
      }
    }
.feena img{width: 100%;}


.rohini-34{
  width: 80%;
  margin: 5px auto;
  display: grid;
  grid-template-rows: repeat(2, 100px);
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr) );
  grid-gap: 25px;
  grid-auto-rows: 100px;
  margin-bottom: 20px;
   }

.rohini-34 .div4{border: 1px dotted grey; }
.rohini-34 img{
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.rohini34d p{
   width: 90%;
   text-align: justify;
   /*text-indent: 75px;*/
   /*margin-top: 15px;*/
   margin-left: auto;
   margin-right: auto;
   display: block;
   color: grey;
   letter-spacing: 1px;
   font-size: 16px;
   /*font-style: italic;*/
}

.main-faq{
  width: 75%;
  border: 1px solid grey;
  margin: 5px auto;
  display: grid;
  grid-row-gap: 10px;
  margin-bottom: 60px;
}
@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) {
.main-faq{
    width: 90%;
      }
    }

.inner-faq{
  width: 98%;
  border: 1px dotted grey;
  margin: 5px auto;
  display: grid;
   grid-template-rows: repeat(2);
  grid-template-columns: 50px 1fr;
  text-align: justify;
  padding: 8px;
  /*margin-bottom: 15px;*/
           }

.mtr img{
  width: 25%;
} 
@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) {
.mtr img{
    width: 50%;
      }
    }
.beta {
  width: 70%;
  margin: 15px 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) {
.beta{
    width: 95%;
      }
    }
.enquiry{
  width: 80%;
  margin: 0px auto;
  /*border: 1px dotted grey;*/
}
@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) {
.enquiry{
    width: 100%;
      }
    }
.enquiry p{
  font-size: 30px;
  color: #3cf;
  text-align: center;
  margin: 30px auto;
}

.plot p{text-align: justify; width: 85%; color: grey; 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) {
.plot p{
    width: 95%;
      }
    }

/*-----starting of css of sector-34 plots for sale page-------*/
.sale{
 width: 95%;
 margin: 50px auto;
 /*border:1px solid black;*/
 /*color: white;*/
 display: grid;
 grid-template-rows: repeat(2, 550px);
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 grid-row-gap: 50px;
 grid-column-gap: 25px;
 /*grid-gap: 20px;*/
 grid-auto-rows: 550px;
 /*align-items: center;*/
 /*justify-content: center;*/
 /*justify-items:center; start/end/strech*/
}

.plot p{text-align: justify; width: 85%; color: grey; 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) {
.sale{
    width: 80%;
    margin: 25px auto;
      }
    }


.sale-1, .sale-2, .sale-3, .sale-4, .sale-5, .sale-6, .sale-7, .sale-8{ 
  border: 1px solid grey ;
  border-radius: 5px; 
}

.sale-1 img{
width: 100%;
height: 250px;
border-radius: 5px;
}
.sale-2 img{
width: 100%;
height: 250px;
border-radius: 5px;
}
.sale-3 img{
width: 100%;
height: 250px;
border-radius: 5px;
}
.sale-4 img{
width: 100%;
height: 250px;
border-radius: 5px;
}
.sale-5 img{
width: 100%;
height: 250px;
border-radius: 5px;
}
.sale-6 img{
width: 100%;
height: 250px;
border-radius: 5px;
}
.sale-7 img{
width: 100%;
height: 250px;
border-radius: 5px;
}
.sale-8 img{
width: 100%;
height: 250px;
border-radius: 5px;
}
.sale-1, .sale-2, .sale-3, .sale-4, .sale-5, .sale-6, .sale-7, .sale-8 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

@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) {
.sale-1, .sale-2, .sale-3, .sale-4, .sale-5, .sale-6, .sale-7, .sale-8{
    width: 100%;
    /*margin: 0px auto;*/
    /*margin-left: auto;*/
    /*margin-right: auto;*/
    /*display: block;*/
      }
    }
.sale-1 p{
  width: 95%;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: grey;
}

.sale-2 p{
  width: 95%;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: grey;
}
.sale-3 p{
  width: 95%;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: grey;
}
.sale-4 p{
  width: 95%;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: grey;
}
.sale-5 p{
  width: 95%;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: grey;
}
.sale-6 p{
  width: 95%;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: grey;
}
.sale-7 p{
  width: 95%;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: grey;
}
.sale-8 p{
  width: 95%;
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: grey;
}

.button {
  border: none;
  color: white;
  padding: 5px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 10px 2px;
  cursor: pointer;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.button1 {background-color: #3cf;}




/* DivTable.com */
.divTable{
  display: table;
  width: 100%;
}
.divTableRow {
  display: table-row;
}
.divTableHeading {
  background-color: #EEE;
  display: table-header-group;
}
.divTableCell, .divTableHead {
  border: 1px solid #999999;
  display: table-cell;
  padding: 3px 10px;
}
.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;
}



/*-----ending of css of sector-34 plots for sale page-------*/

/*---------About us page------------*/
.Abot{width: 75%; margin: 25px auto;}
/*---------About us page end------------*/


/*--------starting of css of FAQ -------------*/

.ques{
  width: 70%;
  margin: 10px auto;
  /*border: 1px dotted grey;*/
}

@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 grey;*/
   margin: 0;
   padding: 0;
   color: #4d5974;
   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;
}

 .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;
   font-weight: 300;
   margin: 15px;
   padding: 5px;
   color: grey;
   text-align: justify;
}

/*--------ending of css of FAQ -------------*/


/*------starting of sector-29 & 30 css------*/

.yuva{
 width: 70%;
 margin: 20px auto;
 border:1px solid black;
 display: grid;
 border-radius: 5px;
 /*grid-template-rows: repeat(2, 150px);*/
 grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
 grid-gap: 20px;
 /*grid-auto-rows: 150px;*/
 /*align-items: center;*/
 /*justify-content: center;*/
 /*justify-items:center; start/end/strech*/
}

@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) {
.yuva{
width: 90%;
       }
}

.yuva-1{

       border: 1px dotted grey;
       /*padding: 30px;*/
       border-radius: 5px;
       align-items: center;


     }
.yuva-1 p{font-size: 20px;
           font-family: monospace;
          text-align: justify;
          margin: 30px;
           margin-top: 70px;
           color: #00CED1;
  }
@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) {
.yuva-1 p{
    font-size: 25px;
       }
}
.yuva-2{
       border: 1px dotted grey;
       /*padding: 10px;*/
       border-radius: 5px;
     }
.yuva-2 img{width: 100%;
             height: 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) {
.yuva-2 img{
    height: auto;
       }
}

/*------ending of sector-29 & 30 css------*/


/*social media*/

.middle{
  position: unset;
  top: 50%;
  /*transform: translateY(-50%);*/
  width: 100%;
  text-align: center;
}
.btn{
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #f1f1f1;
  margin: 10px;
  border-radius: 30%;
  box-shadow: 0 5px 15px -5px #00000070;
  color: #3498db;
  overflow: hidden;
  position: relative;
}
.btn i{
  line-height: 40px;
  font-size: 23px;
  transition: 0.2s linear;
}
.btn:hover i{
  transform: scale(1.3);
  color: #f1f1f1;
}
.btn::before{
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: #3498db;
  transform: rotate(45deg);
  left: -110%;
  top: 90%;
}
.btn:hover::before{
  animation: aaa 0.7s 1;
  top: -10%;
  left: -10%;
}
@keyframes aaa {
  0%{
    left: -110%;
    top: 90%;
  }50%{
    left: 10%;
    top: -30%;
  }100%{
    top: -10%;
    left: -10%;
  }
}

/*end of social media*/

.zo{width: 95%; margin: 0px auto;}

/*css of layout maps page*/
.geo{
  width: 100%;
  /*border: 1px solid grey;*/
  display: grid;
  margin: 20px auto;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  /*grid-gap: 25px;*/
  grid-column-gap: 15px;
  grid-row-gap: 10px;
  grid-auto-rows: auto;
}

.geo1{border: 1px dotted grey; padding: 10px; border-radius: 5px;}
.geo1 img{width: 95%; margin-left: auto; margin-right: auto; display: block;}
.geo1 p{width: 98%; color: grey; text-align: justify; }


.geo2{border: 1px dotted grey; padding: 10px; border-radius: 5px;}
.geo2 img{width: 95%; margin-left: auto; margin-right: auto; display: block;}
.geo2 p{width: 98%; color: grey; text-align: justify; letter-spacing: 2px;}


.geo3{border: 1px dotted grey; padding: 10px; border-radius: 5px;}
.geo3 img{width: 95%; margin-left: auto; margin-right: auto; display: block;}
.geo3 p{width: 98%; color: grey; text-align: justify; letter-spacing: 2px;}

.geo4{border: 1px solid grey;}
.geo4 img{width: 95%; height: 280px; margin-left: auto; margin-right: auto; display: block;}
.geo4 p{width: 100%; text-align: center; color: grey;}

.geo5{border: 1px solid grey;}
.geo5 img{width: 95%; height: 275px; margin-left: auto; margin-right: auto; display: block;}
.geo5 p{width: 98%; text-align: center; color: grey;}

.geo6{border: 1px solid grey;}
.geo6 img{width: 95%; height: 280px; margin-left: auto; margin-right: auto; display: block;}
.geo6 p{width: 95%; text-align: center; color: grey;}

.geo7{border: 1px solid grey;}
.geo7 iframe{width: 95%; height: 280px; margin-left: auto; margin-right: auto; display: block;}
.geo7 p{width: 95%; text-align: center; color: grey;}

.geo8{border: 1px solid grey;}
.geo8 img{width: 95%; height: 280px; padding: 20px; margin-left: auto; margin-right: auto; display: block;}
.geo8 p{width: 95%; text-align: center; color: grey;}

.geo9{border: 1px solid grey;}
.geo9 img{width: 95%; height: 280px; padding: 20px; margin-left: auto; margin-right: auto; display: block;}
.geo9 p{width: 95%; text-align: center; color: grey;}

.geo10{border: 1px solid grey;}
.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: grey;}

.geo10{border: 1px solid grey;}
.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: grey;}

.geo11{border: 1px solid grey;}
.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: grey;}
/*css of layout maps page*/



.rates {width: 85%; 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) {
.rates{
    width: 98%;
    height: auto;

      }
    }
.rates .divTable{ width: 75%; }
@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) {
.rates .divTable{
    width: 98%;
      }
    }
.divTable{margin: 0px auto;}
.divTableCell{color: grey;}

.rohini-future {width: 95%; margin: 0px auto;}
.rohini-future .future p{width: 98%; margin: 5px; text-align: justify;}

 .sector-34{
  width: 100%;
  /*border: 1px dotted grey;*/
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
  margin-top: 5px;
}
.rohinia{
  width: 100%;
  margin: 0px auto;
  border: 1px dotted grey;
  border-radius: 5px;
  display: grid;
  /*grid-template-rows: repeat(6, 32px);*/
  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) {
.rohinia{
display: none;

      }
    }
/*sector 36 css*/

.rohini-p{
  width: 100%;
  margin: 0px auto;
  border: 1px dotted grey;
  border-radius: 5px;
  display: grid;
  grid-template-columns: 45px 1fr;
  grid-gap: 5px;
}
.rohini-p img{
  width: 70%;
  margin: 0px auto;
  border-radius: 5px;
  height: 255px;
}
@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) {
.rohini-p img{
    width: 98%;
    height: auto;
    margin-top: 20px;

      }
    }

.sector-34 .rohini-p .div1 p{
writing-mode: vertical-rl;
transform: rotate(180deg);
/*background-color: #75E6DA;*/
margin-top: 20px;
/*font-size: 17px;*/
}
/*sector 36 css*/

.sector-34 .rohinia .div1 p{
writing-mode: vertical-rl;
transform: rotate(180deg);
background-color: #75E6DA;
margin-top: 20px;
/*font-size: 17px;*/
}

.rohinib { 
  width: 100%;
  margin: 0px auto;
  border: 1px dotted grey;
  border-radius: 5px;
  display: grid;
  grid-template-rows: repeat(7, 36px);
  grid-template-columns: 45px 1fr;
  grid-gap: 5px;
     }
.div1{
      grid-row: 1/8;
      border-radius: 5px;
      border: 1px dotted grey; 
    }
.sector-34 .rohinib .div1 p{
writing-mode: vertical-rl;
transform: rotate(180deg);
background-color: #75E6DA;
margin-top: 20px;
font-size: 16px;
}


.div2{ border-radius: 5px;
 border: 1px dotted grey;
}
.div2 p{
  margin: 7px auto;
  width: 85%; 
  font-size: 16px;
  color: grey;
}
.div3{ border-radius: 5px; 
     border: 1px dotted grey;
    }
.div3 p{
  margin: 7px auto;
  width: 85%; 
  font-size: 16px;
  color: grey;
}
.div4-contra{border-radius: 5px;
 border: 1px dotted grey
}
.div4-contra p{
  margin: 7px auto;
  width: 85%; 
  font-size: 16px;
  color: grey;
}
.div5,.div5n{ border-radius: 5px;
 border: 1px dotted grey
}
.div5 p{

  margin: 7px auto;
  width: 85%; 
  font-size: 16px;
  color: grey;
}
.div5n p{
  margin: 7px auto;
  width: 85%; 
  font-size: 16px;
  color: grey;
}
/*----starting of buttons in rohini-37 div*/
/*---end of css of buy/sell buttons----*/

 /*==================end of our mission div===============*/





picture {
  display: block; 
  width: 100%;
  /*border: 4px solid blueviolet;*/
}

picture > * {
  max-width: 100%;
}
.sector-34 .rohinia img{
  width: 65%; 
  height: 250px; 
  margin-left: auto; 
  margin-right: auto; 
  display: block; 
  /*border: 2px solid red;*/
}
@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) {
.sector-34 .rohinia img{
    width: 98%;
    height: auto;
    margin-top: 25px;
    margin-bottom: 0px;
      }
    }


.contain{
  margin:  0px auto;
  width: 100%;
  padding: 8px;
  background-color: lightcyan;
  border-radius: 15px;
}
.contain .text p{
width: 98%;
}
.contain img{
  float: left;
  width: 350px;
  border: 1px solid grey;
  margin: 10px;
  /*height: 260px;*/
  /*padding: 0 10px 0 0;*/
  /*padding: 10px;*/
  border-radius: 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) {
.contain img { 
width: 100%;
margin: 0px 0px 10px 0px
}
}

.text p {
  text-align: justify;
  margin: 10px;
  width: 100%;
  /*padding: 10px;*/
}
.rupa img{
  width: 100%;
}



 /*================starting of our mission div=============*/
 .main-rohini{
  width: 100%;
  /*border: 1px dotted grey;*/
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
  margin-top: 5px;
}
.rohini{
  width: 100%;
  margin: 0px auto;
  border: 1px dotted grey;
  border-radius: 5px;
  display: grid;
  /*grid-template-rows: repeat(6, 32px);*/
  grid-template-columns: 45px 1fr;
  grid-gap: 5px;
}

.rohini .div1 p{
   writing-mode: vertical-rl;
  transform: rotate(180deg);
  /*margin: auto;*/
  display: table;
  color: #3cf;
  font-weight: 500;
 margin-top: 30px;
  font-size: 24px;
 font-family: Courier;
}

 @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) {
.rohini .div1 p{
  margin-top: 40px;
      }
}
.rohini p{
  width: 83%;
  color: grey;
  font-size: 13px;
  text-align: justify;
  align-items: center;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/*footer*/
.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;
  }
}