/*
Theme Name: Trading Theme Child
Template: trading-theme
Description: Child theme for Trading Theme (generated)
Version: 1.0
Author: Generated
Text Domain: trading-theme-child
*/
/* ============================================
   DEFAULT DESKTOP LAYOUT
   ============================================ */
.footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
}

/* Footer Columns */
.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    max-width: 330px;
}

/* Remove fixed widths */
.footer-left {
    width: auto !important;
    min-width: auto !important;
}

/* =======================
   LEFT MENU
   ======================= */
.footer-left ul {
    padding: 0;
    margin: 0;
}

.footer-left li {
    list-style: none;
    margin: 5px 0;
}

.footer-left li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

/* =======================
   CENTER CONTACT BOXES
   ======================= */
.footer-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* =======================
   RIGHT ADDRESS BLOCK
   ======================= */
.footer-right {
    text-align: left;
}

.footer-right h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
}

.footer-right p {
    margin: 6px 0 !important;
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    text-align: left !important;
}


/* ============================================
   TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .footer-container {
        justify-content: space-between;
        padding: 0 20px;
        gap: 25px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 33.33%;
    }

    .contact-box {
        width: 90%;
    }

    .contact-boxes {
        align-items: flex-start !important;
    }
}


/* ============================================
   MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        text-align: left !important;
        align-items: flex-start !important;
    }

    .footer-right p {
        font-size: 14px;
        line-height: 1.4;
        margin: 4px 0 !important;
    }

    .footer-right h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .contact-box {
        width: 100% !important;
        padding: 12px 16px;
    }
}


/* ============================================
   SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .footer-right {
        padding: 0 8px;
    }

    .footer-right p {
        font-size: 13px;
        margin: 3px 0 !important;
    }
}

/*Footer end */
@media (max-width: 767px) {
     span.lets-wi {
        font-size: 28px !important;
    }
}
@media (max-width: 1024px) {
    span.lets-wi {
        font-size: 28px !important;
    }
}


