body {
  margin: 0;
  font-family: Roboto, sans-serif;
  background: #f5f5f5;
}


.top-header {
    background: linear-gradient(to right, #57698f, #f1f0f1, #4c5d8d);
    background-size: cover;
    padding: 10px 20px 30px;
    width:100%;
    position: relative;
    text-align: center;
    min-height: 120px;
}

.text-content h1 {
    font-size: 25px;
    color: #3f3e3e;
   
}

.text-content h2 {
    font-size: 20px;
    color: #494848;
    margin-top: -20px;
}

.text-content h3 {
    font-size: 18px;
    color: #383737;
  
}


.text-content h4 {
    font-size: 15px;
    color: #193550;
}

/* ISO Image Styling */
.image-content img {
    max-width: 70px;     /* image size control */
    height: auto;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: multiply;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .image-content img {
        max-width: 90px;
        margin-top: 10px;
    }
}


/* Container for three images */
.top-left-images {
    position: absolute;
    top: 90px;
    left: 25px;
    display: flex;
    gap: 10px;
    z-index: 999;
}

/* Images styling */
.top-left-images img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;               /* Circle images */
    border: 2px solid #574b2c;        /* Saffron border */
    background: #fff;
    padding: 3px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

/* Hover effect */
.top-left-images img:hover {
    transform: scale(1.1);
}

/* Center text */
.header-text h1 {
    margin: 0;
    font-size: 32px;
    color: #0D47A1;
    font-weight: 700;
}

.header-text p {
    margin: 5px 0 0;
    font-size: 16px;
    color: rgba(0,0,0,0.7);
}


.logo {
  height: 70px;
  margin-right: 15px;
}

.top-care{
    position: fixed;              /* Top right fix */
    top: 12px;
    right: 18px;
    z-index: 9999;

    background: transparent;      /* Transparent */
    padding: 6px 16px;

    font-weight: 600;
    font-size: 14px;
    color: #ffffff;

    border: 2px solid #ffffff;    /* Decorative border */
    border-radius: 25px;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    backdrop-filter: blur(4px);   /* Glass effect (modern) */
}

/* Hover effect */
.top-care:hover{
    background: rgba(255,255,255,0.15);
    transition: 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .top-care{
        font-size: 12px;
        padding: 5px 12px;
        top: 8px;
        right: 10px;
    }
}


/* Mobile responsive */
@media (max-width: 768px) {
    .helpline {
        font-size: 13px;
        padding: 6px 12px;
        top: 10px;
        right: 10px;
    }
}


.image-container {
  position: absolute;      /* Place anywhere */
  top: 90px;               /* Distance from top */
  right: 20px;             /* Distance from right */
  display: flex;
  gap: 10px;
  z-index: 1000;
}

/* Circular images */
.icon-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;      /* Makes circle */
  object-fit: cover;
  border: 2px solid #fff3e0;   /* Saffron border */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

/* Hover effect */
.icon-img:hover {
  transform: scale(1.1);
}




.navbar {
  background: #344352;
  display: flex;
  justify-content: center;   /* ⬅ Center all items */
  align-items: center;
  gap: 10px;
  padding: 08px 20px;
  padding-bottom: 0;
}

/* All links */
.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.3s;
}

