/* Base Styles */
:root {
  --primary-color: #ff5722;
  --secondary-color: #020d26;
  --dark-blue: #020d26;
  --darker-blue: #020d26;
  --light-text: #ffffff;
  --gray-text: #cccccc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #020d26;
  color: var(--light-text);
  line-height: 1.6;
}

.error-message {
  color: red;              
  font-size: 12px;         
  margin-top: 5px;         
  font-family: Arial, sans-serif;  
  display: block;        
}
/* Top Navbar Container */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #020d26;
  z-index: 1000;
  border: 2px solid #ff5722;
  border-radius: 10px;
  padding: 0.5rem 1rem;
}
@media (max-width: 768px) {
  nav {
    width: 100%;
  }

  .content-wrapper {
    flex-direction: column;
    max-width: 100%;
    overflow-x: hidden;
  }

  .main-nav {
    display: none;
  }

  .mobile-sidebar {
    width: 100%;
  }
}
header {
  padding-top: 100px;
}

.logo {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.logo img {
  display: block;
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.logo:hover img {
  transform: scale(1.1);
}

.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 165, 0, 0.4) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
}

.logo:hover::before {
  left: 100%;
}

.main-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.main-nav li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.main-nav li a:hover {
  color: #eb6e0d;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1040;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: #eb6e0d;
}

.Contact {
  background-color: transparent;
  border: 1px solid #eb6e0d;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.Contact:hover {
  background-color: #eb6e0d;
  color: #1a1040;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100vh;
  background-color: #020d26;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1100;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.mobile-sidebar.active {
  transform: translateX(0);
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-sidebar .dropdown {
  position: relative;
}

.mobile-sidebar .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  min-width: auto;
}

.mobile-sidebar .dropdown-menu li a {
  padding-left: 1rem;
}

.sidebar-header .close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.sidebar-header .close-btn:hover {
  color: orange;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .mobile-menu-btn {
      display: block;
  }
  .main-nav {
      display: none;
  }

}

.contact-btn {
  display: inline-block;
  background-color: #eb6e0d;
  color: #1b1528;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.card,
.timeline-content,
.domain-card,
.apply-card {
  background: #121f3d !important;
  border: 1px solid #ff5722;
}

.internship-process-section,
.why-choose-section {
  background-color: #020d26;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.min-h-screen {
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

.heading {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.subheading {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.section-heading {
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1rem; /* Adjusted for consistent gap */
}

/* Updated custom-underline to match the gradient in the image */
.custom-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color) 0%, transparent 100%);
  margin: 0 auto 3rem; /* Consistent gap with card-grid */
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #e64a19;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 87, 34, 0.5);
}

.cta-container {
  margin-top: 2rem;
}

.center {
  text-align: center;
}

.section {
  padding: 5rem 0;
}

.bg-dark {
  background-color: #020d26;
}

.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 13, 38, 0.8);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.mobile-app-section {
  padding: 0 20px 80px 20px;
  background: #020d26;
  overflow: hidden;
  margin-top: -50px;
}

.content-wrapper {
  max-width: 1200px;
  margin-top: 50px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 100px;
  position: relative;
}

.text-content {
  flex: 1;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

.text-content h2 {
  font-size: 2.5rem;
  margin-bottom: 35px;
  color: #ff5722;
  position: relative;
  display: inline-block;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fcfafa;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.text-content p.visible {
  opacity: 1;
  transform: translateY(0);
}

.arr {
  font-size: 2rem;
}

.image-content {
  flex: 1;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

.image-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.8s ease;
}

.image-content::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(74, 108, 247, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  z-index: -1;
}

.image-content::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(74, 108, 247, 0.15);
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
  z-index: -1;
}

@keyframes float {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-15px) rotate(2deg);
  }
  100% {
      transform: translateY(0px) rotate(0deg);
  }
}

@media (max-width: 992px) {
  .content-wrapper {
      flex-direction: column;
      text-align: center;
  }
  .text-content h2::after {
      left: 50%;
      transform: translateX(-50%);
  }
  .image-content {
      margin-top: 40px;
  }
  .image-content img {
      max-width: 100%;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background-color: #121f3d;
  padding: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--gray-text);
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.domain-card {
  background-color: #020d26;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.domain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 87, 34, 0.3);
}

.domain-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #041330, #0a2a5e);
  color: var(--primary-color);
  font-size: 3rem;
  transition: transform 0.3s ease;
}

.domain-card:hover .domain-icon {
  transform: scale(1.1);
}

.domain-content {
  padding: 1.25rem;
}

.domain-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.domain-card:hover .domain-title {
  color: var(--primary-color);
}

.domain-text {
  font-size: 0.9rem;
  color: var(--gray-text);
}

.section.bg-dark {
  background-color: #020d26;
  padding: 80px 20px;
  position: relative;
  color: #fff;
}

.timeline-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: #ff5722;
  z-index: 1;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-content {
  background-color: #121f3d;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.4);
}

.timeline-icon {
  font-size: 48px;
  color: #ff5722;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.timeline-icon:hover {
  transform: scale(1.1);
}