h2.footer-main-heading {
    text-align: center;
    width: 100%;
}
span.lets-gree {
    text-transform: uppercase;
    background: linear-gradient(180deg, #FFFFFF 0%, #5DEE00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 45px !important;
    line-height: 1.40;
    font-weight: 600;
    font-family: 'Oscan Expanded';
}

.footer-main-heading span.lets-wi {
    text-align: center;
    width: 100%;
    background: #9cf562;
    text-transform: uppercase;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 45px !important;
    line-height: 1.40;
    font-weight: 600;
    font-family: 'Oscan Expanded';
}
/* MOBILE DEVICES (up to 767px) */
@media (max-width: 767px) {
    span.lets-gree {
        font-size: 20px;           /* smaller font for mobile */
        line-height: 1.2;
        font-weight: 600;
        text-align: center;
        background: linear-gradient(180deg, #FFFFFF 0%, #5DEE00 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .footer-main-heading .lets-wi {
        font-size: 24px;
        text-align: center;
        color: #111111;            /* fallback color */
        background: linear-gradient(180deg, #FFFFFF 0%, #fff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/* TABLET DEVICES (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    span.lets-gree {
        font-size: 25px;           /* slightly larger for tablets */
        line-height: 1.3;
        font-weight: 600;
        text-align: center;
        background: linear-gradient(180deg, #FFFFFF 0%, #5DEE00 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .footer-main-heading .lets-wi {
        font-size: 30px;           /* medium heading for tablets */
        text-align: center;
        color: #111111;
        background: linear-gradient(180deg, #FFFFFF 0%, #fff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

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

    /* Menu container */
    #primary-menu {
        display: flex;
        flex-direction: column;
        gap: 10px; /* Space between menu items */
        padding: 20px;
        width: 90%;
        margin: 0 auto;
    }

    /* Menu links */
    #primary-menu .nav-item .nav-link {
        display: block;
        padding: 10px 20px;
        border: 2px solid #39ff14; /* Neon green border */
        border-radius: 50px; /* Rounded pill shape */
        color: #39ff14;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    /* Hover effect */
    #primary-menu .nav-item .nav-link:hover {
        background-color: #39ff14;
        color: #000; /* Change text color on hover */
    }

    /* Optional: hide scrollbar */
    #primary-menu::-webkit-scrollbar {
        display: none;
    }

    /* Ensure smooth scrolling */
    html {
        scroll-behavior: smooth;
    }
}


.wpcf7-response-output {
    padding: 0px !important;
    margin: 0px !important;
    border: none !important;
}
.Mentor-tabs .mennotname h3 {
    font-size: 48px;
    color: linear-gradient(180deg, #FFF771 0%, #F4B52F 51.44%, #FFF771 100%);
    font-weight: bold;
    text-transform: capitalize;
    background: linear-gradient(180deg, #FFF771 0%, #F4B52F 51.44%, #FFF771 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#primary-menu .nav-link {
    display: inline-block;       /* Makes padding work nicely */
    padding: 10px 20px;          /* Adjust for size */
    border: 2px solid #00FF00;   /* Green border like screenshot */
    border-radius: 30px;         /* Fully rounded */
    color: #00FF00;              /* Text color */
    text-decoration: none;       /* Remove underline */
    transition: all 0.3s ease;  /* Smooth hover effect */
}

.site-header-main ul li {
    padding-right: 10px;
}
/* 1024px Screen (Laptop/Tablet Landscape) */


/* MOBILE DEVICES ONLY */
@media (max-width: 768px) {

    /* a.nav-link.cmn-btn.bg-btn { */
        /* background: none !important; */
        /* height: 25px; */
        /* border-radius: 45px; */
    /* } */

    /* a.nav-link.cmn-btn.bg-btn.active, */
    /* a.nav-link.cmn-btn.bg-btn:active, */
    /* .site-header-main .navbar-nav li a.nav-link:hover { */
        /* transition: 0.3s; */
        /* background: none !important; */
        /* color: #54FC4A !important; */
        /* box-shadow: 4px 4px 8px 4px #5ef84b40 inset, */
                    /* -4px -4px 8px 4px #5ef84b40 inset; */
        /* border-radius: 45px; */
        /* height: 25px; */
    /* } */
}

a.nav-link.cmn-btn.bg-btn.active {
    transition: 0.3s;
    color: #54FC4A !important;
    background: none;
    */: ;
    cursor: pointer;
    background: none;
    /* color: white; */
    box-shadow: 4px 4px 8px 4px #5ef84b40 inset, -4px -4px 8px 4px #5ef84b40 inset;
    cursor: pointer;
    border-radius: 45px;
    height: 25px;
}
a.nav-link.cmn-btn.bg-btn:active {
    transition: 0.3s;
    color: #54FC4A !important;
    background: none;
    */: ;
    cursor: pointer;
    background: none;
    color: white;
    box-shadow: 4px 4px 8px 4px #5ef84b40 inset, -4px -4px 8px 4px #5ef84b40 inset;
    cursor: pointer;
    border-radius: 45px;
    height: 25px;
}
a.nav-link.cmn-btn.bg-btn {
    background: none;
}
/* .site-header-main .navbar-nav li a.nav-link:hover { */
    /* transition: 0.3s; */
    /* color: #54FC4A !important; */
    /* background: none; */
    /* */: ; */
    /* cursor: pointer; */
    /* background: none; */
    /* color: white; */
    /* box-shadow: 4px 4px 8px 4px #5ef84b40 inset, -4px -4px 8px 4px #5ef84b40 inset; */
    /* cursor: pointer; */
    /* border-radius: 45px; */
	/* height: 25px; */
/* } */
/* 1) hide any backdrop element */
body > .modal-backdrop,
.modal-backdrop,
.modal-backdrop.fade,
.modal-backdrop.show,
.modal-backdrop.fade.show {
  background: transparent !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* 2) ensure this modal itself has no dimming */
#enquireModal,
#enquireModal.modal,
#enquireModal.modal.show,
#enquireModal.modal.fade.show {
  /* background: transparent !important; */
  box-shadow: none !important;
}

/* 3) prevent bootstrap from styling the body when modal open */
body.modal-open {
  background-color: transparent !important;
  overflow: auto !important;     /* optional: allow scroll */
}


@media (max-width: 768px) {

    /* Make footer a column layout */
    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Move MENU to top */
    .footer-left {
        order: 1 !important;
        width: 100% !important;
        text-align: center !important;
    }

    /* Contact section comes after menu */
    .footer-center {
        order: 2 !important;
        width: 100% !important;
    }

    /* Address section comes last */
    .footer-right {
        order: 3 !important;
        width: 100% !important;
        text-align: center !important;
    }

    /* Make menu items look clean on mobile */
    .footer-left li {
        list-style: none !important;
        margin: 10px 0 !important;
    }

    .footer-left li a {
        color: #ffffff !important;
        font-size: 18px !important;
        text-decoration: none !important;
    }
}

@media (max-width: 768px) {

    .footer-container {
        display: flex !important;
        flex-direction: column !important;
    }

    .footer-left {
        order: 1 !important; /* FIRST */
        width: 100% !important;
        text-align: center !important;
    }

    .footer-center {
        order: 2 !important; /* SECOND */
        width: 100% !important;
    }

    .footer-right {
        order: 3 !important; /* LAST */
        width: 100% !important;
    }

    .footer-left li {
        list-style: none !important;
        margin: 8px 0 !important;
    }

    .footer-left a {
        color: #fff !important;
        font-size: 18px !important;
        text-decoration: none !important;
    }

}

/* ============================
   MOBILE FOOTER FIX (ALL DEVICES)
   ============================ */
@media (max-width: 480px) {   
.contact-boxes{
	width: 100% !important;
    margin-top: 10px !important;
}
}
@media (max-width: 768px) {

    /* Whole footer section */
    .footer-section {
        padding: 20px 10px !important;
        text-align: center !important;
    }

    /* Heading fix */
    .footer-main-heading {
        font-size: 32px !important;
        line-height: 38px !important;
        text-align: center !important;
        display: block;
    }

    .footer-main-heading img {
        width: 50px !important;
        height: auto !important;
        margin: 0 auto !important;
    }

    /* Footer main container */
    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 25px !important;
        width: 100% !important;
    }

    /* Left menu */
    .footer-left {
        width: 100% !important;
        text-align: center !important;
    }

    .footer-left li {
        margin: 8px 0 !important;
        list-style: none !important;
    }

    .footer-left li a {
        color: #ffffff !important;
        font-size: 16px !important;
        text-decoration: none !important;
    }
	.contact-box a{
		font-size: 16px !important;
	}

    /* Center contact boxes */
    .footer-center {
        width: 100% !important;
        display: flex;
        justify-content: center;
    }

    .contact-boxes {
        width: 100% !important;
		margin-top: 9px !important;
    }

    .contact-box {
        /* width: 100% !important; */
        padding: 12px 15px !important;
        /* border: 1px solid #00c23d !important; */
        /* border-radius: 12px !important; */
        /* margin-bottom: 12px !important; */
        /* display: flex !important; */
        /* align-items: center !important; */
        /* justify-content: flex-start !important; */
        gap: 10px !important;
    }

    .contact-box i {
		font-size: 12px !important;
		color: #00ff4c !important;
		text-align: center !important;
		padding-left: 11px;
    }

    /* Right side address */
    .footer-right {
        width: 100% !important;
        text-align: center !important;
        padding: 0 15px !important;
    }

    .footer-right h3 {
        margin-bottom: 10px !important;
        font-size: 20px !important;
    }

    .footer-right p {
        margin: 3px 0 !important;
        color: #ffffff !important;
        font-size: 16px !important;
    }

    /* Divider line */
    .divider {
        margin: 25px auto !important;
        width: 80% !important;
    }

    /* Follow us */
    .follow-title {
        text-align: center !important;
        font-size: 22px !important;
    }

    .social-icons {
        display: flex !important;
        justify-content: center !important;
        gap: 20px !important;
    }

    .social-icons i {
        font-size: 20px !important;
        color: #00ff4c !important;
    }
}

/* Remove unwanted Bootstrap padding on the modal */
#enquireModal.modal {
    padding: 0 !important;
}

/* Fix modal width */
#enquireModal .modal-dialog {
    max-width: 900px !important;
    width: 100%;
    margin: 0 auto;
}

/* Fix height + avoid white gap */
#enquireModal .modal-content {
    height: auto !important;
    min-height: 100% !important;
    border-radius: 10px;
}

