body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Loader Background */
.loader-wrapper {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.loader-main {
  margin-bottom:20px;
}

.loader-icon {
  font-size: 3.5rem;
  color: #d4af37; /* gold color */
  text-shadow: 0 0 8px #d4af37, 0 0 15px #ffd700;
}

.loader-services {
  display:flex;
  gap:30px;
  margin-bottom:20px;
}

.loader-service {
  font-size: 2.5rem;
  color: #333; /* dark grey */
  opacity:0;
  transform: translateY(-20px) scale(0.8);
  transition: all 0.6s ease;
}

/* Glow effect on load */
.loader-service:nth-child(1) { color:#f1c40f; }   /* gold */
.loader-service:nth-child(2) { color:#e67e22; }   /* orange */
.loader-service:nth-child(3) { color:#1abc9c; }   /* teal */
.loader-service:nth-child(4) { color:#3498db; }   /* blue */

.loader-text {
  font-size:1.2rem;
  color:#d4af37;
  font-weight:600;
  font-family:'Arial', sans-serif;
  text-shadow: 0 0 3px #d4af37;
}

/* Optional: animate service icons glow repeatedly */
.loader-service {
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  0% { text-shadow: 0 0 2px currentColor; }
  100% { text-shadow: 0 0 15px currentColor, 0 0 25px currentColor; }
}




/* ===== Background Dark Blue Gradient ===== */
.loader-wrapper {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: linear-gradient(135deg, #0f2027, #0a2a43, #001f3f);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* ===== Main Icon ===== */
.loader-icon {
  font-size: 6rem;   /* Aur bara */
  background: linear-gradient(45deg, #00f5ff, #00c3ff, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 195, 255, 0.9);
  animation: pulseMain 1.2s infinite alternate;
}

/* ===== Service Icons ===== */
.loader-services {
  display: flex;
  gap: 60px;
  margin: 35px 0;
}

.loader-service {
  font-size: 4.2rem;  /* Bigger */
  opacity: 0;
  transform: translateY(-20px) scale(0.8);
  transition: all 0.6s ease;
  animation: glow 1.5s infinite alternate;
}

/* Bright Neon Colors (Dark bg pe shine karenge) */
.loader-service:nth-child(1) {
  color: #00f5ff;   /* Neon Cyan */
}
.loader-service:nth-child(2) {
  color: #ffd700;   /* Bright Gold */
}
.loader-service:nth-child(3) {
  color: #ff4d6d;   /* Neon Pink */
}
.loader-service:nth-child(4) {
  color: #7b2cff;   /* Electric Purple */
}

/* ===== Glow Animation ===== */
@keyframes glow {
  0% { text-shadow: 0 0 10px currentColor; }
  100% { text-shadow: 0 0 35px currentColor, 0 0 60px currentColor; }
}

/* ===== Main Pulse ===== */
@keyframes pulseMain {
  0% { transform: scale(1); }
  100% { transform: scale(1.25); }
}

/* Loader Text */
.loader-text {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 0 10px #00c3ff;
}











.about-section {
  padding: 80px 0;
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-content {
  flex: 1;
}

.about-content h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* POINTS 2 COLUMN */
.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin-top: 25px;
}

.point {
  font-size: 15px;
  color: #444;
}

/* RIGHT IMAGES STYLE */
.about-images {
  flex: 1;
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: 8px;
}

.img-small {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 60%;
  border-radius: 8px;
}

.img-bottom {
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 40%;
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .img-small,
  .img-bottom {
    position: static;
    margin-top: 20px;
    width: 100%;
  }
}




/* Main wrapper for overall page spacing */
.main-wrapper {
    padding-left: 50px; /* Left side se gap jo aapne manga */
    padding-right: 20px;
    padding-top: 40px;
    background-color: #fff;
}

.parts-container {
    display: flex;
    gap: 50px; /* Image aur Text ke darmiyan gap */
    align-items: flex-start;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Image Layout - Same as Original Image */
.image-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top-image img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

.bottom-image-row {
    display: flex;
    gap: 10px;
    margin-top: -30px; /* Thora sa overlap effect ke liye agar zaroorat ho */
}

.bottom-image-row img {
    width: 60%;
    border-radius: 4px;
}

.bottom-image-row .small-img {
    width: 35%;
    object-fit: cover;
}

/* Content Layout */
.content-section {
    flex: 1.2;
}

.content-section h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.content-section p {
    color: #444;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Points List - Single Column */
.points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* Points ko ek ke neechay aik karne ke liye */
    gap: 15px;
}

.points-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.points-list .icon {
    color: #f1c40f; /* Yellow color for tick marks */
    margin-right: 12px;
    font-size: 18px;
    border: 2px solid #f1c40f;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .main-wrapper { padding-left: 20px; }
    .parts-container { flex-direction: column; }
    .bottom-image-row { margin-top: 0; }
}







.banner-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
    border-radius: 50px;
    background: linear-gradient(135deg, #1157b3, #11a5be);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Shine Effect */
.banner-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.banner-btn:hover::before {
    left: 100%;
}

.banner-btn:hover {
    background: linear-gradient(135deg, #000000, #333333);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transform: translateY(-4px) scale(1.05);
}





.about-simple {
    padding: 80px 10%;
    background: #f8f8f8;
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.about-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.4s;
}

.about-img img:hover {
    transform: scale(1.05);
}

.about-text-area {
    max-width: 550px;
}

.about-heading {
    font-size: 36px;
    margin-bottom: 20px;
    color: rgb(39, 39, 114);
    position: relative;
}

.about-heading::after {
    content: "";
    width: 60px;
    height: 4px;
    background:rgb(65, 65, 197);
    position: absolute;
    bottom: -10px;
    left: 0;
}

.about-text-area p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.about-list li {
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}

.about-list li::before {
    content: "✔";
    color: #ff0000;
    position: absolute;
    left: 0;
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff0000, #990000);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: #000;
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 900px){
    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .about-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}







/* SECTION */
.auto-products-section {
  padding: 100px 0;
  background: black;
  font-family: 'Poppins', sans-serif;
}

/* HEADING */
.auto-heading {
  text-align: center;
  margin-bottom: 70px;
}

.auto-heading h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.auto-heading p {
  color: #bbb;
  font-size: 16px;
}

/* GRID */
.auto-products-grid {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* CARD */
.auto-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #1a1a1a;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: 0.4s ease;
}

.auto-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.6s ease;
}

/* OVERLAY */
.auto-card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: #fff;
}

.auto-card-overlay h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* BUTTON */
.auto-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #e10600;   /* automotive red */
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.auto-btn:hover {
  background: #fff;
  color: #000;
}

/* HOVER EFFECT */
.auto-card:hover img {
  transform: scale(1.1);
}

.auto-card:hover {
  transform: translateY(-10px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .auto-heading h2 {
    font-size: 28px;
  }
}






.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
  text-align: center;
  color: white;
  transition: 0.4s ease;
}

.overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overlay .btn {
  margin-top: 10px;
  display: inline-block;
}

.auto-heading {
  text-align: center;
  margin: 80px 0 50px;
  position: relative;
}

.auto-heading {
  text-align: center;
  padding: 80px 20px 50px;
  background: #000; /* agar section ka bg black nahi hai to */
}

.auto-heading h2 {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #ffffff, #e60000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

/* Animated Underline */
.auto-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #e60000;
  border-radius: 5px;
  transition: 0.4s ease;
}

.auto-heading h2:hover::after {
  width: 150px;
}

/* Subtitle */
.auto-heading p {
  color: #bbb;
  font-size: 17px;
  margin-top: 25px;
  letter-spacing: 1px;
}








/* SECTION BACKGROUND */
.why-choose {
  background:white;
  padding: 80px 20px;
  color:black;
  position: relative;
}

/* WRAPPER */
.wrapper {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.why-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 60px;
  position: relative;
}

.why-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ff3c00;
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

/* ROW */
.why-row {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* CARD */
.why-card {
  background: white;
  padding: 40px 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s ease;
  flex: 1;
  border: 1px solid transparent;
}

/* ICON */
.why-icon {
  font-size: 45px;
  color: #ff3c00;
  margin-bottom: 20px;
  transition: 0.4s ease;
}

/* CARD TITLE */
.why-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* CARD TEXT */
.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: black;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px);
  border: 1px solid #ff3c00;
  box-shadow: 0 0 20px rgba(255, 60, 0, 0.4);
}

.why-card:hover .why-icon {
  transform: rotate(10deg) scale(1.1);
  text-shadow: 0 0 15px #ff3c00;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-row {
    flex-direction: column;
  }

  .why-card {
    margin-bottom: 20px;
  }

  .why-title {
    font-size: 28px;
  }
}



body { background-color: #f4f4f4; margin: 0; font-family: sans-serif; }

.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    background-color: #000; /* Black Background */
}

.stat-box {
    text-align: center;
    color: white;
    flex: 1;
}

.progress-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
}

.progress-circle svg {
    width: 140px;
    height: 140px;
    transform: rotate(-90deg); /* Start progress from top */
}

.progress-circle circle {
    fill: none;
    stroke: #333; /* Dark Grey track */
    stroke-width: 8;
}

.progress-circle .progress-bar {
    stroke: #e31e24; /* Red color from your image */
    stroke-dasharray: 377; /* Circumference (2 * pi * 60) */
    stroke-dashoffset: 377; 
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease-out;
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
}

.stat-box h3 {
    font-size: 18px;
    text-transform: capitalize;
}






/* Section */
.wc-section {
  background: #ffffff;
  padding: 90px 20px;
}

/* Container */
.wc-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.wc-heading {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #111;
  margin-bottom: 70px;
  position: relative;
}

.wc-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ff3c00;
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}

/* Grid */
.wc-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* Card */
.wc-box {
  background: #f8f8f8;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.4s ease;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Icon */
.wc-icon {
  font-size: 45px;
  color: #ff3c00;
  margin-bottom: 20px;
  transition: 0.4s;
}

.wc-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
}

.wc-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Hover */
.wc-box:hover {
  transform: translateY(-12px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.wc-box:hover .wc-icon {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
  .wc-grid {
    flex-direction: column;
  }

  .wc-heading {
    font-size: 30px;
  }
}



.vm-white-section {
  background: #ffffff;
  padding: 100px 20px;
}

.vm-white-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: center;
}

/* Card */
.vm-white-card {
  position: relative;
  background: #111;   /* Black Card */
  color: #ffffff;
  padding: 60px 40px 90px;
  border-radius: 25px 25px 0 0;
  text-align: center;
  flex: 1;
  overflow: hidden;
  transition: 0.4s ease;
}

/* Bottom Shape (Red) */
.vm-white-card::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgb(13, 13, 119);  
  clip-path: polygon(0 0, 50% 70%, 100% 0, 100% 100%, 0 100%);
}

/* Icon */
.vm-white-icon {
  font-size: 45px;
  color: #ff0000;
  margin-bottom: 20px;
  transition: 0.3s;
}

.vm-white-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 800;
}

.vm-white-card p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
  margin: auto;
  color: #dddddd;
}

/* Hover Effect */
.vm-white-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.vm-white-card:hover .vm-white-icon {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
  .vm-white-container {
    flex-direction: column;
  }
}


.features-white {
    background: #ffffff;
    padding: 80px 20px;
}

.features-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: #f9f9f9;
    padding: 40px 25px;
    text-align: center;
    border-radius: 15px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-box i {
    font-size: 45px;
    color: #ff0000;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111;
}

.feature-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Hover Effect */
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

/* Tablet */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}



.brand-slider-section {
    background-color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.slider-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Slider Track */
.logo-track {
    display: flex;
    /* Width: Logo width * Total number of logos */
    width: calc(200px * 12); 
    animation: scroll 25s linear infinite;
}

.logo-slide {
    width: 200px; /* Base width for desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.logo-slide img {
    width: 140px;
    height: auto;
    object-fit: contain;
    /* Real Colors - No Filters */
    transition: transform 0.3s ease;
}

/* Interaction */
.logo-track:hover {
    animation-play-state: paused;
}

.logo-slide img:hover {
    transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); }
}

/* Side Gradients for Professional Look */
.brand-slider-section::before,
.brand-slider-section::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}
.brand-slider-section::before {
    left: 0; top: 0;
    background: linear-gradient(to right, white, rgba(255,255,255,0));
}
.brand-slider-section::after {
    right: 0; top: 0;
    background: linear-gradient(to left, white, rgba(255,255,255,0));
}

