* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif, "Poppins", sans-serif;
}

/* NAVBAR-SECTION */

/* ===============================
   NAVBAR BASE
================================ */
.custom-navbar {
    background: #fff;
}

.custom-navbar .container {
    padding: 15px 20px;
}

/* LOGO */
.logo-img {
    height: 60px;
    width: auto;
}

/* ===============================
   TOGGLER FIX (IMPORTANT)
   Removes black/grey border & focus ring
================================ */
.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}

/* ===============================
   TOGGLER FIX (IMPORTANT)
   Removes black/grey border & focus ring
================================ */
.navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}


/* ===============================
   DESKTOP MENU
================================ */
.navbar-nav .nav-link {
    font-weight: 700;
    font-size: 17px;
    color: #212020;
    position: relative;
    padding-bottom: 5px;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #ff4b4b;
    transition: width 0.35s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* DESKTOP BUTTON */
.custom-btn {
    border: 1px solid #000;
    padding: 10px 35px;
    font-weight: 700;
    background: #fff;
    border-radius: 7px;
    color: #000;
    text-decoration: none;
}

/* DESKTOP MENU ALIGNMENT */
@media (min-width: 992px) {

    #mainNav {
        justify-content: flex-end !important;
        margin-right: 40px;
    }
}

/* ===============================
   MOBILE VIEW
================================ */
@media (max-width: 991px) {

    /* OFFCANVAS */
    .mobile-offcanvas {
        background: #000 !important;
        width: 60vw !important;
        max-width: 60vw !important;
    }

    /* HEADER */
    .mobile-offcanvas .offcanvas-header {
        padding: 20px;
    }

    /* BODY */
    .mobile-offcanvas .offcanvas-body {
        padding: 0;
        display: block;
    }

    /* MENU LIST */
    .mobile-offcanvas .navbar-nav {
        margin-top: 60px;
        text-align: center;
        align-items: center;
        gap: 22px;
    }

    /* MOBILE LINKS */
    .mobile-offcanvas .nav-link {
        color: #fff !important;
        font-size: 20px;
        font-weight: 500;
    }

    .mobile-offcanvas .nav-link::after {
        display: none;
    }

    /* CLOSE BUTTON */
    .btn-close-white {
        filter: invert(1);
        opacity: 1;
    }
}



/* HERO-SECTION */

.hero-img::before {
    content: "";
    position: absolute;
    width: 548px;
    height: 548px;
    background: #03a88a;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-img img {
    max-height: 690px;
}

@media (max-width: 992px) {
    .hero-img::before {
        width: 380px;
        height: 350px;
    }

    .hero-img img {
        max-height: 450px;
    }
}