.timeline-title {
  font-size: 20px;
  font-weight: bold;
  color: #ff5722;
  margin-bottom: 10px;
}

.timeline-text {
  font-size: 16px;
  color: #dcdcdc;
}

.timeline-number {
  position: absolute;
  top: 30px;
  width: 40px;
  height: 40px;
  background-color: #ff5722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  z-index: 3;
}

.timeline-item.left .timeline-number {
  right: -20px;
}

.timeline-item.right .timeline-number {
  left: -20px;
}

@media (max-width: 768px) {
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
      width: 100%;
      left: 0;
      text-align: left;
  }
  .timeline-number {
      left: -20px !important;
      right: auto !important;
  }
  .timeline-content {
      align-items: flex-start;
      text-align: left;
  }
  .timeline-icon {
      align-self: flex-start;
  }
}

.apply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.apply-card {
  display: flex;
  background-color: var(--dark-blue);
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.apply-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 5px 5px rgba(255, 87, 34, 0.4);
}

.apply-icon {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.apply-card:hover .apply-icon {
  transform: scale(1.1);
}

.apply-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.apply-card:hover .apply-title {
  color: var(--primary-color);
}

.apply-text {
  color: var(--gray-text);
  font-size: 0.95rem;
}

.animate-fadeIn {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  0% {
      opacity: 0;
      transform: translateY(-20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

[class^="icon-"] {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-briefcase {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='14' x='2' y='7' rx='2' ry='2'/%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3C/svg%3E");
}

.icon-users {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.icon-code {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 18 22 12 16 6'/%3E%3Cpolyline points='8 6 2 12 8 18'/%3E%3C/svg%3E");
}

.icon-award {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='7'/%3E%3Cpolyline points='8.21 13.89 7 23 12 20 17 23 15.79 13.88'/%3E%3C/svg%3E");
}

.icon-building {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='16' height='20' x='4' y='2' rx='2' ry='2'/%3E%3Cpath d='M9 22v-4h6v4'/%3E%3Cpath d='M8 6h.01'/%3E%3Cpath d='M16 6h.01'/%3E%3Cpath d='M12 6h.01'/%3E%3Cpath d='M12 10h.01'/%3E%3Cpath d='M12 14h.01'/%3E%3Cpath d='M16 10h.01'/%3E%3Cpath d='M16 14h.01'/%3E%3Cpath d='M8 10h.01'/%3E%3Cpath d='M8 14h.01'/%3E%3C/svg%3E");
}

.icon-book {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H20v20H6.5a2.5 2.5 0 0 1 0-5H20'/%3E%3C/svg%3E");
}

.icon-layout {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='18' height='18' x='3' y='3' rx='2' ry='2'/%3E%3Cline x1='3' x2='21' y1='9' y2='9'/%3E%3Cline x1='9' x2='9' y1='21' y2='9'/%3E%3C/svg%3E");
}

.icon-smartphone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='14' height='20' x='5' y='2' rx='2' ry='2'/%3E%3Cline x1='12' x2='12.01' y1='18' y2='18'/%3E%3C/svg%3E");
}

.icon-database {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='12' cy='5' rx='9' ry='3'/%3E%3Cpath d='M21 12c0 1.66-4 3-9 3s-9-1.34-9-3'/%3E%3Cpath d='M3 5v14c0 1.66 4 3 9 3s9-1.34 9-3V5'/%3E%3C/svg%3E");
}

.icon-brain {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.5 2A2.5 2.5 0 0 1 12 4.5v15a2.5 2.5 0 0 1-4.96.44 2.5 2.5 0 0 1-2.96-3.08 3 3 0 0 1-.34-5.58 2.5 2.5 0 0 1 1.32-4.24 2.5 2.5 0 0 1 1.98-3A2.5 2.5 0 0 1 9.5 2Z'/%3E%3Cpath d='M14.5 2A2.5 2.5 0 0 0 12 4.5v15a2.5 2.5 0 0 0 4.96.44 2.5 2.5 0 0 0 2.96-3.08 3 3 0 0 0 .34-5.58 2.5 2.5 0 0 0-1.32-4.24 2.5 2.5 0 0 0-1.98-3A2.5 2.5 0 0 0 14.5 2Z'/%3E%3C/svg%3E");
}

.icon-cloud {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z'/%3E%3C/svg%3E");
}

.icon-check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff5722' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}

@media (min-width: 768px) {
  .heading {
      font-size: 3.5rem;
  }
  .subheading {
      font-size: 1.5rem;
  }
  .section-heading {
      font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .hero {
      height: 50vh;
  }
  .card-grid, .domain-grid, .apply-grid {
      grid-template-columns: 1fr;
  }
}

#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #ff5722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  z-index: 1000;
  text-decoration: none;
}

#scrollToTop:hover {
  background: #eb6e0d;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  #scrollToTop {
      width: 40px;
      height: 40px;
      bottom: 15px;
      right: 15px;
      font-size: 18px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  #scrollToTop {
      width: 45px;
      height: 45px;
      font-size: 20px;
  }
}

@media (min-width: 1440px) {
  #scrollToTop {
      width: 60px;
      height: 60px;
      bottom: 30px;
      right: 30px;
      font-size: 28px;
  }
}

.footer-section {
  background-color: #1b1528;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #eb6e0d;
  text-align: left;
  width: 100%;
}

.footer-column p {
  margin-bottom: 15px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cfcfcf;
  text-align: left;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #eb6e0d;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  margin-top: 15px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: #cfcfcf;
  font-size: 1.1rem;
  text-decoration: none;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #eb6e0d;
  border-color: #eb6e0d;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
  font-size: 0.9rem;
  color: #cfcfcf;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  text-align: center;
  width: 100%;
}

.email-link {
  color: #ff5722;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #ff8f66;
}

@media (max-width: 992px) {
  .footer-top {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
  }
  .footer-about {
      grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-top {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  .footer-about {
      grid-column: span 1;
  }
  .footer-column {
      padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .footer-section {
      padding: 40px 15px 15px;
  }
}
.popup-form-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding-top: 100px;
}

.popup-form-content {
  background: #020d26;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 2px solid #ff5722;
  margin-top: 10px;
}

.popup-form-content h2 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
  color: #ff5722;
}

.popup-form-content label {
  display: block;
  text-align: left;
  margin: 10px 0 5px;
  color: #fff;
  font-weight: 500;
}

.popup-form-content input,
.popup-form-content textarea,
.popup-form-content select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #333;
  margin-bottom: 15px;
  background-color: #0a1a3a;
  color: #fff;
  font-size: 14px;
}

.popup-form-content input::placeholder,
.popup-form-content textarea::placeholder {
  color: #aaa;
}

.popup-form-content .submit-btn {
  background-color: #ff5722;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.popup-form-content .submit-btn:hover {
  background-color: #e64a19;
  transform: translateY(-2px);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ff5722;
}

.apply-btn {
  background-color: #ff5722;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background-color: #e64a19;
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 87, 34, 0.5);
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}

.form-group {
  flex: 1;
}

@media (max-width: 600px) {
  .form-row {
      flex-direction: column;
      gap: 0;
  }
  .popup-form-content {
      padding: 20px;
  }
  .popup-form-content h2 {
      font-size: 20px;
  }
}

@media (max-width: 480px) {
  .popup-form-content input,
  .popup-form-content textarea,
  .popup-form-content select {
      padding: 10px;
      font-size: 13px;
  }
  .popup-form-content .submit-btn {
      padding: 10px;
      font-size: 14px;
  }
}

/* Chat Icon */
#chatIcon {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #ff5722;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9998 !important;
  transition: transform 0.3s, background 0.3s;
}

