* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

/* Global overflow prevention */
html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

#wrapper {
    max-width: 95%; 
    margin: auto;
}

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;
}

/* 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;
    }
}

/* Headings */
h1 {
    text-align: center;
    margin: 0px auto;
    font-size: 20px;
    padding: 10px;
    color: #4F4F4F;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    text-transform: uppercase;
}

h2 {
    text-align: center;
    margin: 0px auto;
    font-size: 18px;
    color: #4F4F4F;
    font-family: -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

/* Video and Text Grid */
.vid-text {
    width: 90%;
    margin: 20px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 20px;
    grid-auto-rows: auto;
}

/* Video container */
.tube {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: url('images/DDA-rohini-residential-scheme-1981.webp') no-repeat center center;
    background-size: cover;
    cursor: pointer;
    border-radius: 20px;
}

.tube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.video-container p {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: underline;
}

/* Text content styling */
.text p {
    text-align: justify;
    font-size: 15px;
    color: #575757;
}

/* Table-like layout */
.divTable {
display: table;
  width: 100%;
}

.divTableRow {
    display: table-row;
}

.divTableHeading {
    background-color: #EEE;
    display: table-header-group;
}

.divTableCell, .divTableHead {
    border: 1px solid grey;
    display: table-cell;
    padding: 2px 10px;
    vertical-align: middle;
}

.divTableBody {
    display: table-row-group;
}

.divTableFoot {
    background-color: #EEE;
    display: table-footer-group;
    font-weight: bold;
}

/* Geography Sections */
.geo {
    width: 90%;
    border: 1px solid grey;
    display: grid;
    margin: 20px auto;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    grid-gap: 15px;
}

.geo1, .geo2, .geo3 {
    border: 1px dotted grey;
    width: 98%;
}

.geo1 img, .geo2 img, .geo3 img {
    max-width: 90%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.geo1 p, .geo2 p, .geo3 p {
    width: 80%;
    text-align: center;
    margin: 5px auto;
}

.cell {
    max-width: 90%;
    height: auto;
    margin: 0px auto;
    display: block;
}

.cell p {
    font-size: 14px;
}

.div11 {
    margin: 25px auto;
}

.div11 p {
    width: 90%;
    text-align: justify;
    letter-spacing: 1px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

h3, h4 {
    text-align: center;
    font-size: 20px;
    text-decoration: underline;
    color: #3CF;
    font-family: monospace;
    margin: 5px auto;
    margin-bottom: 10px;
}

/* Futuristic sections */
.futuristic {
    width: 90%;
    margin: 5px auto;
}

.futuristic p {
    text-align: justify;
}

.future {
    width: 100%;
    margin: 10px auto;
}

.future img {
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.future p {
    text-align: center;
}

.futuristic-rohini {
    margin-top: 20px;
}

.futuristic-rohini p {
    font-size: 14px;
}

.futuristic-rohini .divTable {
    width: 30%;
    max-width: 100%;
    margin: 0px auto;
}

/* Silk Road */
.silk-road {
    width: 90%;
    margin: 0px auto;
}

.silk-road img {
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.silk-road p {
    text-indent: 70px;
    width: 100%;
    font-size: 14px;
}

/* Urban Section with Clearfix */
.Urban {
    width: 90%;
    margin: 30px auto;
}

.Urban::after {
    content: "";
    display: table;
    clear: both;
}

.Urban .UR {
    width: 50%;
    max-width: 100%;
    float: left;
    margin-right: 20px;
}

.Urban .UR img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
    border: 1px dotted grey;
}

/* Metro Section with Clearfix */
.metro {
    width: 90%;
    margin: 15px auto;
}

.metro::after {
    content: "";
    display: table;
    clear: both;
}

.metro .FR {
    width: 33.5%;
    max-width: 100%;
    float: right;
    margin-left: 10px;
    margin-right: 15px;
}

.metro .FR img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 5px;
    margin-right: 20px;
    border: 1px dotted grey;
    margin-left: 10px;
}

.metro p {
    margin-top: 1px;
    letter-spacing: 1px;
    text-align: justify;
}

.font {
    width: 90%;
    margin: 20px auto;
}

.font img {
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.tiv {
    width: 100%;
    margin: 15px auto;
}

.tiv .divTable {
    width: 100%;
}

.guide {
    width: 90%;
    margin: 10px auto;
}

.guide p {
    letter-spacing: 1px;
    text-align: justify;
}

.guide img {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 15px;
}

.guide .budget img {
    width: 55%;
}

.ques {
    width: 70%;
    margin: 10px auto;
}

/* Accordion Styles */
*::before, *::after {
    box-sizing: border-box;
}

.questionbody {
    margin: 0;
    padding: 0;
    color: #4d5974;
    display: flex;
}

.containerd {
    margin: 0 auto;
    width: 100%;
}

.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 {
    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;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 17px;
    font-weight: 300;
    margin: 15px;
    padding: 5px;
    color: grey;
    text-align: justify;
}

.accordion-content img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Silk Section with Clearfix */
.silk {
    width: 90%;
    margin: 10px auto;
}

.silk::after {
    content: "";
    display: table;
    clear: both;
}

.silk .ER {
    width: 30%;
    max-width: 100%;
    float: right;
    margin-left: 10px;
    margin-right: 15px;
}

.silk .ER img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
    border: 1px dotted grey;
    margin-left: 10px;
}

.silk p {
    margin-top: 1px;
    letter-spacing: 1px;
    text-align: justify;
    text-indent: 70px;
}

/* 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 */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-icon img {
    width: 100%;
    height: 100%;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    h2 {
        width: 90%;
    }
    
    .geo {
        width: 90%;
    }
    
    .futuristic-rohini .divTable {
        width: 90%;
    }
    
    .silk-road img {
        width: 100%;
    }
    
    .Urban .UR,
    .metro .FR,
    .silk .ER {
        width: 98%;
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .Urban .UR img,
    .metro .FR img,
    .silk .ER img {
        width: 100%;
        height: auto;
    }
    
    .guide {
        width: 90%;
    }
    
    .guide img {
        width: 100%;
    }
    
    .guide .budget img {
        width: 100%;
    }
    
    .ques {
        width: 90%;
    }
    
    .containerd {
        width: 95%;
    }
    
    .accordion-content img {
        width: 95%;
    }
    
    .future img {
        width: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    
    .tiv .divTable {
        width: 100%;
    }
    
    /* Footer responsive */
    .footer-col {
        min-width: 100%;
    }
    
    .social-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    /* WhatsApp icon */
    .whatsapp-icon {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .vid-text {
        grid-template-columns: 1fr;
        grid-gap: 10px;
    }
    
    .tube iframe {
        width: 100%;
        height: 200px;
    }
    
    .text p {
        font-size: 14px;
    }
    
    .divTableCell p {
        font-size: 14px;
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .social-label {
        font-size: 0.6rem;
    }
    
    .whatsapp-icon {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 992px) {
    .footer-row {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}