/* --- RESPONSIVE SETTINGS --- */

/* For Tablets */
@media (max-width: 1024px) {
    .logo-track { width: calc(180px * 12); }
    .logo-slide { width: 180px; }
    @keyframes scroll {
        100% { transform: translateX(calc(-180px * 6)); }
    }
}

/* For Mobile Phones */
@media (max-width: 768px) {
    .brand-slider-section { padding: 40px 0; }
    .slider-title { font-size: 20px; }
    
    .logo-track { 
        width: calc(140px * 12); 
        animation: scroll 15s linear infinite; /* Mobile par thora tez loop */
    }
    .logo-slide { width: 140px; padding: 10px; }
    .logo-slide img { width: 100px; }
    
    @keyframes scroll {
        100% { transform: translateX(calc(-140px * 6)); }
    }
    
    .brand-slider-section::before,
    .brand-slider-section::after { width: 50px; } /* Mobile par gradient chota */
}



.about-company {
    padding: 80px 0;
    background-color: #fdfdfd;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    /* Image par halka sa shadow effect */
    box-shadow: 15px 15px 0px #f1c40f; /* Yellow accent shadow */
}

.about-content {
    flex: 1.2;
}

/* Experience Box - Styled for Trust */
.experience-box {
    background-color: #f1c40f; /* Bright Yellow */
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 2px;
    margin-bottom: 25px;
}

