/* ===== Navbar ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 10cm;
  font-weight: bold;
  color: #fff;
}

.adbeast {
  max-width: 25%;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 70px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* icon styling */
.nav-links .icon {
  font-size: 22px;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  color: #2ecc71;
}

/* Hover effect */
.nav-links a:hover {
  color: #2ecc71;
}

.nav-links a:hover .icon {
  opacity: 1;
  transform: translateY(0);
}


/* ===== Button ===== */
.btn {
  padding: 8px 20px;
  background: #2ecc71;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn:hover {
  background: #27ae60;
}

/* ===== Popup Form ===== */
.popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.popup-content {
  background: #ab8585;
  padding: 25px;
  border-radius: 10px;
  width: 350px;
  top: 1cm;
  position: relative;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.popup-content h2 {
  margin-bottom: 15px;
  text-align: center;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.popup-content .btn {
  width: 100%;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* 🔹 Responsive Code Only */
/* 🔹 Only Responsive Styles */
.menu-toggle {
  display: none; /* 🔥 Hide by default */
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 10px 15px;
  }

  /* Logo adjust */
  .logo img {
    height: 40px;
  }

  /* Nav links hide initially */
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #111;
    width: 220px;
    text-align: right;
    padding: 20px;
    display: none;
    gap: 15px;
  }

  /* Show menu when .show added */
  .nav-links.show {
    display: flex;
  }

  /* Show toggle button on mobile */
  .menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-left: auto;
  }
}



/* ===== Navbar ===== */

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #333;
  padding: 40px;
}

/* Services section */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* Card design */
.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Card images */
.card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

/* Title */
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #e18585;
}

/* Paragraph */
.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #cc9725;
}

/* Button */
.btn {
  display: inline-block;
  padding: 10px 25px;
  background: #2ecc71;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  /* transition: background 0.3s; */
}

.btn:hover {
  background: #27ae60;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Individual Card */
.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

/* Icons */
.card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  align-items: center;
  margin-left: 125px;
}

/* Headings */
.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #d66363;
}

/* Paragraph */
.card p {
  font-size: 14px;
  color: #ef9608bb;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Link */
.card a {
  font-weight: bold;
  text-decoration: none;
  color: #77a200;
  transition: color 0.3s;
}

.card a:hover {
  color: #558000;
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

/* Section Background */
.hero-section {
  background: #f4f4f4;
  padding: 60px 0;
  overflow: hidden;  /* ताकि image बाहर निकले तब भी design safe रहे */
}

/* Container */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  margin: auto;
  flex-wrap: wrap;
  position: relative;
}

/* Left Content */
.hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  z-index: 2;
}

.hero-content h1 {
  color: #e83e4d;
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-content a {
  color: #1a73e8;
  text-decoration: none;
}

.hero-content a:hover {
  text-decoration: underline;
}

/* Button */
.btn {
  display: inline-block;
  background: linear-gradient(90deg, #d63031, #ff4757);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
}

/* Right Image */
.hero-image {
  flex: 1;
  text-align: right;
  position: relative;
}

.hero-image img {
  max-width: 110%;    /* थोड़ा बड़ा */
  margin-right: -60px; /* background से बाहर निकलने का effect */
  margin-top: 20px;
}


/* Submit Form */

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
}

/* Section */
.contact-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Image */
.contact-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
}

/* Right Form */
.contact-form {
  background: #000;
  padding: 30px;
  border-radius: 20px;
  flex: 1;
  min-width: 350px;
}

.contact-form h3 {
  margin: 0;
  font-size: 16px;
  color: #ff6600;
}

.contact-form h1 {
  margin: 10px 0 20px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

/* Input & Textarea */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: none;
  border-radius: 30px;
  outline: none;
  font-size: 14px;
}

.input-row {
  display: flex;
  gap: 15px;
}

.input-row input {
  flex: 1;
}

/* Button */
.contact-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #ff6600, #ff9900);
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  opacity: 0.9;
}

/*Industrie*/
body {
  font-family: Arial, sans-serif;
  background: #fff7f6;
  text-align: center;
}

.industries {
  padding: 40px;
}

.industries h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.industry-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

