/* --- Global Reset & Scrollbar Fix --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
  font-family: 'Montserrat', sans-serif;
}

html, body {
  overflow-x: hidden; 
  width: 100%;
  position: relative;
}

/* Navbar start */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;      
  padding: 0 10%; 
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  position: relative; 
  z-index: 1000;
}

.logo {
  position: relative;
  width: 200px;    
  height: 100%;      
  display: flex;
  align-items: center;
}

.logo-text {
  display: flex;
  align-items: center;
}

.logo-text img {
  height: 120px;    
  width: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); 
  display: block;
  z-index: 1001;     
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links ul {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover, 
.nav-links a.active {
  color: #1c73a2; 
}

.search-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.divider {
  color: #ccc;
  font-size: 20px;
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp {
  background-color: #25D366; 
}

.phone {
  background-color: #1c73a2;
}

.contact-icon:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 480px) {
  .floating-contact {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

@media screen and (max-width: 992px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  .navbar { 
    padding: 15px 5%; 
  }
  
  .hamburger { 
    display: flex; 
    order: 3; 
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none; 
    border-top: 1px solid #eee;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }

  .logo-text img {
    height: 80px;    
  }

  .nav-links ul {
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .menu-toggle:checked ~ .hamburger span {
    background-color: #1c73a2;
  }

  .menu-toggle:checked ~ .nav-links {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .logo-text img {
    height: 100px;   
    position: static;
    transform: none;
  }
  
  .navbar {
    height: 60px;   
  }
}

/* navbar end */

/* HomeBanner start */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

.home-banner {
  height: 100vh; 
  width: 100%;
  background-image: url('./Asset/img/bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.5); 
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0 10%; 
}

.banner-content h1 {
  color: #ffffff;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-align: left;
  letter-spacing: 2px;
}

.banner-content p {
  color: #e0e0e0;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 0 30px 0;
  text-align: left;
  line-height: 1.6;
}

.banner-btns {
  text-align: left;
}

.banner-btns a {
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
  margin: 0 15px 10px 0;
  display: inline-block;
}

.btn-primary {
  background-color: #1c73a2;
  color: white;
}

.btn-primary:hover {
  background-color: #165c82; 
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: white;
}

.btn-secondary:hover {
  background-color: white;
  color: #1c73a2; 
}

@media (max-width: 768px) {
  .banner-content h1 { 
    font-size: 2.2rem; 
  }

  .banner-content p { 
    font-size: 1rem; 
  }
}

/* HomeBanner ends */

/* popular course start */

:root {
  --primary-color: #1c73a2;
  --text-dark: #1f2937;
  --text-light: #4b5563;
  --white: #ffffff;
  --bg-light: #f9fafb;
}

.courses-section {
  padding: 80px 20px;
  background-color: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}


.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}


.course-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.course-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.course-body {
  padding: 20px;
}

.course-body h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.course-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}


.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f3f4f6;
  padding-top: 15px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-dark);
}

.enroll-btn {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.enroll-btn:hover {
  color: #4338ca;
}

/* popular corse end */

/* numbering section start */
.stats-section {
  padding: 80px 0 0 0;
  background-color: #ffffff;
  color: #ffffff;
  text-align: center;
}


.section-header {
  margin-bottom: 40px;
  padding: 0 20px; 
}

.section-header .sub-title {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1c73a2; 
  margin-bottom: 10px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: black;
  line-height: 1.6;
}

/* Slider Container - Full Width */
.slider-container {
  width: 100vw;
  position: relative;
  margin-top: 20px;
}

.stats-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  gap: 0;
}

.stats-slider img {
  flex: 0 0 100vw;
  width: 100vw;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Reuse your existing nav-btn, prev-btn, and next-btn styles here */

/* Navigation Buttons - Adjusted for full width */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

@media (max-width: 768px) {
  .stats-slider img {
    height: 300px; /* Shorter height for mobile screens */
  }
}


/* numbering section end */

/* about start */

.about-section {
  padding: 100px 20px;
  background-color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 350px;
  position: relative;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 20px 20px 0px #1c73a2; 
  margin-bottom: 20px;
  margin-right: 20px;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #11415c;
  color: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experience-badge span {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  color: #ffffff;
}

.about-content {
  flex: 1.2;
  min-width: 350px;
}

.sub-title {
  color: #1c73a2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 2.8rem;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-features {
  list-style: none;
  margin-bottom: 35px;
}

.about-features li {
  margin-bottom: 12px;
  font-weight: 500;
  color: #1f2937;
}

.about-btn {
  display: inline-block;
  padding: 15px 35px;
  background: #1c73a2;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #165c82;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .about-container { 
    flex-direction: column; 
    text-align: center; 
  }

  .about-features { 
    display: inline-block; 
    text-align: left; 
  }

  .about-image img { 
    box-shadow: 10px 10px 0px #1c73a2; 
  }
}

/* about end */

/* our spacialities start */

.specialties-section {
  font-family: 'Montserrat', sans-serif;
  padding: 80px 20px;
  text-align: center;
  background-color: #1c73a2;
  color: #ffffff;
}

.section-title {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  text-transform: capitalize;
}

.specialties-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.specialty-card {
  background: rgba(255, 255, 255, 0.08); 
  border: 1px solid rgba(255, 255, 255, 0.2); 
  border-radius: 15px;
  padding: 40px 25px;
  flex: 1 1 250px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
}

.specialty-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff; 
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.icon-container {
  width: 100%;
  height: 160px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
}

.specialty-card h3 {
  color: #ffffff;
  font-size: 1.15rem;
  letter-spacing: 1.2px;
  margin: 0 0 15px 0;
  font-weight: 800;
  text-transform: uppercase;
}

.specialty-card p {
  color: #d1e3ed; 
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

.icon-container i {
  font-size: 4rem;
  color: #ffffff;
  transition: all 0.3s ease;
}


.specialty-card:hover .icon-container i {
  transform: scale(1.1);
  color: #ffd700; 
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}


@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }
  
  .specialty-card {
    max-width: 100%; 
  }
}

/* our spacialities end */

.achievement-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 350px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.achievement-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 115, 162, 0.85); 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  padding: 20px;
  text-align: center;
  opacity: 0; 
  transition: opacity 0.4s ease;
}

.achievement-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overlay p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #e0e0e0;
}