/* Remove extra padding inside modal */
#enquireModal .modal-body {
    padding: 0 !important;
}

/* Ensure left image & right form equal width */
#enquireModal .row {
    margin: 0 !important;
    width: 100%;
}

#enquireModal .col-lg-6 {
    padding: 0 !important;
}

/* MOBILE - CLEAN 2 COLUMN LAYOUT */
@media (max-width: 768px) {

    .footer-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        align-items: start !important;
        width: 100%;
    }

    /* LEFT COLUMN = MENU */
    .footer-left {
        /* display: flex !important; */
        flex-direction: column !important;
        gap: 7px !important;
    }

    .footer-left li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* RIGHT COLUMN = CONTACT INFO */
    .contact-boxes {
        /* display: flex !important; */
        flex-direction: column !important;
        gap: 15px !important;
    }

    .contact-box {
        /* display: flex !important; */
        /* align-items: center !important; */
        /* gap: 8px !important; */
        width: 100% !important;
    }

    /* Address full width under both columns */
    .footer-right {
        grid-column: span 2;
        text-align: center;
        margin-top: 20px;
        width: 100%;
    }
}


.single-course-main::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* ADJUST opacity here */
    z-index: -1;
}
/* MOBILE: Left and Right side-by-side */
@media (max-width: 768px) {

    .footer-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
        padding: 10px 0;
    }

    /* Left menu */
    .footer-left {
        width: 48%;
        text-align: left;
    }

    .footer-left li a {
        font-size: 15px;
        display: block;
           margin-bottom: 0px;
    margin-top: 17px;
    }

    /* Center Section Full Width Below */
    .footer-center {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }

    /* Right Address */
    .footer-right {
        width: 48%;
        text-align: right;
    }

    .footer-right h3 {
        font-size: 16px;
    }

    .footer-right p {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* .footer-main-heading { */
    /* font-size: 48px; /* Desktop */ */
    /* line-height: 1.2; */
/* } */

/* Laptop */
@media (max-width: 1024px) {
    .footer-main-heading {
        font-size: 42px !important;
    }
	.footer-main-heading .lets-wi{
		font-size: 42px !important;
	}
}

/* Tablet */
@media (max-width: 768px) {
    .footer-main-heading {
        font-size: 34px !important;
    }
		.footer-main-heading .lets-wi{
		font-size: 24px !important;
	}
}

/* Mobile */
@media (max-width: 576px) {
    .footer-main-heading {
        font-size: 28px !important;
    }
		.footer-main-heading .lets-wi{
		font-size: 28px !important;
	}
}

/* Small Mobile */
@media (max-width: 400px) {
    .footer-main-heading {
        font-size: 24px;
    }
		.footer-main-heading .lets-wi{
		font-size: 24px !important;
	}
}
.footer-main-heading img {
    width: 44px;
    height: auto;
    margin-bottom: 26px;
}

/* Tablet */
@media (max-width: 768px) {
    .footer-main-heading img {
        width: 55px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .footer-main-heading img {
        width: 45px;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .footer-main-heading img {
        width: 40px;
    }
}

/* FIX MODAL SIZE */
#registrationModal .modal-dialog {
    max-width: 900px !important;
    width: 90%;
}

/* Ensure modal content is clean */
#registrationModal .modal-content {
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff !important;
}

/* LEFT IMAGE FULL HEIGHT */
#registrationModal .col-lg-6:first-child {
    padding: 0 !important;
}

#registrationModal .img-registarion {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT SIDE FORM — CENTER VERTICAL */
#registrationModal .col-lg-6:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* ⬅ Centers form vertically */
    padding: 40px !important;
}