.experience-box span {
    font-size: 38px;
    font-weight: 900;
    color: #111;
    margin-right: 15px;
}

.experience-box p {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    color: #111;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 34px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.about-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content p strong {
    color: #e31e24; /* Highlight important text in Red */
}

/* Red Button Style */
.about-btn {
    display: inline-block;
    background-color: #e31e24; /* Professional Red */
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-btn:hover {
    background-color: transparent;
    color: #e31e24;
    border-color: #e31e24;
}

/* Responsive View */
@media (max-width: 991px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .experience-box {
        justify-content: center;
    }
}




.auto-features-area {
  padding: 90px 0;
  background: whitesmoke;
  font-family: 'Poppins', sans-serif;
}

.auto-features-wrapper {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.auto-feature-card {
  background: #1a1a1a;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

.auto-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(225,6,0,0.4);
}

/* ICON STYLE */
.auto-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #e10600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.4s;
}

.auto-feature-card:hover .auto-icon {
  background: #fff;
  color: #000;
}

.auto-feature-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.auto-feature-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .auto-feature-card {
    padding: 30px 20px;
  }
}







.new-footer {
  background: #0f0f0f;
  color: #fff;
  padding: 80px 0 30px;
  font-family: Arial, sans-serif;
}

.new-footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.new-footer-col h3 {
  margin-bottom: 20px;
  color: #e10600;
  font-size: 20px;
}