/* Hover effect */
.navbar a:hover {
  background: #ebb87e;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Dropdown button */
.dropbtn {
  display: inline-flex;
  align-items: center;
}

/* Dropdown menu */
.dropdown-content {
  position: absolute;
  top: 110%;
  left: 50%;                /* ⬅ Center dropdown */
  transform: translateX(-50%);
  background: #fff;
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(37, 37, 37, 0.2);
  display: none;
  z-index: 999;
}

/* Dropdown links */
.dropdown-content a {
  color: #1e2838;
  padding: 12px 18px;
  display: block;
  text-align: left;
}

/* Dropdown hover */
.dropdown:hover .dropdown-content {
  display: block;
}


/* Navbar */
nav {
  background: #0D47A1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Nav links */
nav a {
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s;
}

/* Hover for normal links */
nav a:hover {
  background: #2d3e57;
}

/* Dropdown */
.dropdown {
  position: relative;
}

/* Button */
.dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Arrow */
.arrow {
  font-size: 10px;
  transition: transform 0.3s;
}

/* Dropdown box */
.dropdown-content {
  position: absolute;
  top: 110%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Dropdown links */
.dropdown-content a {
  color: #162844;
  padding: 12px 18px;
  display: block;
  font-weight: 500;
}

/* Hover inside dropdown */
.dropdown-content a:hover {
  background: #E3F2FD;
  color: #F57C00;
}

/* Show dropdown */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Rotate arrow */
.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.lang-switcher {
  position: relative;
  cursor: pointer;
}

.lang-icon {
  font-size: 25px;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: 28px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: none;
  min-width: 140px;
  z-index: 999;
}

.lang-dropdown div {
  padding: 10px;
  font-size: 14px;
}

.lang-dropdown div:hover {
  background: #f5f5f5;
}

.lang-dropdown.show {
  display: block;
}


.hero {
 background: linear-gradient(
    to right,
    #2b2a2a
    #FFFFFF,
    #242424
  );
  color: rgba(0, 0, 0, 0.75);
  text-align: center;
  padding: 60px 20px;
}

.hero h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #F57C00;
  margin: 15px auto 0;
  border-radius: 2px;
}


.vivahdakhla-wrapper {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f7f4;
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Card */
.vivahdakhla-card {
  max-width: 500px;
  width: 100%;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

/* Header */
.vivahdakhla-header {
  text-align: center;
  margin-bottom: 30px;
}

.vivahdakhla-header h2 {
  color:#005461;
  font-size: 1.8em;
  margin: 0;
}

.vivahdakhla-header p {
  color: #7f8c8d;
  margin-top: 5px;
}

/* Form Fields */
.vivahdakhla-field {
  margin-bottom: 20px;
}

.vivahdakhla-field input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #bdc3c7;
  border-radius: 6px;
  font-size: 1em;
  color: #2c3e50;
  transition: .3s ease;
  box-sizing: border-box;
}

.vivahdakhla-field input:focus {
  border-color:#37353E;
  box-shadow: 0 0 8px rgba(224, 172, 74, 0.4);
  outline: none;
}

.vivahdakhla-field input::placeholder {
  color: #95a5a6;
  font-style: italic;
}

/* Titles */
.vivahdakhla-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #37353E;
}

/* Button */
.vivahdakhla-btn {
  width: 100%;
  padding: 14px;
  background: #005461;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: .3s ease;
}

.vivahdakhla-btn:hover {
  background: #2c3e50;
}

/* Records Section */
.vivahdakhla-records {
  max-width: 500px;
  width: 100%;
  background: #fff;
  padding: 20px;
  border-left: 5px solid #37353E;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.vivahdakhla-records p {
  font-weight: 600;
  font-size: 1em;
}

.vivahdakhla-list {
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
}

.vivahdakhla-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95em;
  color: #34495e;
  
}


.delete-btn{
  background:#d9534f;
  color:#fff;
  border:none;
  padding:5px 12px;
  border-radius:4px;
  cursor:pointer;
  font-size:14px;
}

.delete-btn:hover{
  background:#c9302c;
}

.edit-btn{
  background:#0275d8;
  color:white;
  border:none;
  padding:5px 12px;
  border-radius:4px;
  cursor:pointer;
  margin-right:5px;
}

.edit-btn:hover{
  background:#025aa5;
}


/* ================= FOOTER MAIN ================= */
footer {
    background-image: url("Images/back6.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 150px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

/* ---------- TOP FOOTER ---------- */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 25px;
    padding: 30px 40px;
    max-width: 1400px;
    margin: auto;
     margin-bottom: 8px;
}

/* Footer columns */
.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFD54F; /* soft saffron */
    border-bottom: 2px solid #FFD54F;
    display: inline-block;
    padding-bottom: 4px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* ---------- LOGO COLUMN ---------- */
.footer-logo img {
    width: 90px;
    margin-bottom: 15px;
    border-radius: 8px;
    background: #fff;
    padding: 5px;
}

.footer-logo p {
    margin-bottom: 15px;
}

/* Contact info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-info a {
    color: #FFD54F;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ---------- LINKS ---------- */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FFD54F;
    padding-left: 4px;
}

/* ---------- BOTTOM FOOTER ---------- */
.footer-bottom {
    background: transparent;
    text-align: center;
    padding: 12px;
    margin-top: -20px;
    border-top: 2px solid #FFD54F;
}

.footer-bottom p {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 500;
}

/* Social icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-social a {
    color: #ffffff;
    font-size: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #FFD54F;
    color: #0D47A1;
    transform: translateY(-3px);  
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 40px 25px;
    }

    .footer-col h3 {
        font-size: 18px;
    }
}


/* ================= MOBILE RESPONSIVE MASTER ================= */
@media (max-width: 768px) {

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }

  /* ================= HEADER ================= */

  .top-header {
    padding: 20px 15px 30px;
    min-height: auto;
    text-align: center;
  }

  .header-text h1 {
    font-size: 22px;
  }

  .header-text p {
    font-size: 14px;
  }

  /* Left & Right Images Center */
  .top-left-images,
  .image-container {
    position: static !important;
    justify-content: center;
    margin-top: 12px;
  }

  .top-left-images img,
  .icon-img {
    width: 55px !important;
    height: 55px !important;
    border: 2PX solid #2e2f30;
  }

 /* Customer care center */
  .top-care {
    position: static !important;
    display: block;
    margin: 12px auto;
    text-align: center;
    width: fit-content;
    color: #2e2f30;
    border: 2PX solid #2e2f30;
  }

  /* ================= NAVBAR ================= */
/* ----- Navbar ----- */
    .navbar,
    nav {
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 5px 10px;
        margin-top: 10px;
    }

    .navbar a,
    nav a {
        font-size: 13px;
        padding: 5px 10px;
    }

    nav::-webkit-scrollbar,
    .navbar::-webkit-scrollbar {
        display: none;
    }

    .dropdown-content {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        margin-top: 5px;
    }

  /* ================= HERO ================= */

  .hero {
    padding: 40px 15px;
  }

  .hero h2 {
    font-size: 20px;
  }

 /* ================= TABLE ================= */

 
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* ================= FOOTER ================= */

  .footer-top {
    grid-template-columns: 1fr !important;
    padding: 30px 20px;
    text-align: center;
  }

  .footer-col h3 {
    font-size: 18px;
  }

  .footer-social {
    justify-content: center;
  }

}












 




