/* 1. Global Reset and Variables */
:root {
    --primary-color: #da09cc; /* Dark Pink */
    --secondary-color: #ad027d; /* Bright Pink */
    --accent-color: #b1058c; /* Purple */
    --bg-gradient: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    --text-color-light: #ffffff;
    --text-color-dark: #333;
    --form-bg: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
   overflow-x: hidden;
}
.home{
background: url(images/bg.jpeg);
     /* background-repeat: no-repeat; */
     background-size: cover;
   color: #fff;
    display: flex;
    flex-direction: column;
}
header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 20px;
}

.contact-bubble {
    background:transparent;
    padding: 15px 35px;
    border-radius: 10px;
    border: 1.9px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-bubble a {
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

/* 3. Main Container and Responsiveness */
.container {
   
    max-width: 100%; /* Limits size on very large screens */
    margin: auto;
    display: grid;
    /* Default layout: Left content takes more space */
    grid-template-columns: 2fr 1fr; 
    gap: 50px;
     padding: 0 1rem;
    align-items: center;
    padding-bottom: 50px;
    flex-grow: 1; 
}


.left-content {
    padding: 20px 0;
}

.main-heading {
    font-size: clamp(2rem, 5vw, 3.5rem); 
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    transition: color 0.3s ease; 
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Office Type Buttons */
.office-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.type-button {
    background: rgba(255, 255, 255, 0.15); /* Slightly transparent background */
    color: var(--text-color-light);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.type-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--text-color-light);
}

/* Next Page Button Style */
.website-link h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.attractive-link-button {
    /* Main Button Styling */
    background: var(--secondary-color);
    color: var(--text-color-light);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 0 5px rgba(255, 255, 255, 0.2); /* Dual shadow for pop-out effect */
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    letter-spacing: 0.5px;
}

.attractive-link-button:hover {
   background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), 0 0 0 5px rgba(255, 255, 255, 0.4);
}

.right-form-panel {
    background: var(--form-bg);
    color: var(--text-color-dark);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10; 
}

.form-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.form-title span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

/* Form Inputs and Selects */
#workspace-form input,
#workspace-form select,
#workspace-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: var(--text-color-dark);
    transition: border-color 0.2s;
}

#workspace-form input:focus,
#workspace-form select:focus,
#workspace-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(146, 5, 145, 0.3);
}

#workspace-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.submit-button {
    width: 100%;
     background: var(--accent-color);
    
    color: var(--text-color-light);
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(146, 5, 145, 0.4);
}

.submit-button:hover {
   background: var(--primary-color);
    box-shadow: 0 6px 15px rgba(106, 26, 174, 0.5);
}

.workspace-section {
    padding: 60px 20px;
    max-width: 100%;
    margin: 0px auto;
    background: rgb(168, 227, 251);
    /* border-radius: 12px; */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #000000;
    font-weight: 700;
}

/* CAROUSEL CONTAINER */
.carousel-container {
    position: relative;
    overflow: hidden; 
    padding: 0 40px; /* Space for the buttons to overlap */
}

/* CAROUSEL TRACK / GRID */
.workspace-grid {
    display: flex; /* Horizontal arrangement */
    gap: 30px; 
    overflow-x: scroll; /* Enable scrolling */
    scroll-snap-type: x mandatory; /* Snap scrolling to cards */
    scroll-behavior: smooth; /* Smooth scrolling for button clicks */
    padding-bottom: 50px; 
}

/* Hide default scrollbar */
.workspace-grid::-webkit-scrollbar {
    display: none;
}
.workspace-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* WORKSPACE CARDS */
.workspace-card {
    flex: 0 0 350px; /* Fixed width for each card */
    scroll-snap-align: start; /* Snap point */
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.workspace-card:hover {
    transform: translateY(-8px); /* Lift effect */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); 
}

.card-image-container {
    height: 200px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workspace-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}
.card-content h3{
    font-size: 1.6rem;
    line-height: 2;
}
.card-description {
    font-size: 1rem;
    color: #6a7c8e;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* NAVIGATION BUTTONS */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 18px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-50%) scale(1.05);
}

.left-nav { left: 0; }
.right-nav { right: 0; }
.nav-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #aaa;
}

.enquiry-button {
   background-color: var(--accent-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4); 
}

.enquiry-button:hover {
   background-color: var(--accent-color);
    transform: translateY(-2px);
}
/* ===================================== */
/* END: Workspace Section & Grid Styles */
/* ===================================== */