@media (max-width: 768px) {
  .hero-title br {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.25;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* PARAGRAPH */
  .hero-para br {
    display: none;   /* paragraph ka br bhi ignore */
  }

  .hero-para {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 320px;   /* width = 2 lines */
    margin-left: auto;
    margin-right: auto;
  }

    .hero-img::before {
        width: 300px;
        height: 280px;
    }

    .hero-img img {
        max-height: 350px;
    }
}



/* FEATURES-SECTION */


.feature-icon {
    width: 85px;
    height: 85px;
}

@media (max-width: 768px) {
    .feature-icon {
        width: 70px;
        height: 70px;
    }
}


/* TWO-COLUMN-SLIDER SECTION */

.slider-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.slider-arrow {
    width: 38px;
    height: 38px;
    cursor: pointer;
}

.slider-arrow.start-0 {
    left: -20px;
}

.slider-arrow.end-0 {
    right: -20px;
}

/* dots */
.slider-dot {
    width: 24px;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
}

.slider-dot.active {
    background: #000;
}

@media (max-width: 1100px) {
    .slider-wrapper img {
        height: 420px;
    }
}

@media (max-width: 991px) {
    .slider-wrapper img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .slider-wrapper img {
        height: 320px;
    }

    .slider-arrow.start-0 {
        left: 5px;
    }

    .slider-arrow.end-0 {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .slider-wrapper img {
        height: 250px;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }

    .slider-dot {
        width: 18px;
    }
}


/* TWO-COL-SECTION */

.left-bg {
  background-color: #00a89d;
}

.right-bg {
  background-color: #ff6b6b;
}

.content-inner {
  padding: 30px; /* aap yaha value adjust kar sakte ho */
}


/* OFFER-SECTION */

/* section background */
.offer-bg {
  background: #212f2e;
}

/* card image */
.offer-img {
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* hover zoom */
.offer-card:hover .offer-img {
  transform: scale(1.05);
}

/* overlay EXACT like original */
.offer-overlay {
  position: absolute;
  bottom: 0;
  left: 45px;              /* IMPORTANT */
  width: calc(100% - 45px);
  height: 175px;           /* IMPORTANT */
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
}

/* RESPONSIVE HEIGHTS */
@media (max-width: 992px) {
  .offer-img {
    height: 420px;
  }

  .offer-overlay {
    left: 25px;
    width: calc(100% - 25px);
    height: 160px;
  }
}

@media (max-width: 768px) {
  .offer-img {
    height: 525px;
  }

  .offer-overlay {
    left: 0;
    width: 100%;
    height: auto;
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .offer-img {
    height: auto;
  }
}

/* LEARN-SECTION */

.object-fit-cover {
  object-fit: cover;
}

.content-block {
  margin-top: 80px; 
  margin-bottom: 70px; 
}

.content-block h2 {
  font-size: 42px;       
  font-weight: 800;    
  line-height: 1.2;
}

.content-block p {
  font-size: 18px;      
  font-weight: 500;      
  line-height: 1.7;
  color: #202020!important;      
}

.py-learn-btn {
    color: black;
    border-style: solid;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 22px;
    padding: 17px 53px 19px 51px;
}

.py-learn-btn:hover {
  background-color: #000;
  color: #fff;
}

.small-img {
  width: 100%;
}

.small-images .ratio {
  max-width: 100%;
  margin-top: 0;
}

/* LEFT BIG IMAGE HEIGHT CONTROL: 992px to 1400px */
@media (min-width: 992px) and (max-width: 1399px) {

  /* Target ONLY the left image wrapper */
  .col-lg-6 > .ratio-1x1 {
    height: 520px;      /* adjust as needed */
    aspect-ratio: auto; /* disable 1:1 forcing */
  }

  .col-lg-6 > .ratio-1x1 img {
    width: 100%;
    height: 114%;
    object-fit: cover;
  }

}



/* TESTIMONIAL-SECTION */

.testimonial-section {
    background: #05A39A;
    padding: 100px 0;
    color: #fff;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.quote-icon {
    font-size: 70px;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0.9;
}

.testimonial-text {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.testimonial-name {
    font-size: 22px;
    font-weight: 700;
    margin-top: 10px;
}

.custom-prev, .custom-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;                 
    cursor: pointer;            
}

.custom-prev { left: -60px; }
.custom-next { right: -60px; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1); 
    width: 30px;
    height: 30px;
}

.custom-indicators {
    bottom: -40px !important;      
    position: absolute;
}

.custom-indicators button {
    width: 14px;
    height: 14px;
    margin: 10px 6px;
    background: transparent;        
    border: 2px solid #fff;         
    border-radius: 50%;
    opacity: 0.7;
}

.custom-indicators .active {
    background: #fff;              
    opacity: 1;
}

.custom-indicators .active {
    opacity: 1;
}


/* Tablets (≤ 992px) */
@media (max-width: 992px) {

    .section-title {
        font-size: 34px;
    }

    .testimonial-text {
        font-size: 18px;
        max-width: 700px;
    }

    .custom-prev { left: -20px; }
    .custom-next { right: -20px; }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {

    .testimonial-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .quote-icon {
        font-size: 55px;
    }

    .testimonial-text {
        font-size: 17px;
        max-width: 100%;
        padding: 0 15px;
    }

    .testimonial-name {
        font-size: 20px;
    }

    /* Bring arrows inside so they don’t go out of screen */
    .custom-prev, .custom-next {
        width: 45px;
        height: 45px;
    }

    .custom-prev { 
        left: 10px; 
    }

    .custom-next { 
        right: 10px; 
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 22px;
        height: 22px;
    }
}

/* Extra Small Mobile (≤ 480px) */
@media (max-width: 480px) {

    .section-title {
        font-size: 26px;
    }

    .quote-icon {
        font-size: 45px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .custom-prev, .custom-next {
        width: 38px;
        height: 38px;
        top: 55%;
    }

    .custom-prev { left: 5px; }
    .custom-next { right: 5px; }

    .custom-indicators button {
        width: 10px;
        height: 10px;
    }
}


/* COURSES-SECTION */

.course-section {
  position: relative;
}

.course-bg {
  position: absolute;
  inset: 0 0 50% 0;
  background: #ff5a5a;
  z-index: -1;
}

.course-card {
  position: relative;
  overflow: hidden;
}

.course-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.course-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}

/* REAL ALIGNMENT CONTROL */
.course-content {
  position: absolute;
  left: 20px;        /* LEFT */
  top: 50%;          /* VERTICAL CENTER */
  transform: translateY(-50%);
  text-align: left;
}

.course-content h5 {
  font-weight: 700;
  margin-bottom: 40px;
}

.course-content .price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.course-content small {
  opacity: 0.9;
}


/* Button */
.course-btn {
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
  font-weight: 700;
  font-size: 22px;
  padding: 21px 45px;
  border-radius: 5px;
  transition: 0.3s;
}

.course-btn:hover {
  background: #000;
  color: #fff;
}
/* LANG-SECTION */


.cards-center {
  text-align: center;
}

.cards-center > [class*="col-"] {
  float: none;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}


.content-wrap {
  max-width: 480px;
}

.arrow-line-bar {
  width: 100%;
  height: 3px;
  background: #00A499;
}



/* COMPANY-TRAINING-SECTION */

.company-training-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.top-wrapper {
    position: relative;
    width: 100%;
    height: 420px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.training-img {
    width: 600px;
    height: auto;
    z-index: 2;
}

.red-block-left {
    position: absolute;
    left: 28%;
    width: 140px;
    height: 220px;
    background: #FF6E6E;
    z-index: 1;
}

.red-block-right {
    position: absolute;
    right: 25%;
    width: 250px;
    height: 140px;
    background: #FF6E6E;
    bottom: -40px;
    right: 685px;
    z-index: 1;
}

.bottom-bg {
    background: #26302F;
    height: 350px;
    width: 100%;
    margin-top: -40px; 
    z-index: -1;
}

.floating-card {
    position: absolute;
    left: 38%;
    top: 40%;
    transform: translateX(-50%);
    background: #fff;
    padding: 40px;
    width: 480px;
    z-index: 3;
    border-radius: 2px;
}

.floating-card h3 {
    font-size: 26px;
    font-weight: 700;
}

.floating-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-top: 15px;
}

.learn-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    border: 1px solid black;
    color: black;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .training-img {
        width: 500px;
    }

        .floating-card {
        width: 380px;   /* reduced */
        left: 50%;
        top: 42%;
    }

    .red-block-left {
        left: 22%;
    }

    .red-block-right {
        right: 20%;
    }
}


/* ---------- Tablets (max-width: 992px) ---------- */
@media (max-width: 992px) {
    .top-wrapper {
        height: 350px;
    }

    .training-img {
        width: 420px;
    }

    .floating-card {
        width: 330px;   /* reduced */
        left: 50%;
        top: 45%;
        padding: 28px;
    }

    .red-block-left {
        left: 15%;
        width: 120px;
        height: 180px;
    }

    .red-block-right {
        right: 15%;
        width: 180px;
        height: 120px;
        bottom: -20px;
    }
}


/* ---------- Mobile (max-width: 768px) ---------- */
@media (max-width: 768px) {

    .top-wrapper {
        height: 340px;   /* slightly higher so image + card fit */
        position: relative;
    }

    .training-img {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        display: block;
    }

    .floating-card {
        width: 85%;
        max-width: 320px;
        left: 50%;
        top: auto;               /* remove fixed top % */
        bottom: 20px;            /* place safely above bottom */
        transform: translateX(-50%);
        padding: 22px;
        text-align: center;
        position: absolute;

        /* PREVENT OVERLAP */
        z-index: 5;
        background: #fff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .floating-card h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .floating-card p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    /* FIX BUTTON ISSUE */
    .learn-btn {
        padding: 10px 22px;
        font-size: 14px;
        width: auto;
        display: inline-block;
        margin: 0 auto;
    }

    /* hide red blocks */
    .red-block-left,
    .red-block-right {
        display: none;
    }
}

/* ---------- Small Mobile (max-width: 576px) ---------- */
@media (max-width: 576px) {
    .top-wrapper {
        height: 260px;
    }

    .training-img {
        width: 100%;
        max-width: 300px;
    }

    .floating-card {
        width: 80%;
        max-width: 290px;
        /* REMOVE top: 60%; causing overlap */
        bottom: 20px;      /* keep consistent position */
        padding: 18px;
    }

    .floating-card h3 {
        font-size: 20px;
    }
}


/* TEAM-SECTION */

.team-section {
    background: #26302F;
    padding: 80px 0;
    color: #fff;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
}

.team-wrapper {
    position: relative;
    padding: 0 60px;
}

.team-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.team-slider::-webkit-scrollbar {
    display: none;
}

.team-card {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
    background: #fff;
    color: #000;
    padding: 40px 20px;
    border-radius: 6px;
    text-align: center;
    scroll-snap-align: center;
}

.team-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-card h4 {
    font-size: 20px;
    font-weight: 700;
}

.team-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

.social-icons i {
    margin: 0 8px;
    font-size: 18px;
    cursor: pointer;
}

/* arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FF8F8F;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.left-arrow { left: -22px; }
.right-arrow { right: -22px; }

.slider-arrow i {
    color: #fff;
    font-size: 20px;
}

/* -------- Tablet -------- */
@media (max-width: 992px) {
    .team-card {
        flex: 0 0 48%;
        max-width: 48%;
    }
}

/* -------- Mobile -------- */
@media (max-width: 768px) {
    .team-wrapper {
        padding: 0 50px;
    }

    .team-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-title {
        font-size: 30px;
    }
}

/* ===== FORCE FIX : SMALL MOBILE ===== */
@media (max-width: 400px) {

    /* arrows ko hide hone se roko */
    .team-wrapper {
        overflow: visible !important;
        padding: 0 45px;   /* arrows ke liye space */
    }

    .team-slider {
        padding: 0;
        gap: 15px;
    }

    /* ✅ EXACT 1 CARD */
    .team-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* arrows always visible */
    .slider-arrow {
        display: flex !important;
        width: 36px;
        height: 36px;
        z-index: 99;
    }

    .left-arrow {
        left: 5px;
    }

    .right-arrow {
        right: 5px;
    }
}
/* ===== MOBILE FIX (≤768px) ===== */
@media (max-width: 768px) {


    /* arrows ka reference box */
    .team-wrapper {
        position: relative;
        overflow: visible;
    }

    /* arrows ko slider ke upar lao */
    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 999;              /* 🔥 MOST IMPORTANT */
        display: flex !important;
        width: 40px;
        height: 40px;
        pointer-events: auto;
    }

    /* left arrow – card se bahar */
    .left-arrow {
        left: -20px;   /* negative so overlap nahi kare */
    }

    /* right arrow – visible force */
    .arrow-right {
        right: -20px;
    }



    /* section ko breathing space */
    .team-section {
        padding: 60px 0;
    }

    /* arrows ke liye space */
    .team-wrapper {
        padding: 0 55px;
        overflow: visible;
    }

    /* slider clean */
    .team-slider {
        gap: 20px;
        padding: 0;
    }

    /* ✅ FORCE ONLY 1 CARD */
    .team-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    /* arrows always visible */
    .slider-arrow {
        display: flex !important;
        width: 38px;
        height: 38px;
        z-index: 10;
    }

    .left-arrow {
        left: 10px;
    }

    .right-arrow {
        right: 10px;
    }
}


/* CONTACT-SECTION */

.bg-shape {
    position: absolute;
    z-index: 0;
}

.left-shape {
    background-color: #00A893;
    width: 200px;
    height: 350px;
    top: 100px;
    left: 87;
}

.right-shape {
    background-color: #FF5F61;
    width: 260px;
    height: 380px;
    top: 250px;
    right: 100px;
}

.contact-card {
    position: relative;
    z-index: 10;
    background: white;
    border-radius: 5px;
    max-width: 900px;   
    height: 615px;
    margin: 0 auto;
}

.contact-section input:focus,
.contact-section textarea:focus {
    box-shadow: none !important;
    border-bottom: 2px solid #ff5f61 !important;
}

/* -------------------  Responsive Fixes  ------------------- */

/* Large Tablets (max-width: 992px) */
@media (max-width: 992px) {

    .contact-card {
        height: auto;            /* allow height to grow naturally */
        padding: 40px 30px;
    }

    .left-shape {
        width: 160px;
        height: 260px;
        top: 80px;
        left: 10px;
    }

    .right-shape {
        width: 200px;
        height: 300px;
        top: 220px;
        right: 20px;
    }
}


/* Tablets (max-width: 768px) */
@media (max-width: 768px) {

    .contact-card {
        padding: 35px 25px;
    }

    .left-shape {
        width: 120px;
        height: 220px;
        top: 60px;
        left: 0;
    }

    .right-shape {
        width: 150px;
        height: 230px;
        top: 180px;
        right: 0;
    }

    .contact-card h2 {
        font-size: 26px;
    }

    .contact-card p {
        font-size: 14px;
    }
}


/* Mobile (max-width: 576px) */
@media (max-width: 576px) {

    .contact-card {
        padding: 30px 20px;
        max-width: 100%;
    }

    .left-shape,
    .right-shape {
        display: none;   /* shapes removed because they overlap badly on mobile */
    }

    .contact-card h2 {
        font-size: 22px;
    }

    .contact-card p {
        font-size: 13px;
    }
}


/* Small Mobile (max-width: 400px) */
@media (max-width: 400px) {

    .contact-card {
        padding: 25px 15px;
    }

    .contact-card h2 {
        font-size: 20px;
    }
}


/* FOOTER-SECTION */

.footer-area {
    border-top: 2px solid #ffffff; 
}

.newsletter-input {
    background: transparent;
    border-bottom: 2px solid #fff !important;
}
.newsletter-input::placeholder {
    color: #ccc !important;
}
.newsletter-input:focus {
    box-shadow: none !important;
    border-bottom: 2px solid #ff5f61 !important;
}

.footer-links li {
    color: #d7d7d7;
    margin-bottom: 10px;
    cursor: pointer;
    width: fit-content;
}

.footer-links li:hover {
    color: #fff;
}

.footer-links .active {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #fff;
}

.footer-social i {
    font-size: 20px;
    cursor: pointer;
}

.footer-social i:hover {
    color: #ff5f61;
}

/* ---------------- Footer Responsive ---------------- */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {

    /* Newsletter row stacks better */
    .newsletter-input {
        font-size: 15px;
    }

    .footer-area h2 {
        font-size: 28px;
    }

    .footer-links li {
        font-size: 15px;
    }
}


/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {

    /* Stack newsletter input + button vertically */
    .footer-area .row.align-items-center > .col-md-6.d-flex {
        flex-direction: column;
        align-items: start !important;
        gap: 15px;
    }

    .newsletter-input {
        width: 100%;
    }

    .footer-area button {
        width: 100%;
        margin-left: 0 !important;
    }

    .footer-area h2 {
        font-size: 24px;
    }
}


/* Mobile Medium (max-width: 576px) */
@media (max-width: 576px) {

    /* Center footer content */
    .footer-area {
        text-align: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .footer-links li {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-area img {
        margin: 0 auto 20px;
        display: block;
    }

    .footer-area h4 {
        font-size: 20px;
    }
}


/* Small Mobile (max-width: 400px) */
@media (max-width: 400px) {

    .footer-area h2 {
        font-size: 20px;
    }

    .footer-area h4 {
        font-size: 18px;
    }

    .footer-links li {
        font-size: 14px;
    }

    .newsletter-input {
        font-size: 14px;
    }
}
