@import url('https://fonts.googleapis.com/css2?family=Notable&display=swap');   
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@200;300;400;500&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


    body {
    height: 100%;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    background-color: #8f9f69;
}



/* NAVBAR */
.name{
    display: inline-block;
    font-family: 'Notable';
    font-size: 1.9rem;
}


nav{
    height: 70px;
    width: 100%;
    background-color: #102007;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #ADE200;
    box-shadow: 0px 5px 5px black;
}


.menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.menu a{
    text-decoration: none;
    color: #ADE200;
    padding: 15px;
    font-family: "Onest", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 1.2rem;
    font-variation-settings: 100;
    transition: all 0.3s ease;
}
.menu a:hover{
    color: rgb(57, 85, 59);
    
 
}
.menu-icon {
  display: none;
  font-size: 25px;
  cursor: pointer;
}


#menu-toggle {
  display: none;
}








@media only screen and (max-width: 900px ){
    .menu-icon{
        display: block;
    }
    .menu{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        background-color: #111;
        text-align: center;
        padding: 10px 0;
    }


     /* When checkbox is checked → show menu */
  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;


}
}



/* BANNER */
.banner{
    display: flex;
    margin-top: 3px;
    flex-direction: row;
    
}
.left, .right {
    width: 50%;
   
    flex: 1; /* Equal distribution */
}


.left{
    font-size: 3rem;
    background-color: rgb(35, 33, 33);
    height: calc(100vh - 70px);
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Pixelify Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    color: #ADE200; 
}
.left span{
    color: #2b4f17;
}
.right{
    background-color: #ADE200;
    height: calc(100vh - 70px);
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  overflow: hidden;     /* hides video overflow */
  position: relative;
  background: #ADE200;  /* fallback color if video has transparency */
}


/* button */
.left button{
    background-color: rgb(35, 33, 33);
    color:#ADE200 ;
    padding: 20px;
    border: 2px solid #ADE200;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1.5rem;
    margin-top: 90px;
    transition: all 0.3s ease;
}
.left button:hover{
    background-color: #ADE200;
    color: #102007;
    box-shadow: 2px 3px 5px black;
    text-decoration: underline;
}



@media only screen and (max-width: 1000px ){
    .banner{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .left,.right{
        width: 100%;
    }
    
}
/* Mobile responsive fixes */
@media only screen and (max-width: 768px) {
    .banner {
        flex-direction: column;
        min-height: 100vh; /* Changed from height to min-height */
    }
    
    .left {
        width: 100%;
        min-height: 60vh; /* Changed from fixed height */
        height: auto; /* Allow content to determine height */
        font-size: 1.8rem; /* Reduced from 2.2rem */
        padding: 20px;
        text-align: center;
    }
    
    .left button {
        font-size: 1rem; /* Reduced button font size */
        padding: 15px 25px; /* Adjusted padding */
        margin-top: 30px; /* Reduced margin */
    }
    
    .right {
        width: 100%;
        min-height: 80vh; /* Changed from fixed height */
        height: auto; /* Allow content to determine height */
        padding: 20px; /* Reduced padding */
    }
    
    .right h1 {
        font-size: 3rem; /* Significantly reduced from 5.9rem */
        text-align: center;
        margin-bottom: 20px;
    }
   
    .right p {
        font-size: 1.2rem; /* Reduced from 1.8rem */
        margin-top: 20px;
        text-align: center;
        line-height: 1.5;
    }
    
    .buttons {
        margin-top: 30px;
        padding-left: 0; /* Remove left padding */
        justify-content: center;
    }
    
    .right button img {
        height: 35px; /* Reduced from 50px */
        width: 35px;
    }
}


/* Additional breakpoint for very small screens */
@media only screen and (max-width: 480px) {
    .left {
        font-size: 1.5rem;
        padding: 15px;
    }
    
    .left button {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .right h1 {
        font-size: 2.5rem;
    }
    
    .right p {
        font-size: 1rem;
    }
    
    .right button img {
        height: 30px;
        width: 30px;
    }
}


/* Fix for achievements section on mobile */
@media only screen and (max-width: 768px) {
    .achievements {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 10px;
    }
    
    .box {
        padding: 30px 20px;
        font-size: 1.2rem;
    }
}


/* Medium screens adjustment */
@media only screen and (max-width: 1000px) and (min-width: 769px) {
    .left {
        font-size: 2.5rem;
    }
    
    .right h1 {
        font-size: 4rem;
    }
    
    .right h2 {
        white-space: wrap!important;
        font-size: 4rem;
    }
    
    .right p {
        font-size: 1.4rem;
    }
}
@media only screen and (max-width: 768px) {
    .right h2 {
        font-size: 1.4rem!important;
        animation: none !important;
        overflow: hidden;
        border-right: .15em solid #102007;
        width: auto;
        max-width: 100%; /* Ensure it doesn't exceed container */
        white-space: wrap !important;
    }
    
   
}


/* right */


.right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
}


.right h1{
    font-size: 5.9rem;
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
   
    color:#102007;
 
}


.right h2 {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: .15em solid #ADE200;
  font-family:  monospace;
  font-size: 3rem;
  animation: typing 5s steps(39), blink-caret .75s step-end infinite;
  font-weight: 300;
  margin-bottom: 50px;
}
@keyframes typing {
  from { width: 0 }
  to { width: 15em }
}
@keyframes blink-caret {
  50% { border-color: transparent }
}


.right p{
    margin-top: 50px;
    font-size: 1.8rem;
    color: rgb(255, 255, 255);
    font-family: "Funnel Sans", sans-serif;
}
.right p span{
    color: #111;
}
#strike{
    color: #102007;
    cursor: pointer;
    text-decoration: underline;


}