/* ===================================== */
/* START: Modal Popup Styling (Responsive) */
/* ===================================== */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex; 
    opacity: 1; 
}

.modal-content {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    position: relative;
    max-width: 800px; 
    width: 90%; 
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active .modal-content {
    transform: scale(1); 
}

.close-button {
    color: #020202;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.modal-content h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.modal-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.modal-content button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: var(--accent-color);
    color: white;
    padding: 10px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-headerr h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #000000;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-headerr p {
    display: none; /* Removed the secondary text for exact matching look */
}

/* ===================================== */
/* START: Innovation Section Styling (Matching Layout) */
/* ===================================== */
.innovation-section {
    padding: 80px 60px;
    max-width:100%;
    margin: 50px auto;
    text-align: center;
    background: #fff;
}

.section-headerr {
    margin-bottom: 80px;
}

/* Cities Grid Layout */
.cities-grid {
    display: grid;
   
    grid-template-columns: repeat(3, 1fr); 
    gap: 0px 0px; 
    justify-items: center; 
}

.city-card {
  
    background: #fff;
    cursor: pointer; 
    transition: transform 0.3s ease;
    width: 100%; 
    max-width: 300px; /* Control card width */
    padding: 0px;
    box-sizing: border-box;
}

.city-card:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
    /* Add a minimal shadow if you want a visual cue, but keep it subtle */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
}

.city-image-container {
    width: 100%;
    height: 350px; 
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align images to the bottom line as in the image */
    margin-bottom: 10px;
}

.city-image {
    max-width: 100%; 
    max-height: 100%;
    object-fit: contain; 
    transition: transform 0.3s ease;
}

.city-card:hover .city-image {
    transform: scale(1.05); /* Slight zoom on image */
}

.city-info {
    padding: 10px 0;
    text-align: center;
}

.city-info h3 {
    font-size: 1.3rem;
    color: #000000;
    margin: 0;
    font-weight:bold;
    
    text-transform: uppercase;
}

/* ===================================== */
/* END: Innovation Section Styling */
/* ===================================== */


/* ===================================== */
/* START: Modal Popup Styles (Details & Form) */
/* ===================================== */
.modall {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.8); /* Dark overlay */
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    transition: opacity 0.3s ease;
}

.modall.active {
    display: flex; 
    opacity: 1; 
}

.modall-content {
    background-color: #fefefe;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: relative;
    max-width: 650px; 
    width: 90%; 
    transform: scale(0.95); 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modall.active .modall-content {
    transform: scale(1); 
}

.modall h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.modall p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.modall button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: var(--accent-color);
    color: white;
    padding: 10px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}
.close-button {
    color: #000000;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-button:hover {
    color: #333;
}

/* Details Popup Specific Styling */
.details-popup .modall-image {
    width: 100%;
    height: 250px; 
    object-fit: contain; 
    /* background-color: #f0f0f0; Light grey background for image */
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 10px;
    box-sizing: border-box;
}

.details-popup #details-modall-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.details-popup #details-modall-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: left;
}

.action-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background:var(--accent-color); /* Purple theme button */
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: capitalize;
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.4);
}

.action-button:hover {
    
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.6);
}

/* Form Popup Specific Styling */
.form-popup {
    max-width: 500px;
}

.form-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6f42c1;
    box-shadow: 0 0 0 2px rgba(111, 66, 193, 0.1);
    outline: none;
}

.submit-button {
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: block;
    margin: 20px auto 0 auto;
}

.submit-button:hover {
   
    transform: translateY(-2px);
}