.new-footer-col p {
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
}

.new-footer-col ul {
  list-style: none;
  padding: 0;
}

.new-footer-col ul li {
  margin-bottom: 10px;
}

.new-footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.new-footer-col ul li a:hover {
  color: #e10600;
  padding-left: 5px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-row i {
  color: #e10600;
  margin-top: 3px;
  min-width: 20px;
}

.contact-row a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.contact-row a:hover {
  color: #e10600;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .new-footer {
    text-align: center;
  }

  .contact-row {
    justify-content: center;
  }
}



.new-footer {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  padding: 100px 0 40px;
  font-family: 'Poppins', sans-serif;
}

/* Layout */
.new-footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}

/* Headings Bigger */
.new-footer-col h3 {
  margin-bottom: 25px;
  color: #ff2a2a;
  font-size: 26px;   /* BARA KAR DIYA */
  font-weight: 700;
  letter-spacing: 1px;
}

/* Paragraph Bigger */
.new-footer-col p {
  color: #ddd;
  line-height: 1.8;
  font-size: 16px;   /* BARA */
}

/* Links */
.new-footer-col ul {
  list-style: none;
  padding: 0;
}

.new-footer-col ul li {
  margin-bottom: 14px;
}

.new-footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;   /* BARA */
  transition: 0.3s ease;
}