.right button img {
    height: 50px;
    width: 50px;


}
.buttons{
    margin-top:60px ;
   display: flex;
   justify-content: center;
   align-items: center;
   transition: all 0.3s ease;
   padding-left: 40px;
}
.right button{


   background-color: transparent;
    padding: 8px;
   border: 3px solid black;
    cursor: pointer;
    border-radius: 50%;
    margin: 10px;
    overflow: hidden;
 
  
}
#linkedin  img{
    border-radius: 20px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(19%) saturate(2893%) hue-rotate(208deg) brightness(78%) contrast(95%);
    transition: all 0.3s ease;


}
#linkedin img:hover{
    filter: brightness(0) saturate(100%) invert(27%) sepia(100%) saturate(1490%) hue-rotate(194deg) brightness(89%) contrast(94%);


}


#insta img{
    transition: all 0.3s ease;
}
#insta img:hover{
    filter: brightness(0) saturate(100%) invert(12%) sepia(96%) saturate(6155%) hue-rotate(328deg) brightness(89%) contrast(99%);
}


#yt img{
    transition: all 0.3s ease;
}
#yt img:hover{
    
    filter: brightness(0) saturate(100%) invert(11%) sepia(81%) saturate(6377%) hue-rotate(5deg) brightness(92%) contrast(118%);
    
}
.buttons button:hover{
     background-color: #111;


}


/* achievements*/


.achievements{
   
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #102007;
  box-shadow: 2px 5px 10px black;
  border-top: 2px solid #2b4f17;
 
}


.box{
    color: aliceblue;
    box-shadow: 2px 5px 10px black;
    background-color: transparent;
    backdrop-filter: blur;
    border: 1px solid rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 0px;
    font-size: 1.6rem;


}
.box svg{
   filter: brightness(0) saturate(100%) invert(68%) sepia(34%) saturate(1553%) hue-rotate(29deg) brightness(110%) contrast(100%);
    padding: 20px 0px 0px 0px;
    height: 70px;
    width: 70px;
}
.box h4{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: #ADE200;
    font-weight: 300;
}


/* tutorials */
#tutorials{
    padding-top: 5%;
    text-align: center;
}
#tutorials h1{
    font-size: 79px;
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
}
#tutorials h1 span{
    color: #102007;
    font-weight: 600;
}
#tutorials p{
    padding-top: 1%;
    font-size: 34px;
    font-family: "Instrument Serif", serif;
    font-weight: 400;
}


@media only screen and (max-width: 1000px ){
     #tutorials p{
        font-size: large;
     }
}