.form-success-message {
    text-align: center;
    color: #000;
    font-weight: 600;
    margin-top: 20px;
}
 .section {
     line-height: 1.6;
     background: #ffffff;
      color: #333;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      padding: 60px 10%;
      flex-wrap: wrap;
    }


    .section .image {
      flex: 1 1 45%;
      max-width: 600px;
    }

    .section .image img {
      width: 100%;
      height: auto;
      border-radius: 16px;
      /* box-shadow: 0 8px 24px rgba(0,0,0,0.1); */
    }

    .section .content {
      flex: 1 1 45%;
      max-width: 600px;
    }

    .section .content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #111;
    }

    .section .content p {
      font-size: 1.1rem;
      margin-bottom: 20px;
      color: #555;
    }

    .section .content ul {
      list-style: none;
      margin-bottom: 20px;
    }

    .section .content ul li {
      margin: 10px 0;
      padding-left: 22px;
      position: relative;
      font-size: 1.05rem;
      color: #444;
    }

    .section .content ul li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #007bff;
      font-weight: bold;
    }

    .section .content strong {
      color: #111;
    }

    .section .content a {
      display: inline-block;
      padding: 12px 28px;
      background: #007bff;
      color: #fff;
      font-size: 1rem;
      font-weight: 500;
      border-radius: 8px;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .section .content a:hover {
      background: #0056b3;
    }
section.services {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      padding: 20px 10%;
      background: #8be48b;
      height: 75vh;
      flex-wrap: wrap;
    }

    .services .content {
      flex: 1 1 45%;
      min-width: 320px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .services .content h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .services .content h3 {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .services .content p {
      margin-bottom: 25px;
      font-size: 1rem;
      color: #333;
    }

    .service-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 40px;
    }

    .service-item {
      display: flex;
      align-items: center;
      gap: 12px;
      transition: transform 0.3s ease;
    }

    .service-item:hover {
      transform: translateX(8px);
    }

    .service-item .icon {
      background: #000;
      color: #fff;
      width: 42px;
      height: 42px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
      transition: 0.3s ease;
    }

    .service-item:hover .icon {
      background: #007bff;
    }

    .service-item span {
      font-size: 1rem;
      color: #222;
    }

    .services .image {
      flex: 1 1 45%;
      text-align: center;
      min-width: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .services .image img {
      max-width: 100%;
      max-height: 60vh;
      object-fit: contain;
    }

   
    section.quote {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      padding: 60px 10%;
      background: #fffecf;
      flex-wrap: wrap;
    }

    .quote .form-container {
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      flex: 1 1 40%;
      min-width: 320px;
    }

    .quote .form-container h2 {
      margin-bottom: 20px;
      font-size: 1.6rem;
      text-align: center;
    }
    

    .quote form input,
    .quote form select,
    .quote form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
    }

    .quote form button {
      width: 100%;
      padding: 12px;
      background: #f14ac3;
      border: none;
      border-radius: 8px;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .quote form button:hover {
      background: #d23ba7;
    }

    .quote .text-content {
      flex: 1 1 45%;
      min-width: 320px;
      text-align: center;
    }

    .quote .text-content h2 {
      font-size: 2rem;
      margin-bottom: 15px;
    }

    .quote .text-content p {
      margin-bottom: 25px;
      color: #333;
    }

    .quote .text-content .btn {
      padding: 12px 24px;
      background: #f14ac3;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .quote .text-content .btn:hover {
      background: #d23ba7;
    }

     a {
      text-decoration: none;
      transition: all 0.3s ease;
    }

    /* Footer base */
    .footer {
      background: #0b0b0b;
      color: #b0b0b0;
      padding: 80px 40px 30px;
      font-size: 15px;
      border-top: 1px solid #1a1a1a;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1500px;
      margin: 0 auto;
      padding-bottom: 50px;
      border-bottom: 1px solid #1a1a1a;
      gap: 30px;
    }

    .footer-column {
      flex: 1 1 220px;
      min-width: 220px;
    }

    .footer-logo-section {
      flex: 1.5 1 300px;
    }

    /* Headings */
    .footer-column h4 {
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 30px;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
    }

    .footer-column h4 i {
      color: #00bcd4;
      margin-right: 10px;
      font-size: 18px;
    }

    /* Logo */
    .footer-logo img {
      width: 350px;
      filter: brightness(0) invert(1);
      margin-left: -100px;
    }

    /* Text content */
    .footer-text {
      line-height: 1.7;
      font-size: 14px;
      color: #b0b0b0;
      margin-bottom: 20px;
    }

    /* Links */
    .footer-column ul {
      list-style: none;
    }

    .footer-column li {
      margin-bottom: 15px;
    }

    .footer-column a {
      color: #b0b0b0;
      display: flex;
      align-items: center;
      font-size: 14px;
    }

    .footer-column a i {
      margin-right: 10px;
      color: #444;
      font-size: 14px;
    }

    .footer-column a:hover {
      color: #00bcd4;
    }

    .footer-column a:hover i {
      color: #00bcd4;
    }

    /* Contact items */
    .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .contact-item i {
      margin-right: 15px;
      color: #444;
      font-size: 16px;
      margin-top: 2px;
    }

    .contact-item a {
      color: #b0b0b0;
    }

    .contact-item a:hover {
      color: #00bcd4;
    }

    /* Working hours */
    .working-hours p {
      margin-bottom: 5px;
      line-height: 1.6;
    }

    /* Social icons */
    .social-icons {
      margin-top: 35px;
      display: flex;
      gap: 20px;
    }

    .social-icons a {
      color: #b0b0b0;
      font-size: 20px;
    }

    .social-icons a:hover {
      color: #00bcd4;
    }

    /* Footer bottom */
    .footer-bottom {
      color: #888;
      text-align: center;
      padding: 25px 0 10px;
      font-size: 13px;
      letter-spacing: 0.5px;
    }

    .footer-bottom a {
      color: #888;
      margin: 0 8px;
    }

    .footer-bottom a:hover {
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .footer-column {
        flex: 1 1 45%;
      }
      .footer-logo-section {
        flex-basis: 100%;
        margin-bottom: 30px;
      }
    }

    @media (max-width: 576px) {
      .footer-column {
        flex: 1 1 100%;
      }
      .footer-content {
        padding-bottom: 30px;
        border-bottom: none;
      }
      .footer-bottom {
        border-top: 1px solid #1a1a1a;
        padding-top: 20px;
      }
    }
    /* ----------------- RESPONSIVE ----------------- */
    @media (max-width: 1024px) {
      section.services, section.quote {
        flex-direction: column;
        text-align: center;
        height: auto;
      }
      .service-list {
        grid-template-columns: 1fr;
      }
      .service-item {
        justify-content: center;
      }
    }

    @media (max-width: 480px) {
      .services .content h2, 
      .quote .text-content h2 {
        font-size: 1.8rem;
      }
      .services .content h3 {
        font-size: 1.1rem;
      }
      .services .content p,
      .quote .text-content p {
        font-size: 0.9rem;
      }
    }
    /* Responsive */
    @media (max-width: 1024px) {
      .section {
        flex-direction: column;
        text-align: center;
      }

      .section .content h2 {
        font-size: 2rem;
      }

      .section .content p {
        font-size: 1rem;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 40px 5%;
      }
    }

    @media (max-width: 480px) {
      .section .content h2 {
        font-size: 1.6rem;
      }

      .section .content p {
        font-size: 0.95rem;
      }

      .section .content a {
        padding: 10px 22px;
        font-size: 0.9rem;
      }
    }


/* ===================================== */
/* END: Modal Popup Styles */
/* ===================================== */


/* ===================================== */
/* Media Queries for Responsiveness */
/* ===================================== */

/* Tablet (768px and below) */
@media (max-width: 992px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 30px 20px;
    }
    .city-card {
        max-width: 350px; 
    }
    .city-image-container {
        height: 150px; 
    }
    .section-headerr {
        margin-bottom: 60px;
    }
    .modall-content {
        max-width: 80%;
    }
}

/* Mobile Devices (576px and below) */
@media (max-width: 576px) {
    .cities-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 30px;
    }
     .city-image-container {
        height: 150px; 
    }
    .city-card {
        max-width: 95%; 
        margin: 0 auto;
    }
    .section-headerr h1 {
        font-size: 1.5rem;
    }
    .modall-content {
        padding: 25px;
    }
    .details-popup #details-modall-title {
        font-size: 1.5rem;
    }
    .details-popup .modall-image {
        height: 150px;
    }
    .action-button, .submit-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}



