/* ===========================
   GLOBAL STYLES
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: 'Noto Sans Telugu', sans-serif;
    background:#fdfdf8;
    color:#222;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ===========================
   COLORS
=========================== */

:root{
    --green:#1f6f43;
    --light-green:#2e8b57;
    --gold:#d4af37;
    --gold-dark:#b8860b;
    --white:#ffffff;
    --black:#111;
    --shadow:0 8px 30px rgba(0,0,0,0.12);
}

/* ===========================
   HEADER
=========================== */

.header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index:999;
    box-shadow:0 2px 20px rgba(0,0,0,0.08);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo{
    width:200px;
    height:auto;
}

.brand-text h2{
    color:var(--green);
    font-size:28px;
    font-weight:700;
}

.brand-text p{
    color:var(--gold-dark);
    font-size:18px;
    font-weight:600;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:var(--green);
    font-weight:600;
    transition:0.3s;
}

.nav-links a:hover{
    color:var(--gold);
}

.register-btn{
    background:linear-gradient(
    135deg,
    var(--gold),
    #ffd700
    );
    color:#fff !important;
    padding:12px 24px;
    border-radius:50px;
    transition:0.3s;
}

.register-btn:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow);
}

.menu-toggle{
    display:none;
    font-size:28px;
    color:var(--green);
    cursor:pointer;
}

/* ===========================
   HERO SLIDER
=========================== */

.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1s ease-in-out;
}

.slide.active{
    opacity:1;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:
    linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:15px;
    animation:fadeUp 1s ease;
}

.hero-content h3{
    font-size:32px;
    color:#ffe08a;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    max-width:750px;
    line-height:1.8;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:20px;
}

.btn{
    text-decoration:none;
    padding:16px 36px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    transition:0.4s;
}

.btn.register{
    background:var(--gold);
    color:#fff;
}

.btn.search{
    background:var(--green);
    color:#fff;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

/* ===========================
   SLIDER CONTROLS
=========================== */

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:rgba(255,255,255,0.2);
    color:#fff;
    font-size:28px;
    padding:16px;
    cursor:pointer;
    z-index:20;
    border-radius:50%;
    transition:0.3s;
}

.prev:hover,
.next:hover{
    background:var(--gold);
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.dots{
    position:absolute;
    bottom:40px;
    width:100%;
    text-align:center;
    z-index:10;
}

.dot{
    width:14px;
    height:14px;
    background:#fff;
    border-radius:50%;
    display:inline-block;
    margin:0 8px;
    cursor:pointer;
    transition:0.3s;
}

.dot.active{
    background:var(--gold);
}

/* ===========================
   FEATURES
=========================== */

.features{
    padding:110px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:var(--green);
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.feature-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.feature-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:0.4s;
}

.feature-card:hover{
    transform:translateY(-12px);
}

.icon{
    width:90px;
    height:90px;
    background:
    linear-gradient(
    135deg,
    var(--green),
    var(--gold)
    );

    color:#fff;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:25px;
}

.feature-card h3{
    color:var(--green);
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
    line-height:1.8;
}

/* ===========================
   FOOTER
=========================== */

.footer{
    background:var(--green);
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

.footer-logo img{
    width:90px;
    margin-bottom:15px;
}

.footer-logo h3{
    margin-bottom:20px;
}

.social-icons{
    margin:25px 0;
}

.social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    color:#fff;
    margin:0 10px;
    text-decoration:none;
    transition:0.3s;
}

.social-icons a:hover{
    background:var(--gold);
    transform:translateY(-5px);
}

.copyright{
    margin-top:20px;
    font-size:15px;
}

/* ===========================
   ANIMATIONS
=========================== */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.hero-content h1{
    font-size:42px;
}

.hero-content h3{
    font-size:26px;
}

.navbar{
    position:absolute;
    top:90px;
    right:-100%;
    width:280px;
    background:#fff;
    transition:0.4s;
    box-shadow:var(--shadow);
    border-radius:20px;
}

.navbar.active{
    right:20px;
}

.nav-links{
    flex-direction:column;
    padding:30px;
}

.menu-toggle{
    display:block;
}

}

@media(max-width:768px){

.logo{
    width:58px;
}

.brand-text h2{
    font-size:22px;
}

.brand-text p{
    font-size:15px;
}

.hero-content h1{
    font-size:34px;
}

.hero-content h3{
    font-size:22px;
}

.hero-content p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.section-title h2{
    font-size:32px;
}

}