/* adding cards */


.card-container{
    display: flex;
    gap: 80px;
   justify-content: center;
    padding: 30px;
   flex-wrap: wrap;
   margin-top: 20px;
   
}
.card{
    width: 500px;
   height: 650px;
    border-radius: 16px;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    flex-direction: row;
    
}



.card:hover{
    transform: rotateY(180deg);
   
}



.front{
    height: 100%;
    width: 100%;
    position: absolute;
    backface-visibility: hidden;
   background: #2B4F17;
   background: linear-gradient(180deg, rgba(43, 79, 23, 1) 0%, rgba(0, 0, 0, 1) 100%);
    border-radius: 16px;
    color: azure;
    padding: 20px;
    
}
.firstspan {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    
}
.lastspan{
    display: flex;
    margin-top: 60px;
    gap: 30px
}
#beginner{
     border: 2px solid black;
    padding: 8px;
    border-radius: 32px;
    background: #ADE200;
    color:#000000;



}
#Lectures{
     border: 2px solid black;
    padding: 8px;
    border-radius: 32px;
    background: #1e1e1e;
    color:#94a3b8;


   
}
.lastspan span{
    border: 2px solid black;
    padding: 8px;
    border-radius: 32px;
    background: #1e1e1e;
    color:#94a3b8;



}


.front img{
    height: 250px;
    width: 100%;
    border-radius: 16px;
    margin-bottom: 15px;
}
.front h3{
    margin: 20px 0px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 32px;
}
.front p{
    margin: 20px 0px;
    font-family: "Poppins", sans-serif !important;
    font-weight: 300;
    font-style: normal;
    color: #94a3b8;
    font-size: 20px !important;
}




.back{
    height: 100%;
    width: 100%;
    position: absolute;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    background: linear-gradient(45deg, rgb(12, 8, 19) 43%, rgb(35, 37, 95) 100%, rgb(195, 207, 214) 100%);
    border-radius: 16px;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    color: aliceblue;
}


.back h3{
    margin: 20px 0px;
   
    font-weight: 400;
    font-size: 32px;
    padding-top: 40px;
    font-family: "Instrument Serif", serif;
    font-weight: 300;
}
.points{
    margin-top: 40px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 400;
    
}
.points h4{
   
    padding-top: 40px;
}
.back button{
    position: absolute;
    right: 38%;
    bottom: 10%;
    font-size: 1.2rem;
    width: 150px;
    height: auto;
    padding: 10px;
    color: #ADE200;
    background: transparent ;
    border-radius: 16px;
    border: 2px solid #ADE200;
    cursor: pointer;
    transition: all 0.3s ease;
}
.back button:hover{
    background-color: #363737;
}
#tutorials{
    margin-bottom: 100px;
}
/* ======================= CONTACT US SECTION ======================= */

#contact {
    background: linear-gradient(135deg, #8f9f69 0%, #6b7c3d 30%, #4a5423 70%, #2d3317 100%);
    padding: 80px 0;
    position: relative;
    border-top: 3px solid #102007;
}

/* Camouflage pattern overlay for contact section */
#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(43, 79, 23, 0.3) 10%, transparent 15%),
        radial-gradient(circle at 40% 20%, rgba(34, 60, 18, 0.4) 8%, transparent 12%),
        radial-gradient(circle at 90% 40%, rgba(52, 91, 28, 0.3) 12%, transparent 18%),
        radial-gradient(circle at 60% 80%, rgba(28, 52, 15, 0.5) 9%, transparent 14%);
    pointer-events: none;
    z-index: 1;
}