.industry-box {
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-box .icon {
  font-size: 80px;
  display: block;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

/* Colors for each industry */
.travel .icon { color: #1d4ed8; }       /* Blue */
.hotel .icon { color: #059669; }        /* Green */
.realestate .icon { color: #f59e0b; }   /* Yellow */
.ecommerce .icon { color: #7c3aed; }    /* Purple */
.education .icon { color: #6b7280; }    /* Gray */
.health .icon { color: #ef4444; }       /* Red */

/* Hover effects */
.travel:hover .icon { color: #3b82f6; }
.hotel:hover .icon { color: #10b981; }
.realestate:hover .icon { color: #facc15; }
.ecommerce:hover .icon { color: #a855f7; }
.education:hover .icon { color: #374151; }
.health:hover .icon { color: #dc2626; }

.industry-box p {
  font-size: 16px;
  margin: 0;
}

/*Industrie*/

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

/* WhatsApp */
.whatsapp-btn {
  background: #25D366;
}

/* Call */
.call-btn {
  background: #007AFF;
}


/* CTA Banner */  
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #222;
}

/* Section Style */
.about-section {
  background: #ab6796; /* yellow background */
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Image Box */
.image-box {
  flex: 1;
}
.image-box img {
  height: 12cm;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Content Box */
.content-box {
  flex: 1;
}
.content-box h2 {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.content-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.content-box ul {
  list-style: none;
}
.content-box ul li {
  font-size: 16px;
  margin-bottom: 10px;
}
.content-box ul li::before {
  content: "✔ ";
  color: #000;
  font-weight: bold;
}

/* CTA Banner */

  /* Exprince */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #fff;
  color: #333;
}

/* Stats Section */
.stats-section {
  padding: 90px 20px;
  margin-top: -40px;
  text-align: center;
}

.container-experince {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-box h2 {
  font-size: 48px;
  font-weight: bold;
  color: #528f5f;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .container-experince {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .container-experince {
    grid-template-columns: 1fr;
  }
}

  /* Exprince */

  /* Main Price */

  /* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #0b0e17; /* dark background */
  color: #fff;
}

/* Pricing Section */
.pricing-section {
  padding: 60px 20px;
  text-align: center;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Pricing Card */
.pricing-card {
  background: #111827;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}

.pricing-card h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.pricing-card h2 span {
  font-size: 18px;
  font-weight: normal;
  color: #ccc;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin: 10px 0;
  font-size: 16px;
  color: #ddd;
  text-align: left;
}

/* Button */
.btn {
  background: linear-gradient(to right, #4ade80, #3b82f6);
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.85;
}

/* Highlight Middle Plan */
/* .featured {
  border: 2px solid ;
} */

/* Responsive */
@media (max-width: 992px) {
  .pricing-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }
}
 
/* Main Price */


/* Footer */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.footer {
  background: #111827;
  color: #d1d5db;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h2, .footer h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.footer p {
  font-size: 14px;
  line-height: 22px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #3b82f6;
}

/* social icons */ 

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  width: 60px;
  height: 50px;
  display: flex;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 28px;
  color: white;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* Background Colors */
.facebook { background: #1877f2; }
.instagram { background: #e1306c; }
.linkedin { background: #0a66c2; }
.twitter { background: #1da1f2; }
.youtube { background: #ff0000; }

/* Hover Animation */
.social-links a::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.3);
  transform: rotate(45deg);
  top: -150%;
  left: -150%;
  transition: 0.5s;
}

.social-links a:hover::before {
  top: -20%;
  left: -20%;
}

.social-links a:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* social icons */ 

.footer-bottom {
  text-align: center;
  border-top: 1px solid #374151;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 14px;
  color: #9ca3af;
}

 /* Footer */


 .founders-section {
  text-align: center;
  padding: 60px 20px;
  background: #705858;
}

.founders-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.founders-section h3 {
font-size: 20px;
font-family: revert;
margin-bottom: 25px;
}

.founders-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.founder-card {
  background: #c4885e;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.founder-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  margin-left: 60px;
}

.founder-card h3 {
  margin: 10px 0 5px;
  font-size: 22px;
}

.founder-card p {
  font-size: 15px;
  color: #333;
}







/* Two-column layout */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr; /* left: info, right: form */
  gap: 40px;
  align-items: flex-start;
}

/* Responsive (mobile me ek ke neeche ek aa jayega) */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Info Box Styling */
.info-container {
  background: #f7aaaa;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-container h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1d4e89;
  margin-bottom: 10px;
}

.info-container > p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.step {
  border-left: 4px solid #f1c40f;
  padding-left: 15px;
  margin-bottom: 20px;
}

.step h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1d4e89;
  margin-bottom: 6px;
}

.step p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Form container alignment */
.form-container {
  background: #ee9d9d;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* Enhanced Responsive Styles for Tablet (≤768px) */
@media screen and (max-width: 768px) {
  /* General */
  .container {
    padding: 0 15px;
  }

  /* Navbar */
  .navbar {
    padding: 10px 20px;
  }
  .logo img.adbeast {
    max-width: 20%;
  }
  .nav-links {
    width: 100%;
    padding: 15px;
    top: 60px;
  }
  .nav-links a {
    font-size: 0.95rem;
  }
  .nav-links .icon {
    font-size: 18px;
  }
  .menu-toggle {
    font-size: 24px;
  }

  /* Popup Form */
  .popup-content {
    width: 90%;
    padding: 20px;
    top: 20px;
  }
  .popup-content h2 {
    font-size: 1.5rem;
  }
  .popup-content input,
  .popup-content textarea {
    padding: 8px;
    font-size: 0.9rem;
  }
  .close {
    font-size: 18px;
  }

  /* Services Section */
  .services {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card img {
    width: 60px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
  }
  .card h3 {
    font-size: 1.1rem;
  }
  .card p {
    font-size: 0.9rem;
  }

  /* Hero Section (AI Platform) */
  .hero-container {
    flex-direction: column;
    gap: 20px;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .hero-image {
    text-align: center;
  }
  .hero-image img {
    max-width: 90%;
    margin-right: 0;
  }

  /* Case Studies */
  .cards-container {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .card img {
    margin-left: auto;
    margin-right: auto;
  }

  /* About Section */
  .about-section .container {
    flex-direction: column;
    gap: 20px;
  }
  .image-box img {
    max-width: 100%;
    height: auto;
  }
  .content-box h2 {
    font-size: 24px;
  }
  .content-box p,
  .content-box ul li {
    font-size: 14px;
  }

  /* Stats Section */
  .stats-section {
    padding: 60px 15px;
  }
  .container-experince {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .stat-box h2 {
    font-size: 36px;
  }
  .stat-box p {
    font-size: 14px;
  }

  /* Pricing Section */
  .pricing-section {
    padding: 40px 15px;
  }
  .pricing-container {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 20px;
  }
  .pricing-card h2 {
    font-size: 28px;
  }
  .pricing-card h3 {
    font-size: 20px;
  }
  .pricing-card ul li {
    font-size: 14px;
  }

  /* Industries Section */
  .industries {
    padding: 30px 15px;
  }
  .industry-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .industry-box .icon {
    font-size: 60px;
  }
  .industry-box p {
    font-size: 14px;
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }
  .contact-container {
    flex-direction: column;
    gap: 20px;
  }
  .contact-image img {
    max-width: 100%;
  }
  .contact-form {
    padding: 20px;
    min-width: 100%;
  }
  .contact-form h1 {
    font-size: 24px;
  }
  .contact-form h3 {
    font-size: 14px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 12px;
    font-size: 14px;
  }
  .input-row {
    flex-direction: column;
    gap: 10px;
  }

  /* Founders Section */
  .founders-section {
    padding: 40px 15px;
  }
  .founders-container {
    flex-direction: column;
    gap: 20px;
  }
  .founder-card {
    width: 100%;
    padding: 15px;
  }
  .founder-card img {
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
  }
  .founder-card h3 {
    font-size: 20px;
  }
  .founder-card p {
    font-size: 14px;
  }

  /* Footer */
  .footer {
    padding: 30px 15px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-section h2,
  .footer-section h3 {
    font-size: 18px;
  }
  .footer p,
  .footer ul li a {
    font-size: 13px;
  }
  .social-links {
    justify-content: center;
  }
  .social-links a {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  /* Floating Buttons */
  .floating-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  .floating-buttons a {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  /* Two-Column Grid (Contact) */
  .info-container,
  .form-container {
    padding: 20px;
  }
  .info-container h2 {
    font-size: 20px;
  }
  .info-container > p,
  .step p {
    font-size: 13px;
  }
  .step h4 {
    font-size: 16px;
  }
}

/* Enhanced Responsive Styles for Mobile (≤480px) */
@media screen and (max-width: 480px) {
  /* General */
  .container {
    padding: 0 10px;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  p {
    font-size: 0.85rem;
  }

  /* Navbar */
  .navbar {
    padding: 8px 15px;
  }
  .logo img.adbeast {
    max-width: 15%;
  }
  .nav-links {
    padding: 10px;
    gap: 10px;
  }
  .nav-links a {
    font-size: 0.85rem;
  }
  .nav-links .icon {
    font-size: 16px;
  }
  .menu-toggle {
    font-size: 20px;
  }

  /* Popup Form */
  .popup-content {
    width: 95%;
    padding: 15px;
  }
  .popup-content h2 {
    font-size: 1.3rem;
  }
  .popup-content input,
  .popup-content textarea {
    padding: 6px;
    font-size: 0.85rem;
  }
  .close {
    font-size: 16px;
  }

  /* Services Section */
  .services {
    gap: 15px;
  }
  .card {
    padding: 15px;
  }
  .card img {
    width: 50px;
    height: 50px;
  }
  .card h3 {
    font-size: 1rem;
  }
  .card p {
    font-size: 0.85rem;
  }

  /* Hero Section (AI Platform) */
  .hero-section {
    padding: 40px 0;
  }
  .hero-content h1 {
    font-size: 24px;
  }
  .hero-content p {
    font-size: 13px;
  }
  .hero-image img {
    max-width: 100%;
    margin-right: 0;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* Case Studies */
  .cards-container {
    padding: 15px;
  }

  /* About Section */
  .content-box h2 {
    font-size: 20px;
  }
  .content-box p,
  .content-box ul li {
    font-size: 13px;
  }

  /* Stats Section */
  .stats-section {
    padding: 40px 10px;
  }
  .container-experince {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .stat-box h2 {
    font-size: 28px;
  }
  .stat-box p {
    font-size: 13px;
  }

  /* Pricing Section */
  .pricing-card {
    padding: 15px;
  }
  .pricing-card h2 {
    font-size: 24px;
  }
  .pricing-card h3 {
    font-size: 18px;
  }
  .pricing-card ul li {
    font-size: 13px;
  }

  /* Industries Section */
  .industry-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .industry-box .icon {
    font-size: 50px;
  }
  .industry-box p {
    font-size: 13px;
  }

  /* Contact Section */
  .contact-form {
    padding: 15px;
  }
  .contact-form h1 {
    font-size: 20px;
  }
  .contact-form h3 {
    font-size: 13px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px;
    font-size: 13px;
  }
  .contact-form button {
    padding: 10px;
    font-size: 14px;
  }

  /* Founders Section */
  .founders-section {
    padding: 30px 10px;
  }
  .founders-section h2 {
    font-size: 24px;
  }
  .founders-section h3 {
    font-size: 16px;
  }
  .founder-card {
    padding: 12px;
  }
  .founder-card img {
    width: 80px;
    height: 80px;
  }
  .founder-card h3 {
    font-size: 18px;
  }
  .founder-card p {
    font-size: 13px;
  }

  /* Footer */
  .footer {
    padding: 20px 10px;
  }
  .footer-section h2,
  .footer-section h3 {
    font-size: 16px;
  }
  .footer p,
  .footer ul li a {
    font-size: 12px;
  }
  .social-links a {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  /* Floating Buttons */
  .floating-buttons a {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  /* Two-Column Grid (Contact) */
  .info-container,
  .form-container {
    padding: 15px;
  }
  .info-container h2 {
    font-size: 18px;
  }
  .info-container > p,
  .step p {
    font-size: 12px;
  }
  .step h4 {
    font-size: 14px;
  }
}