/* REMOVE OVERLAY OR TRANSPARENT BG FROM FORM */
#registrationModal .col-lg-6:last-child,
#registrationModal .modal-body {
    background: #ffffff !important;
}

/* Fix Contact Form 7 default spacing */
#registrationModal label {
    font-weight: 500;
    margin-bottom: 0px;
}

/* #registrationModal input, */
/* #registrationModal select, */
/* #registrationModal textarea { */
    /* background: #fff !important; */
/* } */
.modal-backdrop.show {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.8)
    ) !important;
}

/* MOBILE FIX */
@media (max-width: 767px) {
    #registrationModal .modal-dialog {
        width: 94%;
        margin: 10px auto;
    }

    #registrationModal .img-registarion {
        height: 260px !important;
    }

    #registrationModal .col-lg-6:last-child {
        padding: 25px !important;
        justify-content: flex-start; /* no extra empty space */
    }
}

/* MODAL — Smaller like your screenshot */
#enquireModal .modal-dialog {
    max-width: 900px !important;   /* Desktop size similar to screenshot */
    width: 100%;                    /* Mobile/tablet responsive */
}

/* Modal content styling */
#enquireModal .modal-content {
    border-radius: 12px !important;
    overflow: hidden;
}

/* Reduce image height same as screenshot */
/* #enquireModal .img-registarion { */
    /* height: 100%; */
    /* object-fit: cover; */
    /* min-height: 557px; */
    /* padding: 0 0 0 0px; */