.contact-container {
    display: flex;
    min-height: 80vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-form-section {
    flex: 1;
    max-width: 600px;
}

.header h1 {
    font-size: 79px;
    font-family: "Instrument Serif", serif;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #f1f5f9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #102007;
    font-weight: 600;
}

.header p {
    font-size: 24px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-family: "Instrument Serif", serif;
    font-weight: 400;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    width: 100%;
}

.form-group label {
    font-weight: 600;
    font-size: 1.1rem;
    color: #f1f5f9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-family: "Funnel Sans", sans-serif;
}

.required {
    color: #ff6b6b;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #94a3b8;
    z-index: 2;
    font-size: 1.1rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(43, 79, 23, 0.8);
    border: 2px solid rgba(173, 226, 0, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: "Funnel Sans", sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 15px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #ADE200;
    box-shadow: 0 0 0 3px rgba(173, 226, 0, 0.2), inset 2px 2px 5px rgba(0, 0, 0, 0.3);
    background: rgba(43, 79, 23, 0.9);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #94a3b8;
}

.input-wrapper select {
    cursor: pointer;
}

.input-wrapper select option {
    background: #2B4F17;
    color: white;
    padding: 10px;
}

.submit-btn {
    background: linear-gradient(135deg, #ADE200 0%, #8bc34a 50%, #689f38 100%);
    border: 2px solid #ADE200;
    padding: 18px 40px;
    border-radius: 12px;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: "Funnel Sans", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(173, 226, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(173, 226, 0, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #c4f929 0%, #9ccc65 50%, #7cb342 100%);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.contact-visual-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-content {
    position: relative;
    width: 400px;
    height: 400px;
}

.status-indicator {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(43, 79, 23, 0.9);
    border: 2px solid rgba(173, 226, 0, 0.5);
    padding: 12px 24px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #f1f5f9;
    font-family: "Funnel Sans", sans-serif;
}

.online-dot {
    width: 10px;
    height: 10px;
    background: #ADE200;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(173, 226, 0, 0.6);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
    }
}

.email-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.email-card {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #2B4F17 0%, #1a2f0e 100%);
    border: 3px solid rgba(173, 226, 0, 0.4);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 2px 4px rgba(173, 226, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.email-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(173, 226, 0, 0.1) 5%, transparent 10%),
        radial-gradient(circle at 70% 60%, rgba(139, 195, 74, 0.08) 8%, transparent 12%);
    pointer-events: none;
}

.email-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.email-dots {
    display: flex;
    gap: 8px;
}

.email-dots span {
    width: 10px;
    height: 10px;
    background: rgba(173, 226, 0, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(173, 226, 0, 0.3);
}

.email-body {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.at-symbol {
    font-size: 4rem;
    font-weight: 700;
    color: #ADE200;
    z-index: 2;
    position: relative;
    text-shadow: 0 0 20px rgba(173, 226, 0, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 8px;
}

.element-1 {
    width: 40px;
    height: 20px;
    background: rgba(173, 226, 0, 0.3);
    top: 20px;
    left: 20px;
    transform: rotate(-15deg);
    box-shadow: 0 0 15px rgba(173, 226, 0, 0.2);
}

.element-2 {
    width: 30px;
    height: 30px;
    background: rgba(139, 195, 74, 0.25);
    top: 30px;
    right: 30px;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(139, 195, 74, 0.2);
}

.element-3 {
    width: 25px;
    height: 25px;
    background: rgba(173, 226, 0, 0.2);
    bottom: 40px;
    left: 40px;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(173, 226, 0, 0.15);
}

.element-4 {
    width: 35px;
    height: 15px;
    background: rgba(139, 195, 74, 0.3);
    bottom: 20px;
    right: 20px;
    transform: rotate(25deg);
    box-shadow: 0 0 18px rgba(139, 195, 74, 0.2);
}

.response-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(173, 226, 0, 0.95);
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 35px rgba(173, 226, 0, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: "Funnel Sans", sans-serif;
}

/* ======================= RESPONSIVE DESIGN FOR CONTACT SECTION ======================= */

@media only screen and (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }
    
    .header h1 {
        font-size: 55px;
    }
    
    .header p {
        font-size: 20px;
    }
    
    .visual-content {
        width: 300px;
        height: 300px;
    }
    
    .email-card {
        width: 250px;
        height: 160px;
    }
}

@media only screen and (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .header h1 {
        font-size: 45px;
        text-align: center;
    }
    
    .header p {
        font-size: 18px;
        text-align: center;
    }
    
    .contact-container {
        padding: 20px 15px;
    }
    
    #contact {
        padding: 60px 0;
    }
}

@media only screen and (max-width: 480px) {
    .header h1 {
        font-size: 35px;
    }
    
    .header p {
        font-size: 16px;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 12px 12px 12px 40px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
/* ======================= FOOTER SECTION ======================= */

#footer {
    background: linear-gradient(135deg, #102007 0%, #1a2f0e 30%, #0d1505 70%, #050a02 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Camouflage pattern overlay for footer */
#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 30%, rgba(43, 79, 23, 0.4) 8%, transparent 12%),
        radial-gradient(circle at 65% 20%, rgba(34, 60, 18, 0.3) 10%, transparent 15%),
        radial-gradient(circle at 85% 70%, rgba(52, 91, 28, 0.4) 12%, transparent 18%),
        radial-gradient(circle at 30% 80%, rgba(28, 52, 15, 0.5) 9%, transparent 14%),
        radial-gradient(circle at 50% 50%, rgba(173, 226, 0, 0.1) 5%, transparent 10%);
    pointer-events: none;
    z-index: 1;
}

/* Gradient line at top */
.footer-gradient-line {
    height: 4px;
    background: linear-gradient(90deg, 
        #8b5cf6 0%, 
        #a855f7 20%, 
        #d946ef 40%, 
        #f97316 60%, 
        #eab308 80%, 
        #22c55e 100%
    );
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-section {
    color: #f1f5f9;
}

/* Brand Section */
.brand-section .footer-brand {
    font-size: 2.5rem;
    font-family: 'Notable', sans-serif;
    color: #ADE200;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "Funnel Sans", sans-serif;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(43, 79, 23, 0.8);
    border: 2px solid rgba(173, 226, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ADE200;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.social-icon:hover {
    background: #ADE200;
    color: #102007;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(173, 226, 0, 0.4);
    border-color: #ADE200;
}

/* Footer Sections */
.footer-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 25px;
    font-family: "Funnel Sans", sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    font-family: "Funnel Sans", sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ADE200;
    padding-left: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Stay Connected Section */
.stay-connected .connect-text {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: "Funnel Sans", sans-serif;
}

.newsletter {
    display: flex;
    gap: 10px;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(43, 79, 23, 0.6);
    border: 2px solid rgba(173, 226, 0, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    font-family: "Funnel Sans", sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-input:focus {
    outline: none;
    border-color: #ADE200;
    box-shadow: 0 0 0 3px rgba(173, 226, 0, 0.2);
    background: rgba(43, 79, 23, 0.8);
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-btn {
    padding: 12px 15px;
    background: linear-gradient(135deg, #ADE200 0%, #8bc34a 100%);
    border: none;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(173, 226, 0, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(173, 226, 0, 0.4);
    background: linear-gradient(135deg, #c4f929 0%, #9ccc65 100%);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(173, 226, 0, 0.2);
    padding: 25px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.copyright p {
    color: #94a3b8;
    font-size: 0.9rem;
    font-family: "Funnel Sans", sans-serif;
    margin: 0;
}

/* ======================= RESPONSIVE DESIGN FOR FOOTER ======================= */

@media only screen and (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 50px 20px 30px;
    }
    
    .brand-section .footer-brand {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 20px 25px;
        text-align: center;
    }
    
    .brand-section .footer-brand {
        font-size: 2rem;
    }
    
    .footer-description {
        font-size: 1rem;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .newsletter {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-input {
        width: 100%;
        max-width: 300px;
    }
    
    .newsletter-btn {
        width: 100%;
        max-width: 300px;
        padding: 15px;
    }
}

@media only screen and (max-width: 480px) {
    .brand-section .footer-brand {
        font-size: 1.8rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-description,
    .connect-text {
        font-size: 0.9rem;
    }
    
    .footer-container {
        padding: 30px 15px 20px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Smooth scroll behavior for anchor links */
html {
    scroll-behavior: smooth;
}
/* Always show vertical scrollbar */
html {
  overflow-y: scroll;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(43,79,23,0.2);
  border-left: 1px solid rgba(173,226,0,0.3);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ADE200 0%, #689f38 100%);
  border-radius: 6px;
  border: 3px solid rgba(43,79,23,0.4);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c4f929 0%, #7cb342 100%);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