/* Media Queries for Responsiveness (320px - 2560px) */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 15px;
    }
    .nav-button {
        padding: 10px 13px;
        font-size: 1.2rem;
    }
    .left-nav { left: 0; }
    .right-nav { right: 0; }
    
    .workspace-card {
        flex: 0 0 90%; /* Mobile pe ek card screen ka 90% lega */
    }
    
    .modal-content {
        width: 100%;
        padding: 20px;
    }
    .modal-image {
        height: 200px;
    }
    .modal-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr; /* Stack layout */
        gap: 30px;
        width: 95%;
    }

    .left-content {
        text-align: center;
        padding: 0;
    }

    .main-heading {
        font-size: 2.8rem;
    }

    .office-types {
        justify-content: center;
    }

    .website-link h2 {
        text-align: center;
    }
}


@media (max-width: 600px) {
    header {
        padding: 15px;
    }
    
    .contact-bubble {
        padding: 6px 12px;
    }

    .contact-bubble a {
        font-size: 1rem;
    }

    .right-form-panel {
        padding: 25px 20px;
    }

    .main-heading {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .office-types {
        /* Make buttons take full width on very small screens for better tapping */
        justify-content: stretch;
    }

    .type-button {
        flex-grow: 1; 
        font-size: 0.85rem;
    }

    .attractive-link-button {
        font-size: 1.1rem;
        padding: 12px 25px;
        width: 100%; /* Full width button on mobile */
    }
}