.new-footer-col ul li a:hover {
  color: #ff2a2a;
  padding-left: 8px;
}

/* Contact Row */
.contact-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 16px;   /* BARA */
}

/* Attractive Circle Icons */
.contact-row i {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ff0000, #ff4d4d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.4s ease;
}

/* WhatsApp Special */
.contact-row .fa-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Hover Effect */
.contact-row:hover i {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(255,0,0,0.6);
}

.contact-row a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.contact-row a:hover {
  color: #ff2a2a;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;   /* BARA */
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .new-footer {
    text-align: center;
  }

  .contact-row {
    justify-content: center;
  }
}



/* ===== FOOTER STYLING ===== */

.new-footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.new-footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Columns */
/* .new-footer-col {
  flex: 1;
  min-width: 250px;
}

.new-footer-col h3 {
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
}

.new-footer-col p {
  line-height: 1.7;
  font-size: 14px;
  color: #ccc;
} */

/* Quick Links */

  /* list-style: none;
  padding: 0;
  margin: 0;
}

.new-footer-col ul li {
  margin-bottom: 10px;
}

.new-footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.new-footer-col ul li a:hover {
  color: #f44336;
  padding-left: 5px;
} */

/* Contact */
/* .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #ccc;
} */

/* .contact-row i {
  color: #f44336;
  margin-top: 3px;
}

.contact-row a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.contact-row a:hover {
  color: #f44336;
} */

/* Bottom */
/* .footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #aaa;
} */

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .new-footer-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .new-footer-container {
    flex-direction: column;
    text-align: left;
  }

  .new-footer-col {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .new-footer {
    padding: 40px 15px 15px;
  }

  .new-footer-col h3 {
    font-size: 18px;
  }

  .new-footer-col p,
  .new-footer-col ul li a,
  .contact-row {
    font-size: 13px;
  }
}





.hospitality-section {
  padding: 60px 20px;
  background: #f5f7fa;
  font-family: 'Arial', sans-serif;
}

.hospitality-heading {
  text-align: center;
  margin-bottom: 50px;
}

.hospitality-heading h2 {
  font-size: 36px;
  color: #222;
  margin-bottom: 15px;
}

.hospitality-heading p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.hospitality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.hospitality-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hospitality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.hospitality-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: scale 0.3s;
}

.hospitality-card:hover img {
  transform: scale(1.05);
}

.hospitality-content {
  padding: 25px 20px;
  text-align: center;
}

.hospitality-content h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hospitality-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.fas {
  color: #007bff;
  font-size: 20px;
}




.why-choose {
  padding: 100px 20px;
  background: white;
  color:black;
}

.why-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 16px;
  opacity: 0.85;
}

.why-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Glass Cards */
.why-card {
  width: 320px;
  padding: 40px 25px;
  border-radius: 18px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Icon (Blue Glow) */
.why-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff, #005bea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.6);
  transition: 0.4s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 198, 255, 0.9);
}

