    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Outfit', sans-serif;
    }

    body {
      color: #333;
      line-height: 1.7;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      cursor: pointer;
    }

    /* Header */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 50px;
      background-color: #0d47a1;
      color: #fff;
       flex-wrap: wrap; /* important for responsiveness */
    }

    header .logo {
      font-size: 1.5rem;
      font-weight: 700;
    }

    header .header-contacts a {
      color: #fff;
      font-weight: 500;
      margin-left: 25px;
      transition: 0.3s;
      font-size: 1rem;
    }

    header .header-contacts a:hover {
      color: #ffcc00;
    }

    header .header-contacts img {
      width: 24px;
      height: 24px;
      vertical-align: middle;
    }

    /*================================ Banner Section ======================================================== */
    .banner {
      background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../images/banner.jpg') no-repeat center center/cover;
      height: 700px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding: 0 20px;
    }

    .banner-content {
      max-width: 1200px;
    }

    .dr-banner-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }
    
    .dr-banner-left {
      color: #fff;
      width: 55%;
    }
    
    .dr-banner-left h1 {
      font-size: 50px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .dr-banner-left p {
      font-size: 20px;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .banner .cta-button {
      background-color: #0d47a1;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      font-weight: 600;
      transition: 0.3s;
    }

    .banner .cta-button:hover {
      background-color: #073270;
    }

    .dr-banner-right img {
      max-width: 380px;
      border-radius: 10px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.8);
    }
    

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }


    /* ============================================== About Section ============================================================= */
    .about {
      padding: 80px 20px;
      max-width: 1100px;
      margin: auto;
      display: flex;
      align-items: center;
      gap: 50px;
      flex-wrap: wrap;
    }

    .about img {
      max-width: 400px;
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .about-content {
      flex: 1;
      min-width: 300px;
    }

    .about-content h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #0d47a1;
    }

    .about-content p {
      font-size: 1.1rem;
      margin-bottom: 15px;
      line-height: 1.8;
    }

    .about-content .about-btn {
      display: inline-block;
      padding: 12px 25px;
      background-color: #0d47a1;
      color: #fff;
      font-weight: 600;
      border-radius: 5px;
      margin-top: 15px;
      transition: 0.3s;
    }

    .about-content .about-btn:hover {
      background-color: #073270;
    }
    
        /* ========================================== what we Offer ================================================================= */
    .offer-section {
      padding: 80px 0;
      background: #e1e0dc;
      font-family: 'Outfit', sans-serif;
    }

    .offer-container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }

    .offer-title {
      text-align: center;
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 60px;
      color: #111;
    }

    .offer-item {
      display: flex;
      gap: 40px;
      margin-bottom: 70px;
      align-items: center;
      flex-wrap: wrap;
    }

    .offer-item.reverse {
      flex-direction: row-reverse;
    }

    .offer-img {
      flex: 1;
      min-width: 300px;
      border-radius: 20px;
      height: 320px;
      object-fit: cover;
    }

    .offer-content {
      flex: 1;
      min-width: 300px;
    }

    .offer-content h3 {
      font-size: 30px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .offer-content p {
      color: #555;
      line-height: 1.65;
    }
    .const-imgs{
        /*display:flex;*/
        /*gap:20px;*/
        /*flex:1;*/
        display: flex;
      gap: 20px;
      flex-wrap: wrap; /* allow wrapping */
    }

    /* ===================================================== represented-section ====================================================== */
    .represented-section {
      position: relative;
      width: 100%;
      padding: 70px 20px;
      background: url('../images/represented.jpg') center/cover no-repeat;
       background-attachment: fixed;
      overflow: hidden;
    }

    .represented-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
    }

    .represented-content {
      position: relative;
      max-width: 1000px;
      margin: auto;
      background: rgba(255, 255, 255, 0.10);
      padding: 50px 50px;
      backdrop-filter: blur(10px);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.35);
      color: #fff;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    }
    .represented-img-box {
      display: flex;
      gap: 25px;
      justify-content: center;
      margin-top: 35px;
      flex-wrap: wrap;
    }
    
    .represented-img-box img {
      width: 25%;
      max-width: 390px;
      height: auto;        /* height fixed nahi hoga */
      object-fit: contain; /* image 100% visible (no cut) */
      border-radius: 12px;
    }
    

    /* ========================================================= logo Section ============================================================ */
    .logo-section {
      padding: 80px 0;
      background-color: #e1e0dc;
      text-align: center;
      font-family: 'Outfit', sans-serif;
    }

    .logo-title {
      font-size: 36px;
      font-weight: 700;
      color: #111;
      margin-bottom: 50px;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr); /* 6 logos per row */
      gap: 40px;
      align-items: center;
      justify-items: center;
    }

    .logo-item {
       width: 100%;
      max-width: 150px; /* logo container width */
      display: flex;
      justify-content: center;
      align-items: center;
      transition: transform 0.3s ease;
    }

    .logo-item img {
      max-width: 100%;
      max-height: 80px;
      object-fit: contain;
    }

    .logo-item:hover {
      transform: scale(1.1);
    }



    /* ======================================================== Contact Section =================================================== */
    .contact {
      background-color: #f4f4f4;
      padding: 60px 20px;
      text-align: center;
    }

    .contact h2 {
      font-size: 2rem;
      margin-bottom: 40px;
      color: #0d47a1;
    }


    .contact-cards {
      display: grid;
      grid-template-columns: repeat(5, 1fr); /* desktop */
      gap: 30px;
      justify-content: center;
    }

    .contact-card {
      padding: 30px 25px;
      border-radius: 12px;
      /*width: 250px;*/
      width: 100%;
      max-width: 100%;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: 0.3s;
      text-align: left;
    }


    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .contact-card i {
      font-size: 1.8rem;
      color: #fff;
      margin-bottom: 12px;
    }
    .contact-card .fab{
        color: #09b83e;
        font-size: 40px;
    }

    .contact-card h3 {
      margin-bottom: 8px;
      font-size: 1.2rem;
      color: #fff;
    }

    .contact-card p,
    .contact-card a {
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: #fff;
      display: block;
    }

    .contact-card a {
      color: #fff;
      font-weight: 500;
    }
    .contact-card.uae{
        background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/uae.jpg') center / cover  no-repeat;
    }
    .contact-card.spain{
        background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/spain.png') center / cover  no-repeat;
    }
    .contact-card.france{
        background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/france.png') center / cover  no-repeat;
    }
        /* Floating Social Media QR Codes Fixed Bottom-Right */
    .social-qr-fixed {
      position: fixed;
      top: 80px;
      right: 20px;
      z-index: 9999;
      display: flex;
      flex-direction: column; /* stacked vertically */
      gap: 15px;
    }
    
    .social-qr-fixed img {
      width: 150px;
      height: 210px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      cursor: pointer;
      transition: transform 0.3s;
    }
    
    .social-qr-fixed img:hover {
      transform: scale(1.1);
    }

    /* =================================================== Footer =========================================================== */
    footer {
      background-color: #222;
      color: #fff;
      text-align: center;
      padding: 20px 10px;
      font-size: 0.9rem;
    }

    footer a {
      color: #1e90ff;
      margin-left: 5px;
    }

    /*========================================= Modal / Popup Form =============================================== */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .modal-content.modal-split {
      background-color: #fff;
      margin: 5% auto;
      padding: 0;
      border-radius: 10px;
      max-width: 800px;
      display: flex;
      overflow: hidden;
      position: relative;
      flex-wrap: wrap;
    }

    .modal-left,
    .modal-right {
      flex: 1;
      min-width: 300px;
      padding: 30px;
    }

    .modal-left img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .modal-right {
      background-color: #fff;
    }

    .modal-right h2 {
      margin-bottom: 20px;
      color: #0d47a1;
    }

    .modal-right input,
    .modal-right textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1rem;
    }

    .modal-right button,
    input.wpcf7-form-control.wpcf7-submit.has-spinner {
      background-color: #0d47a1;
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-weight: 600;
      transition: 0.3s;
    }

    .modal-right button:hover {
      background-color: #073270;
    }

    .close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 1.5rem;
      font-weight: bold;
      cursor: pointer;
      color: #333;
      z-index: 10;
    }

 
    .toast {
      visibility: hidden;
      min-width: 300px;
       max-width: 90%; /* ensures it doesn't overflow on small screens */
      background-color: green;
      color: #fff;
      text-align: center;
      border-radius: 5px;
      padding: 15px 20px;
      position: fixed;
      z-index: 10000;
      right: -7%;
      top: 35px;
      transform: translateX(-50%);
      font-weight: 600;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      opacity: 0;
      transition: opacity 0.5s, bottom 0.5s;
      word-wrap: break-word; /* prevent overflow of long text */
    }
    
    .toast.show {
      visibility: visible;
      opacity: 1;
      /*bottom: 50px;*/
    }
    
    /*==================================== Expansion Section ==============================================*/
    
    .expansion-support .container {
      padding-left: 20px;
      padding-right: 20px;
    }
    
    .expansion-support {
      padding: 60px 0;
    }
    .expansion-title {
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .expansion-subtitle {
      text-align: center;
      font-size: 18px;
      max-width: 850px;
      margin: 0 auto 40px auto;
      line-height: 1.6;
      color: #555;
    }
    
    .expansion-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    
    @media (max-width: 1024px) {
      .expansion-gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 576px) {
      .expansion-gallery {
        grid-template-columns: 1fr;
      }
    }

    .expansion-gallery img {
      width: 100%;
      height: auto;            /* IMPORTANT */
      aspect-ratio: 16 / 9;    /* maintain ratio */
      object-fit: cover;
      border-radius: 8px;
    }

/*=======================*/