#chatIcon:hover {
  background: #e64a19;
  transform: scale(1.1);
}

/* Chatbot Container */

/* Chat Icon */
#chatIcon {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #ff5722;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9998 !important;
  transition: transform 0.3s, background 0.3s;
}

#chatIcon:hover {
  background: #e64a19;
  transform: scale(1.1);
}

/* Chatbot Container */
#chatBot {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 150px;
  right: 20px;
  width: 350px;
  height: 450px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9500;
  overflow: hidden;
}

#chatBot header {
  background: #ff5722;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#chatBot header h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}

#closeChat {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s;
}

#closeChat:hover {
  transform: scale(1.1);
}

.chatbox {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background: #f9f9f9;
}

.chat {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.chat p {
  margin: 0;
  padding: 8px 12px;
  border-radius: 10px;
  max-width: 80%;
}

.chat-incoming p {
  background: #e0e0e0;
  color: #333;
  align-self: flex-start;
}

.chat-outgoing {
  align-items: flex-end;
}

.chat-outgoing p {
  background: #ff5722;
  color: #fff;
  align-self: flex-end;
}

.chat-input {
  display: flex;
  padding: 10px;
  background: #fff;
  border-top: 1px solid #ddd;
}

.chat-input textarea {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  resize: none;
  height: 50px;
  font-size: 0.9rem;
  color: #333;
}

#sendBTN {
  background: #ff5722;
  color: #fff;
  border: none;
  padding: 8px 15px;
  margin-left: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

#sendBTN:hover {
  background: #e64a19;
}

/* Media Queries */
@media (max-width: 768px) {
  #chatIcon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    bottom: 80px;
    right: 15px;
  }

  #chatBot {
    width: 300px;
    height: 400px;
    bottom: 130px;
    right: 15px;
  }

  #scrollToTop {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  #chatIcon {
    width: 40px;
    height: 40px;
    bottom: 70px;
    right: 15px;
  }

  #chatBot {
    width: 300px;       /* Fixed width */
    height: 400px;      /* Fixed height */
    bottom: 130px;      /* Adjusted position */
    right: 15px;
    border-radius: 10px; /* Optional rounded corners */
  }

  #scrollToTop {
    width: 35px;
    height: 35px;
    bottom: 10px;
    right: 15px;
    font-size: 16px;
  }
}

@media (min-width: 1440px) {
  #chatIcon {
    bottom: 100px;
    right: 30px;
  }

  #chatBot {
    bottom: 160px;
    right: 30px;
    width: 400px;
    height: 500px;
  }

  #scrollToTop {
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    font-size: 28px;
  }
}