.why-card h3 {
  font-size: 21px;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
}

.stats-section {
  padding: 60px 20px;
  text-align: center;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  background: conic-gradient(#007bff 0deg, #e6e6e6 0deg);
  position: relative;
}

.progress-circle::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;
}

.progress-value {
  position: relative;
  z-index: 2;
  color: #000;
}

.stat-title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* ✅ Mobile Responsive */

@media (max-width: 992px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
  }
}









body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
}

.stats-section {
  padding: 60px 20px;
  text-align: center;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  background: conic-gradient(#007bff 0deg, #e6e6e6 0deg);
  position: relative;
}

.progress-circle::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;
}

.progress-value {
  position: relative;
  z-index: 2;
  color: #000;
}

.stat-title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* ✅ Mobile Responsive */

@media (max-width: 992px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
  }
}


.hospitality-section {
  padding: 50px 20px;
  background: #f9f9f9;
}

.hospitality-heading {
  text-align: center;
  margin-bottom: 40px;
}

.hospitality-heading h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hospitality-heading p {
  font-size: 16px;
  color: #555;
}

.hospitality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.hospitality-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.hospitality-card:hover {
  transform: translateY(-5px);
}

.hospitality-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hospitality-content {
  padding: 20px;
}

.hospitality-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hospitality-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.hospitality-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #007bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}
.hospitality-btn:hover {
  background: #0056b3;
}


.hospitality-section {
  padding: 100px 20px;
  background: #f8f9fa;
}

.hospitality-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.hospitality-heading h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #111;
}

.hospitality-heading p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.hospitality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 in one row */
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.hospitality-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hospitality-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.hospitality-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hospitality-content {
  padding: 25px 20px;
  flex: 1;
}

.hospitality-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.hospitality-content h3 i {
  color: #00bfae;
  margin-right: 8px;
}

.hospitality-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ===== Responsive ===== */

/* Tablet → 2 per row */
@media (max-width: 992px) {
  .hospitality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile → 1 per row */
@media (max-width: 600px) {
  .hospitality-grid {
    grid-template-columns: 1fr;
  }

  .hospitality-heading h2 {
    font-size: 26px;
  }
}

.hospitality-section {
  padding: 120px 20px;
  background: #f8f9fa;
}

.hospitality-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px auto;
}

.hospitality-heading h2 {
  font-size: 38px;
  margin-bottom: 18px;
  color: #111;
}

.hospitality-heading p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

/* GRID */
.hospitality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; /* more space */
  max-width: 1400px; /* wider container */
  margin: auto;
}

/* CARD */
.hospitality-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hospitality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.hospitality-card img {
  width: 100%;
  height: 280px; /* bigger image */
  object-fit: cover;
}

.hospitality-content {
  padding: 35px 25px;
  flex: 1;
}

.hospitality-content h3 {
  font-size: 24px; /* bigger heading */
  margin-bottom: 15px;
  color: #111;
}

.hospitality-content h3 i {
  color: #00bfae;
  margin-right: 10px;
  font-size: 20px;
}

.hospitality-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* Tablet */
@media (max-width: 992px) {
  .hospitality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hospitality-grid {
    grid-template-columns: 1fr;
  }

  .hospitality-card img {
    height: 240px;
  }

  .hospitality-heading h2 {
    font-size: 28px;
  }
}
























.footer360 {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #ddd;
  padding: 100px 20px 40px;
  font-family: 'Poppins', sans-serif;
}

.footer360-container {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

/* ===== Titles ===== */
.footer360-title {
  color: #fff;
  font-size: 24px; /* Bigger */
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Animated Line Under Title */
.footer360-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #00bfae;
  transition: 0.4s ease;
}

/* Line expands on hover */
.footer360-column:hover .footer360-title::after {
  width: 100%;
}

/* About Text */
.footer360-text {
  font-size: 16px; /* Bigger */
  line-height: 1.9;
  color: #bbb;
}

/* ===== Quick Links ===== */
.footer360-links {
  list-style: none;
  padding: 0;
}

.footer360-links li {
  margin-bottom: 15px;
}

.footer360-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px; /* Bigger */
  transition: 0.3s ease;
  position: relative;
}

