/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #fff;
    color: #000;
}

/* Header */
header {
    background: #000;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: background 0.3s, color 0.3s;
}
/* ===== Header Links ===== */
header nav ul li a {
    color: #fff;           /* default white text */
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    transition: color 0.3s, background 0.3s;
}

/* Header main links hover */
header nav > ul > li > a:hover {
    color: #1e3a8a;        /* dark blue */
    background: rgba(255, 255, 255, 0.1); /* subtle hover bg */
    border-radius: 5px;
}



/* CSS */
.logo-container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    height: 120px; /* apni requirement ke mutabiq adjust karein */
    width: auto;
}

/* CSS */
.logo-container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    height: 120px; /* apni requirement ke mutabiq adjust karein */
    width: auto;
}











/* ===== Dropdown ===== */
header nav ul li {
    position: relative;    /* dropdown aligned relative to parent li */
}

header nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;   /* right below parent */
    left: 0;
    background: #111; 
    padding: 10px 0;
    list-style: none;
    border-radius: 5px;
    min-width: 180px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Show dropdown on hover */
header nav ul li:hover .dropdown-menu {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Dropdown links default */
header nav ul li .dropdown-menu li a {
    color: #fff;           /* default white */
    display: block;
    padding: 5px 20px;
    background: none;
    transition: background 0.3s, color 0.3s;
}

/* Dropdown links hover */
header nav ul li .dropdown-menu li a:hover {
    color: #1e3a8a;        /* dark blue */
    background: #222;      /* slightly lighter dark bg */
    border-radius: 5px;
}


/* Hero Section */
.hero {
    height: 90vh;
    background: url("finger.jpg") no-repeat center center/cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    animation: fadeIn 1.5s ease;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: slideIn 1.2s ease;
}

.hero h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn {
    background: #fff;
    color: #000;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #000;
    color: #fff;
}

/* About Section */
.about {
    padding: 60px 0;
    text-align: center;
    background: #f9f9f9;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    width: 70%;
    margin: 10px auto;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.services-section h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    width: 90%;
    margin: auto;
}

.service-card {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.service-card h3 {
    color: #111;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-card p {
    color: #333;
    margin-bottom: 20px;
}

/* Service Buttons */
.service-btn {
    display: inline-block;
    padding: 10px 20px;
    background: black;      /* Normal state black */
    color: white;           /* Text white */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.service-btn:hover {
    background: #444;       /* Slightly lighter on hover */
    color: white;
}

/* Two Column Section */
.two-column-section {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
}

.two-col-img {
    width: 50%;
}

.two-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.two-col-content {
    width: 50%;
    background: #ffffff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    border-left: 1px solid #ddd;
    color: #000;
}

.two-col-content h2 {
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.two-col-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.reverse {
    flex-direction: row-reverse;
}

/* CSS Slider */
.review-section {
  width: 100%;
  max-width: 1400px;
  margin: 50px auto;
  text-align: center;
}

.review-heading {
  font-size: 28px;
  margin-bottom: 30px;
}

/* Slider container */
.review-slider {
  overflow: hidden;
  width: 100%;
  height: 300px;  /* Card height including image */
  position: relative;
}

/* Track container for all cards */
.review-track {
  display: flex;
  gap: 20px;
  animation: slideLeft 20s linear infinite;
}

/* Individual review card */
.review-card {
  flex: 0 0 280px;      /* Card width */
  /* background: #111; */
  background: #0a1f44;
  color: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-card img.review-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 2px solid #25D366; /* Optional border */
}

.review-card h3.review-name {
  margin: 5px 0;
  font-size: 18px;
}

.review-card p.review-text {
  font-size: 15px;
  opacity: 0.85;
}

/* Animation for horizontal sliding */
@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    flex: 0 0 220px;
    min-height: 240px;
  }
  .review-slider {
    height: 260px;
  }
}


/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

footer h3 {
    margin: 20px 0 10px;
}

footer p {
    margin-bottom: 20px;
}

.contact-section,
.contact-section input,
.contact-section select,
.contact-section textarea,
.contact-section button {
    font-family: 'Poppins', Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
}
.footer-unique-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-height: 600px; /* Form ki minimum height */
    height: auto;       /* Content ke hisaab se adjust */
}


footer input, footer textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
}

footer button {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #25D366;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

footer button:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
    .two-column-section,
    .reverse {
        flex-direction: column;
    }

    .two-col-img,
    .two-col-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 10px;
    }
    header nav ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .about p {
        width: 90%;
    }
}
.animate-img {
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  transition: all 1s ease-out;
}

.animate-img.show {
  opacity: 1;
  transform: scale(1) translateY(0);
}
/* ===== FOOTER ===== */
.footer {
    background: #000; 
    color: #fff;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* left container left, right container right */
    align-items: flex-start;        /* vertically align top */
    flex-wrap: wrap;                /* mobile pe stacked */
    padding: 50px 30px;             /* container ke around spacing */
    gap: 50px;                       /* left & right container ke beech spacing */
}


/* LEFT SIDE (FORM) */
.footer-left {
    flex: 1;
    min-width: 320px;
    margin-bottom: 30px;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-form {
    display: flex;
    flex-direction: column;
}

.footer-form input,
.footer-form textarea {
    background: #fff;      /* white background */
    color: #000;           /* black text */
    border: 1px solid #ccc;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #555;           /* better placeholder color */
}


.footer-form button {
    background: #ff6a00;
    border: none;
    padding: 14px;
    cursor: pointer;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

.footer-form button:hover {
    background: #e45f00;
}

/* RIGHT SIDE */
.footer-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-info h3 {
    margin-bottom: 10px;
    font-size: 22px;
}


/* LINKS */
.footer-links a {
    display: block;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 6px;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6a00;
}

/* COPYRIGHT */
.footer-copy p {
    margin: 3px 0;
    font-size: 14px;
    opacity: 0.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-right {
        margin-top: 50px;
    }
}




.contact-whatsapp {
    margin-top: 20px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;          /* WhatsApp green */
    color: #fff;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

/* Icon size support (font-awesome) */
.btn-whatsapp i {
    font-size: 20px;
}



.review-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background: white;
}

.review-container {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-picture img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.review-box {
    width: 60%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.arrow {
    font-size: 45px;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    background: black;
    color: white;
    transition: .2s;
}

.arrow:hover {
    transform: scale(1.1);
}