/* } */

/* Padding for right side form */
#enquireModal .p-5-md {
    padding: 40px !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #enquireModal .modal-dialog {
        max-width: 95% !important;
    }
    #enquireModal .p-5-md {
        padding: 20px !important;
    }
    /* #enquireModal .img-registarion { */
        /* height: 260px; */
        /* width: 100%; */
        /* object-fit: cover; */
    /* } */
}


/* Tablets */
@media (max-width: 1024px) {
    .custom-logo-link img {
        max-width: 210px;
    }
}

/* Mobile landscape & small tablets */
@media (max-width: 768px) {
    .custom-logo-link img {
        max-width: 180px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .custom-logo-link img {
        max-width: 150px;
		max-height: 150px;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .custom-logo-link img {
        max-width: 90px;
    }
}


a.cmn-btn.bg-btn {
    text-decoration: none;
}
.custom-close-btn {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border: 2px solid #54fc4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 9999;
}

.custom-close-btn:hover {
    background-color: #54fc4a;
    color: white;
    transform: scale(1.1);
}

/* Remove Bootstrap arrow */
.modal-backdrop.show {
    opacity: 0;
}
.accordion-button::after {
    display: none !important;
}

/* Plus by default */
.accordion-button.collapsed::before,
.accordion-button::before {
    content: "+";
    margin-left: auto;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Minus when active */
.accordion-button.active::before {
    content: "-";
}

/* Ensure accordion content is hidden initially */
.accordion-collapse {
    display: none;
    overflow: hidden;
}
.accordion-button:focus {
    z-index: 3;
    border-color: #54fc4a;
    /* outline: 0; */
    /* box-shadow: var(--bs-accordion-btn-focus-box-shadow); */
}
.bg-dark {
    /* background-color: #111111 !important; */
}
.faq-items .accordion-button::before {
    position: absolute;
    background-color: #54FC4A;
    content: "";
    width: 32px;
    top: 14px;
    height: 32px;
    right: 18px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}
.accordion-collapse {
    overflow: hidden;
    height: auto !important;
    display: none;
}

.cards-wrapper .features-list {
    padding: 0px 93px;
    width: fit-content;
    margin: 13px auto;
}
.review-slider .slick-slide {
    display: flex !important;
    justify-content: center;
}

.review-card {
    width: 350px;      /* ← Set your box width */
    height: 260px;     /* ← Set your box height */
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.review-slider .slick-slide {
    display: flex !important;
    height: auto !important;
}

.review-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.slick-track {
    display: flex !important;
}

.slick-slide {
    height: auto !important;
}

.review-card {
    overflow: hidden;
}

.review-card p {
    white-space: normal !important;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
}


.contact-box a {
    color: #f0fff0;
}
.review-slider { white-space: nowrap; }
.review-slider .slick-list { overflow: hidden; }
.review-slider .slick-slide { padding: 0 12px; box-sizing: border-box; }
.review-card { display: inline-block; width: auto; vertical-align: top; 
/* background:#1b1b1b;  */
padding:20px; border-radius:10px; }
.review-user .user-pick img { display:block; width:60px; height:60px; object-fit:cover; border-radius:50%; }

#enquireModal .form-control {
    /* padding: 15px 20px; */
    border: 2px solid #83F33C;
    border-radius: 50px;
    border-radius: 50px;
    /* font-size: 16px; */
    width: 100%;
}


.banner-site .banner-contant {
    text-align: center;
    color: #fff;
    padding-top: 54px;
}
.footer-left a:hover {
    color: #32ff32;
}
.footer-section {
    /* background: #000; */
    padding: 60px 40px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* .footer-main-heading { */
    /* text-align: center; */
    /* font-size: 32px; */
    /* margin-bottom: 40px; */
    /* font-weight: 100; */
/* } */

/* .footer-main-heading span { */
    /* color: #32ff32; */
/* } */

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1300px;
    margin: auto;
    gap: 0px;
    padding-top: 40px;
}
.contact-boxes {
    text-align: center;  /* Text ko horizontally center karega */
}

.contact-boxes span {
    display: inline-block;  /* Span ko inline-block banake center karega */
}

/* .footer-section h2 { */
    /* color: #111111; */
    /* font-size: 58px; */
    /* text-align: center; */
    /* background: linear-gradient(180deg, #FFFFFF 0%, #5DEE00 100%); */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
/* } */

/* .footer-left, .footer-center, .footer-right { */
    /* width: 33%; */
    /* min-width: 250px; */
    /* text-align: center; */
/* } */
.footer-left {
    width: 33%;
    min-width: 250px;
    text-align: center;
}
.footer-left a {
    margin: 20px 0px 1px 1px;
    font-size: 16px;
    color: #fff;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-container p:hover {
    color: #54FC4A !important;
    cursor: pointer;
}

.footer-container p {
    color: initial;
    transition: color 0.3s ease;
    color: #fff;
    font-size: 16px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .footer-left, .footer-center, .footer-right {
        width: 100%;
        min-width: auto;
        text-align: center;
    }

    .footer-left, .footer-center {
        /* padding-bottom: 20px; */
        border-bottom: 1px solid #333;
		margin-top: 24px;
    }
    
    .footer-right h3 {
        text-align: center;
    }
}
/* Center */
.footer-center {
    text-align: center;
}

.footer-icon {
    font-size: 80px;
    margin-bottom: 10px;
}

/* Contact Boxes */
.contact-boxes {
    margin-top: 25px;
}

.contact-box {
    /* background: #1a1a1a; */
    border: 1px solid #32ff32;
    padding: 13px 6px;
    border-radius: 10px;
    /* margin: 19px 62px; */
    /* display: flex; */
    /* align-items: center; */
    /* gap: 12px !important; */
    margin-bottom: 13px;
}

.contact-box i {
    color: #32ff32;
    font-size: 20px;
    padding-right: 15px;
}

/* Right side */
.footer-right h3 {
    margin-bottom: 10px;
    font-size: 16px;
    margin: 15px 0;
    font-size: 18px;
    color: #fff;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Divider */
.divider {
    height: 2px;
    background: #32ff32;
    border: none;
    margin: 40px 0 20px 0;
}

/* Follow Us */
.follow-title {
    text-align: center;
    color: #32ff32;
    font-size: 28px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border: 2px solid #32ff32;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: none;
    color: #32ff32;
}

/* ------------ RESPONSIVE ------------ */
@media (max-width: 992px) {
    .footer-container {
        justify-content: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        width: 45%;
    }

    .footer-icon {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
     {
        width: 100%;
		margin-bottom: 3px;
		margin-top: auto !important;
    }

    .contact-box {
        /* width: 100%; */
        max-width: 350px;
        margin: 0 0px 13px 2px;
    }
}

@media (max-width: 500px) {
    .footer-section {
        padding: 40px 20px;
    }

    .footer-main-heading {
        font-size: 24px !important;
    }

    .contact-box {
        width: 90%;
		margin-top: 0;
		margin-bottom: 10px;
    }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  transition: transform 0.3s ease;
}

/* Zoom all icons when hovering the entire container */
.social-icons:hover a {
  transform: scale(1.2);
}

.social-icons a {
  width: 45px;
  height: 45px;
  border: 2px solid #32ff32;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  transition: 0.3s ease; /* smooth animation */
}

/* Optional: background change on hover */
.social-icons:hover a {
  /* background: none; */
  /* color: #000; */
}

@media only screen and (max-width: 1024px) {
    .banner-content h1.gradient-text {
        font-size: 22px !important;

    }
}