.footer360-links a::before {
  content: "›";
  margin-right: 8px;
  color: #00bfae;
  transition: 0.3s;
}

.footer360-links a:hover {
  color: #00bfae;
  padding-left: 8px;
}

/* ===== Contact ===== */
.footer360-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 16px; /* Bigger */
}

.footer360-contact i {
  color: #00bfae;
  font-size: 18px;
}

.footer360-contact a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer360-contact a:hover {
  color: #00bfae;
}

/* ===== Bottom ===== */
.footer360-bottom {
  text-align: center;
  margin-top: 70px;
  padding-top: 25px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #888;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .footer360-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer360-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer360-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer360-contact {
    justify-content: center;
  }
}














.stats-section {
  padding: 100px 20px;
  background: #f8f9fa;
  text-align: center;
}

.stats-header {
  max-width: 800px;
  margin: 0 auto 70px;
}

.stats-main-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.stats-main-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: #00bfae;
  transform: translateX(-50%);
}

.stats-sub-title {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media (max-width: 992px) {
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-wrapper {
    grid-template-columns: 1fr;
  }
}




.connect-section {
  padding: 100px 20px;
  background: #f8f9fa;
  font-family: 'Poppins', sans-serif;
}

.connect-container {
  max-width: 1200px;
  margin: auto;
}

/* ===== Header ===== */
.connect-header {
  text-align: center;
  margin-bottom: 70px;
}

.connect-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.connect-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70px;
  height: 3px;
  background: #00bfae; /* SAME COLOR */
  transform: translateX(-50%);
}

.connect-subtitle {
  font-size: 18px;
  color: #666;
}

/* ===== Cards ===== */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.connect-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.connect-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ===== Icons ===== */
.connect-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(0,191,174,0.1);
  color: #00bfae;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 50%;
  transition: 0.3s;
}

.connect-card:hover .connect-icon {
  background: #00bfae;
  color: #fff;
}

.connect-card-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.connect-card-text {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
}

.connect-card-text a {
  text-decoration: none;
  color: #666;
  transition: 0.3s;
}

.connect-card-text a:hover {
  color: #00bfae;
}

/* ===== Map ===== */
.connect-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .connect-title {
    font-size: 28px;
  }
}



/* ===== Section ===== */
.connect-section {
  padding: 120px 20px;
}

/* ===== Heading ===== */
.connect-title {
  font-size: 42px;   /* Bigger */
}

.connect-subtitle {
  font-size: 20px;   /* Bigger */
}

/* ===== Cards ===== */
.connect-card {
  padding: 50px 35px;  /* More spacing */
}

/* ===== ICON BIGGER ===== */
.connect-icon {
  width: 90px;        /* Bigger circle */
  height: 90px;
  font-size: 32px;    /* Bigger icon */
}

/* ===== Title Bigger ===== */
.connect-card-title {
  font-size: 24px;   /* Bigger */
  margin-bottom: 18px;
}

/* ===== Text Bigger ===== */
.connect-card-text {
  font-size: 18px;   /* Bigger */
}

/* ===== Map Height Bigger ===== */
.connect-map iframe {
  height: 450px;
}

/* ===== Responsive Adjust ===== */
@media (max-width: 600px) {
  .connect-title {
    font-size: 32px;
  }

  .connect-subtitle {
    font-size: 18px;
  }

  .connect-card-title {
    font-size: 22px;
  }

  .connect-card-text {
    font-size: 17px;
  }
}








.topbar-pro {
  background: linear-gradient(90deg, #00bfae, #009688);
  padding: 10px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.topbar-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.topbar-item i {
  font-size: 18px;
}