/* Achievemnets end */

/* testimonial section start */

.testimonial-grid-section {
  padding: 100px 20px;
  background-color: #ffffff; /* Pure white background */
  color: #1e293b; /* Dark Navy text */
  font-family: 'Montserrat', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  text-align: center;
  margin-bottom: 60px;
}

.badge {
  background: #f1f5f9;
  color: #1c73a2;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  display: inline-block;
}

.header h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 20px 0 10px;
  color: #1e293b;
  font-weight: 800;
}

.header p {
  color: #64748b;
  font-size: 18px;
}

/* Bento Grid Logic */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: #1c73a2;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-featured {
  grid-row: span 2;
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border: 2px solid #1c73a2;
}

.quote-mark {
  font-size: 80px;
  line-height: 0;
  margin-bottom: 30px;
  color: #e2e8f0;
  font-family: serif; /* Better for quote style */
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 30px;
  font-style: italic;
}

.card-featured .testimonial-text {
  font-size: 20px;
  color: #0f172a;
  font-weight: 500;
  font-style: normal;
}

.user-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.user-meta img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1c73a2;
}

.name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
}

.role {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

/* Responsive */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .card-featured {
    grid-row: span 1;
  }
}
/* testimonial section end */

/* contact section start */

.cta-banner {
  background: linear-gradient(to right, #1c73a2 0%, #0d2a3a 100%);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Montserrat', sans-serif;
}

.cta-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.cta-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; 
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 550px;
}

.cta-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.cta-form-card h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 18px;
}

.form-group :is(input, select, textarea) {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-group :is(input, select, textarea):focus {
  outline: none;
  border-color: #ffffff; 
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-group textarea::-webkit-scrollbar {
  width: 5px;
}

.form-group textarea::-webkit-scrollbar-thumb {
  background: #0d2a3a;
  border-radius: 10px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #0d2a3a;
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.submit-btn:hover {
  background: #143e54;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  color: #1c73a2;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-button:hover {
  background-color: #0d2a3a;
  color: #ffffff;
  transform: translateY(-3px);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: rotate(15deg) scale(1.1);
}

@media (max-width: 992px) {
  .cta-banner {
    background: linear-gradient(to bottom, #1c73a2 0%, #0d2a3a 100%);
    padding: 60px 20px;
  }
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .cta-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Contact section end */


/* footer start */

.main-footer {
  background-color: #ffffff;
  color: #475569;
  padding: 80px 20px 0px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 50px;
}


.footer-logo-link {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-logo-img {
  max-height: 100px; 
  width: auto;     
  display: block;
}

.footer-about {
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #1e293b;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #1c73a2;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #64748b;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #1c73a2;
  padding-left: 5px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: #64748b;
}

.contact-list i {
  color: #1c73a2; 
  width: 20px; 
  margin-top: 5px;
  text-align: center;
}

.contact-list a {
  text-decoration: none;
  color: #64748b;
  transition: 0.3s ease;
}

.contact-list a:hover {
  color: #1c73a2; 
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #f1f5f9;
  color: #1c73a2;
  text-align: center;
  line-height: 35px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background: #1c73a2;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-bottom a {
  color: #1c73a2;
  text-decoration: none;
}

@media (max-width: 768px) {
  .main-footer {
    padding: 60px 20px 30px;
    overflow: hidden;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr 1fr; 
    text-align: left;
    gap: 30px 15px; 
  }

  .footer-col:first-child,
  .footer-col:last-child {
    grid-column: span 2;
    text-align: left; 
  }
  
  .footer-logo-img {
    max-height: 80px; /* Slightly smaller for mobile */
  }

  .footer-col h4::after {
    left: 0 !important;
    transform: none !important;
  }

  .contact-list li {
    justify-content: flex-start; 
    text-align: left;
    flex-direction: row; 
    flex-wrap: nowrap;
    gap: 12px;
  }

  .contact-list i {
    flex-shrink: 0;
  }

  .social-links {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .footer-bottom {
    text-align: left;
    padding-top: 25px;
    font-size: 0.85rem;
  }

  .developer-credit {
    text-align: left;
  }
}
/* footer end */