/* =========================================================
   SRI VENKATESWARA JUNIOR COLLEGE
   PROFESSIONAL MAIN STYLESHEET
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root{
    --primary:#17375e;
    --primary-dark:#102b55;
    --secondary:#c17814;
    --secondary-light:#f2b14b;

    --text:#26364d;
    --text-light:#5d6875;

    --white:#ffffff;
    --light:#f7f8fb;
    --border:#e1e5ea;

    --shadow:0 8px 25px rgba(0,0,0,.07);
    --transition:.3s ease;
}


/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--light);
    color:var(--text);
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    transition:var(--transition);
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar{
    background:var(--primary-dark);
    color:#ffffff;
    font-size:14px;
}

.top-container{
    width:90%;
    max-width:1400px;
    min-height:42px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.top-right span{
    display:flex;
    align-items:center;
    gap:6px;
}

.top-bar i{
    color:var(--secondary-light);
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header{
    width:100%;
    background:#ffffff;

    position:relative;
    z-index:100;

    box-shadow:
    0 3px 15px rgba(0,0,0,.07);
}

.header-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    min-height:112px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:40px;
}


/* =========================================================
   COLLEGE BRAND
========================================================= */

.college-brand{
    display:flex;
    align-items:center;

    gap:15px;

    min-width:350px;
}

.college-brand img{
    width:78px;
    height:78px;

    object-fit:contain;
}

.college-title h1{
    font-size:25px;
    line-height:1.2;

    color:var(--primary);

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:.4px;
}

.college-title p{
    margin-top:6px;

    color:#b66e0a;

    font-size:14px;
    font-weight:600;

    letter-spacing:1px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:28px;
    flex-wrap:nowrap;
    white-space:nowrap;
}

.main-nav a{
    color:#26364d;
    text-decoration:none;

    font-size:16px;
    font-weight:600;

    padding:10px 0;

    position:relative;

    transition:.3s;

    white-space:nowrap;
}

.main-nav a:hover,
.main-nav a.active{
    color:#17375e;
}

.main-nav a.active:after{
    content:"";

    position:absolute;
    bottom:0;
    left:0;

    width:100%;
    height:2px;

    background:#c77b14;
}



/* =========================================================
   HERO SECTION
========================================================= */

.hero-section{
    position:relative;

    width:100%;
    min-height:380px;

    overflow:hidden;

    display:flex;
    align-items:center;

    background:
    linear-gradient(
        90deg,
        #f5eee1,
        #fffaf0,
        #f8efe0
    );

    border-top:
    1px solid #e3e3e3;
}


/* =========================================================
   HERO BACKGROUND EFFECT
========================================================= */

.hero-section::before{
    content:"";

    position:absolute;
    inset:0;

    background:

    radial-gradient(
        circle at 75% 25%,
        rgba(244,177,61,.22),
        transparent 35%
    ),

    radial-gradient(
        circle at 15% 70%,
        rgba(23,55,94,.13),
        transparent 35%
    );

    pointer-events:none;

    z-index:0;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container{
    position:relative;
    z-index:2;

    width:100%;
    max-width:1320px;

    margin:auto;

    padding:20px 90px 40px;

    display:grid;

    grid-template-columns:
    1.15fr .85fr;

    align-items:center;

    gap:70px;
}


/* =========================================================
   HERO BOOK
========================================================= */

.hero-book{
    position:relative;

    width:100%;
    max-width:720px;

    height:330px;

    margin:auto;

    display:flex;

    filter:
    drop-shadow(
        0 18px 18px
        rgba(0,0,0,.25)
    );
}


/* =========================================================
   BOOK PAGE
========================================================= */

.book-page{
    position:relative;

    width:50%;
    height:100%;

    padding:38px 35px;

    overflow:hidden;

    text-align:center;

    background:

    linear-gradient(
        90deg,
        #eee5d6,
        #fffdf8,
        #f6eee2
    );
}


/* =========================================================
   PAPER TEXTURE
========================================================= */

.book-page::before{
    content:"";

    position:absolute;
    inset:0;

    background:

    repeating-linear-gradient(
        0deg,

        rgba(0,0,0,.02),

        rgba(0,0,0,.02) 1px,

        transparent 1px,

        transparent 5px
    );

    pointer-events:none;
}


/* =========================================================
   LEFT BOOK PAGE
========================================================= */

.book-left{
    border-radius:
    15px 0 0 15px;

    border-right:
    2px solid #a38e72;

    box-shadow:
    inset -8px 0 12px
    rgba(0,0,0,.12);
}


/* =========================================================
   RIGHT BOOK PAGE
========================================================= */

.book-right{
    border-radius:
    0 15px 15px 0;

    box-shadow:
    inset 8px 0 12px
    rgba(0,0,0,.10);
}


/* =========================================================
   BOOK CENTER / SPINE
========================================================= */

.book-center{
    position:absolute;

    left:50%;
    top:0;

    width:10px;
    height:100%;

    transform:
    translateX(-50%);

    background:

    linear-gradient(
        90deg,

        #5e4630,

        #c5ad8a,

        #ffffff,

        #9c7c59
    );

    z-index:10;

    box-shadow:
    0 0 8px rgba(0,0,0,.35);
}


/* =========================================================
   BOOK SMALL TITLE
========================================================= */

.book-small-title{
    position:relative;

    display:block;

    margin-bottom:20px;

    color:#b26b0c;

    font-size:13px;
    font-weight:700;

    letter-spacing:3px;
}


/* =========================================================
   BOOK HEADINGS
========================================================= */

.book-page h2{
    position:relative;

    margin:0;

    color:#203b61;

    font-size:30px;
    line-height:1.2;

    font-weight:800;

    letter-spacing:1px;
}

.book-page h3{
    position:relative;

    margin-top:12px;

    color:#263e60;

    font-size:18px;

    letter-spacing:1px;
}


/* =========================================================
   BOOK LINE
========================================================= */

.book-line{
    position:relative;

    width:85px;
    height:2px;

    margin:25px auto;

    background:var(--secondary);
}


/* =========================================================
   BOOK VALUES
========================================================= */

.book-values{
    position:relative;

    display:flex;
    flex-direction:column;

    gap:12px;

    color:#a9670f;

    font-size:18px;
    font-weight:700;
}

.book-values b{
    font-size:16px;
}


/* =========================================================
   BOOK BOTTOM TEXT
========================================================= */

.book-bottom{
    position:absolute;

    bottom:20px;
    left:0;

    width:100%;

    color:#56606b;

    font-size:10px;
    font-weight:700;

    letter-spacing:2px;
}


/* =========================================================
   BOOK LOGO
========================================================= */

.book-logo{
    position:relative;

    margin-bottom:15px;
}

.book-logo img{
    width:75px;
    height:75px;

    margin:auto;

    object-fit:contain;
}


/* =========================================================
   BOOK TAGLINE
========================================================= */

.book-tagline{
    position:relative;

    margin-top:30px;

    color:#9c6216;

    font-size:15px;
    font-weight:700;

    line-height:1.8;
}

.book-tagline span{
    margin:0 5px;
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.book-button{
    position:absolute;

    left:50%;
    bottom:18px;

    transform:
    translateX(-50%);

    width:78%;

    padding:13px 10px;

    background:var(--primary);

    color:#ffffff;

    text-decoration:none;

    font-size:12px;
    font-weight:700;

    letter-spacing:.5px;

    border-radius:4px;

    z-index:5;
}

.book-button:hover{
    background:var(--secondary);
}

.book-button span{
    margin-left:5px;

    color:var(--secondary-light);
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content{
    position:relative;

    z-index:3;

    padding:10px 0;
}


/* =========================================================
   WELCOME TITLE
========================================================= */

.welcome-title{
    display:flex;
    align-items:center;

    gap:10px;

    margin-bottom:20px;

    color:#b96d09;

    font-size:13px;
    font-weight:700;

    letter-spacing:2px;
}

.welcome-title span{
    display:block;

    width:45px;
    height:2px;

    background:#b96d09;
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-content h1{
    margin:0;

    color:#193a65;

    font-size:40px;
    line-height:1.15;

    font-weight:800;
}

.hero-content h1 strong{
    color:#c97800;
}


/* =========================================================
   HERO PARAGRAPH
========================================================= */

.hero-content p{
    margin:22px 0;

    color:#3d4a57;

    font-size:21px;

    line-height:1.0;
}


/* =========================================================
   ADMISSION BUTTON
========================================================= */

.admission-button{
    display:inline-flex;

    align-items:center;

    gap:15px;

    padding:15px 24px;

    background:

    linear-gradient(
        135deg,
        #18365d,
        #0e2b52
    );

    color:#ffffff;

    text-decoration:none;

    font-size:16px;
    font-weight:700;

    border-radius:5px;

    box-shadow:
    0 8px 15px
    rgba(16,45,80,.20);
}

.admission-button:hover{
    background:var(--secondary);

    transform:
    translateY(-2px);
}

.admission-button span{
    font-size:20px;
}


/* =========================================================
   HERO FEATURES
========================================================= */

.hero-features{
    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:30px;
}

.hero-features div{
    padding:9px 17px;

    background:
    rgba(255,255,255,.75);

    border:
    1px solid
    rgba(30,55,90,.12);

    border-radius:25px;

    color:#263d5c;

    font-size:13px;
    font-weight:600;

    box-shadow:
    0 4px 10px
    rgba(0,0,0,.04);
}


/* =========================================================
   HERO ARROWS
========================================================= */

.hero-arrow{
    position:absolute;

    z-index:20;

    top:50%;

    transform:
    translateY(-50%);

    width:52px;
    height:52px;

    border:none;

    border-radius:50%;

    background:
    rgba(16,43,85,.78);

    color:#ffffff;

    font-size:30px;

    cursor:pointer;

    display:flex;

    align-items:center;
    justify-content:center;
}

.hero-arrow:hover{
    background:var(--secondary);
}

.hero-prev{
    left:30px;
}

.hero-next{
    right:30px;
}


/* =========================================================
   HERO DOTS
========================================================= */

.hero-dots{
    position:absolute;

    z-index:20;

    bottom:14px;
    left:50%;

    transform:
    translateX(-50%);

    display:flex;

    gap:10px;
}

.hero-dots span{
    width:9px;
    height:9px;

    border-radius:50%;

    background:#c7c7c7;
}

.hero-dots .active{
    background:var(--primary);
}


/* =========================================================
   PRINCIPAL SECTION
========================================================= */

.principal-section{
    width:100%;

    padding:70px 7%;

    background:#ffffff;
}

.principal-container{
    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:
    330px 1fr;

    gap:50px;

    align-items:center;

    padding:25px;

    background:#f8f9fb;

    border:
    1px solid var(--border);

    border-radius:12px;

    box-shadow:var(--shadow);
}


/* PRINCIPAL IMAGE */

.principal-image-box{
    width:100%;
    height:340px;

    overflow:hidden;

    border-radius:10px;

    background:#e7eaf0;
}

.principal-image-box img{
    width:100%;
    height:100%;

    object-fit:cover;
}


/* PRINCIPAL MESSAGE */

.principal-message{
    padding:10px 15px;
}

.section-small-title{
    margin-bottom:8px;

    color:var(--secondary);

    font-size:12px;
    font-weight:700;

    letter-spacing:2px;
}

.principal-message h2{
    margin-bottom:8px;

    color:var(--primary);

    font-size:32px;
}

.title-line{
    width:55px;
    height:3px;

    margin-bottom:18px;

    background:var(--secondary);
}

.principal-message p{
    margin-bottom:12px;

    color:#4d5663;

    font-size:16px;

    line-height:1.8;
}

.principal-name{
    margin-top:20px;

    color:var(--primary);

    font-size:19px;
    font-weight:700;
}

.principal-designation{
    color:#b56e0b;

    font-size:14px;
    font-weight:600;
}


/* =========================================================
   GROUPS SECTION
========================================================= */

.groups-section{
    width:100%;

    padding:70px 7%;

    background:
    linear-gradient(
        180deg,
        #f7f8fb,
        #ffffff
    );
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading{
    text-align:center;

    margin-bottom:40px;
}

.section-heading h2{
    margin-top:5px;

    color:var(--primary);

    font-size:32px;
}

.heading-line{
    width:70px;
    height:3px;

    margin:15px auto 0;

    background:var(--secondary);
}


/* =========================================================
   GROUP CONTAINER
========================================================= */

.groups-container{
    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}


/* =========================================================
   GROUP CARD
========================================================= */

.group-card{
    padding:30px 22px;

    background:#ffffff;

    border:
    1px solid var(--border);

    border-radius:12px;

    text-align:center;

    box-shadow:
    0 6px 18px
    rgba(0,0,0,.04);

    transition:var(--transition);
}

.group-card:hover{
    transform:
    translateY(-8px);

    box-shadow:
    0 15px 30px
    rgba(0,0,0,.10);
}


/* =========================================================
   GROUP ICON
========================================================= */

.group-icon{
    width:70px;
    height:70px;

    margin:
    0 auto 18px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    color:#ffffff;

    font-size:27px;
}


/* MPC */

.mpc .group-icon{
    background:#1b5a87;
}

.mpc h3{
    color:#1b5a87;
}

.mpc a{
    background:#1b5a87;
}


/* BIPC */

.bipc .group-icon{
    background:#28723d;
}

.bipc h3{
    color:#28723d;
}

.bipc a{
    background:#28723d;
}


/* MEC */

.mec .group-icon{
    background:#673c98;
}

.mec h3{
    color:#673c98;
}

.mec a{
    background:#673c98;
}


/* CEC */

.cec .group-icon{
    background:#d57a00;
}

.cec h3{
    color:#b66700;
}

.cec a{
    background:#d57a00;
}


/* =========================================================
   GROUP TEXT
========================================================= */

.group-card h3{
    margin-bottom:10px;

    font-size:24px;
}

.group-card p{
    min-height:50px;

    color:#4e5660;

    font-size:14px;
}


/* =========================================================
   GROUP BUTTON
========================================================= */

.group-card a{
    display:block;

    margin-top:18px;

    padding:10px;

    color:#ffffff;

    text-decoration:none;

    border-radius:5px;

    font-size:14px;
    font-weight:600;
}

.group-card a:hover{
    opacity:.85;

    transform:
    translateY(-2px);
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section{
    width:100%;

    padding:75px 7%;

    background:#ffffff;
}

.about-container{
    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:60px;

    align-items:center;
}

.about-content h2{
    margin-bottom:20px;

    color:var(--primary);

    font-size:34px;

    line-height:1.3;
}

.about-content p{
    margin-bottom:15px;

    color:#555e6b;

    line-height:1.8;
}


/* ABOUT BUTTON */

.about-button{
    display:inline-block;

    margin-top:15px;

    padding:13px 22px;

    background:var(--primary);

    color:#ffffff;

    text-decoration:none;

    border-radius:5px;

    font-weight:600;
}

.about-button:hover{
    background:var(--secondary);

    transform:
    translateY(-2px);
}


/* =========================================================
   ABOUT STATS
========================================================= */

.about-stats{
    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:15px;
}

.stat-card{
    padding:25px 15px;

    text-align:center;

    background:var(--light);

    border:
    1px solid var(--border);

    border-radius:10px;

    transition:var(--transition);
}

.stat-card:hover{
    transform:
    translateY(-5px);

    box-shadow:
    0 10px 20px
    rgba(0,0,0,.07);
}

.stat-card i{
    margin-bottom:12px;

    color:var(--secondary);

    font-size:28px;
}

.stat-card h3{
    margin-bottom:8px;

    color:var(--primary);

    font-size:16px;
}

.stat-card p{
    color:#666;

    font-size:13px;
}


/* =========================================================
   GALLERY SECTION
========================================================= */

.gallery-section{
    padding:70px 7%;

    background:var(--light);
}

.gallery-placeholder{
    max-width:850px;

    margin:auto;

    padding:60px 20px;

    text-align:center;

    background:#ffffff;

    border:
    1px solid var(--border);

    border-radius:12px;

    box-shadow:
    0 5px 18px
    rgba(0,0,0,.03);
}

.gallery-placeholder i{
    margin-bottom:15px;

    color:var(--secondary);

    font-size:55px;
}

.gallery-placeholder h3{
    margin-bottom:10px;

    color:var(--primary);

    font-size:25px;
}

.gallery-placeholder p{
    color:#667;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section{
    padding:75px 7%;

    background:#ffffff;
}

.contact-container{
    max-width:1250px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:60px;
}

.contact-info h2{
    margin-bottom:15px;

    color:var(--primary);

    font-size:34px;
}

.contact-info > p{
    margin-bottom:25px;

    color:#5a6470;

    line-height:1.8;
}


/* CONTACT ITEM */

.contact-item{
    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:18px;

    color:#4b5560;
}

.contact-item i{
    margin-top:4px;

    color:var(--secondary);

    font-size:20px;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-box{
    padding:35px;

    background:var(--light);

    border:
    1px solid var(--border);

    border-radius:12px;
}

.contact-form-box form{
    display:flex;

    flex-direction:column;

    gap:15px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;

    padding:14px;

    background:#ffffff;

    border:
    1px solid #d7dce3;

    border-radius:5px;

    font-family:inherit;

    font-size:15px;

    outline:none;

    transition:var(--transition);
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
    border-color:var(--primary);

    box-shadow:
    0 0 0 3px
    rgba(23,55,94,.08);
}

.contact-form-box textarea{
    height:120px;

    resize:none;
}

.contact-form-box button{
    border:none;

    padding:14px;

    background:var(--primary);

    color:#ffffff;

    border-radius:5px;

    cursor:pointer;

    font-size:16px;
    font-weight:600;

    transition:var(--transition);
}

.contact-form-box button:hover{
    background:var(--secondary);
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer{
    padding-top:55px;

    background:var(--primary-dark);

    color:#ffffff;
}

.footer-container{
    width:90%;
    max-width:1300px;

    margin:auto;

    padding-bottom:45px;

    display:grid;

    grid-template-columns:
    1.4fr 1fr 1fr;

    gap:50px;
}


/* FOOTER COLLEGE */

.footer-college img{
    width:70px;
    height:70px;

    margin-bottom:12px;

    object-fit:contain;
}

.footer-college h3{
    margin-bottom:8px;

    font-size:22px;
}

.footer-college p{
    color:var(--secondary-light);
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links h4,
.footer-contact h4{
    margin-bottom:18px;

    color:var(--secondary-light);

    font-size:18px;
}

.footer-links{
    display:flex;

    flex-direction:column;
}

.footer-links a{
    margin-bottom:9px;

    color:#dce4ef;

    text-decoration:none;
}

.footer-links a:hover{
    padding-left:5px;

    color:var(--secondary-light);
}

.footer-contact p{
    color:#dce4ef;

    line-height:1.8;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom{
    padding:18px 5%;

    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:20px;

    text-align:center;

    border-top:
    1px solid rgba(255,255,255,.15);

    color:#cbd6e3;

    font-size:14px;
}


/* =========================================================
   LAPTOP RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .header-container{
        width:94%;
    }

    .college-brand{
        min-width:auto;
    }

    .college-title h1{
        font-size:21px;
    }

    .main-nav{
        gap:18px;
    }

    .hero-container{
        padding-left:60px;
        padding-right:60px;

        gap:40px;
    }

    .hero-content h1{
        font-size:45px;
    }

    .groups-container{
        grid-template-columns:
        repeat(2,1fr);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1100px){

    .hero-container{
        grid-template-columns:
        1fr;

        padding:
        45px 80px 65px;

        gap:35px;
    }

    .hero-book{
        max-width:680px;
    }

    .hero-content{
        text-align:center;
    }

    .welcome-title{
        justify-content:center;
    }

    .hero-features{
        justify-content:center;
    }

}


/* =========================================================
   TABLET - 992px
========================================================= */

@media(max-width:992px){

    .top-container{
        width:94%;
    }

    .top-right{
        display:none;
    }

    .header-container{
        flex-wrap:wrap;

        padding:15px 0;
    }

    .college-brand{
        width:100%;
    }

    .main-nav{
        width:100%;

        justify-content:center;

        flex-wrap:wrap;
    }

    .principal-container{
        grid-template-columns:
        280px 1fr;

        gap:30px;
    }

    .about-container,
    .contact-container{
        grid-template-columns:
        1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

    /* TOP BAR */

    .top-bar{
        font-size:12px;
    }

    .top-container{
        justify-content:center;

        text-align:center;
    }


    /* HEADER */

    .main-header{
        position:relative;
    }

    .header-container{
        flex-direction:column;

        align-items:center;

        gap:15px;

        min-height:auto;
    }

    .college-brand{
        justify-content:center;

        text-align:center;
    }

    .college-brand img{
        width:65px;
        height:65px;
    }

    .college-title h1{
        font-size:19px;
    }

    .college-title p{
        font-size:11px;
    }


    /* NAVIGATION */

    .main-nav{
        gap:15px;
    }

    .main-nav a{
        font-size:13px;
    }

    .student-login{
        padding:10px 16px;

        font-size:14px;
    }


    /* HERO */

    .hero-section{
        min-height:auto;
    }

    .hero-container{
        padding:
        35px 20px 60px;
    }

    .hero-book{
        height:310px;
    }

    .book-page{
        padding:25px 15px;
    }

    .book-small-title{
        margin-bottom:12px;

        font-size:10px;

        letter-spacing:2px;
    }

    .book-page h2{
        font-size:20px;
    }

    .book-page h3{
        font-size:14px;
    }

    .book-values{
        gap:8px;

        font-size:14px;
    }

    .book-values b{
        font-size:13px;
    }

    .book-logo img{
        width:55px;
        height:55px;
    }

    .book-tagline{
        margin-top:20px;

        font-size:11px;
    }

    .book-button{
        width:80%;

        padding:11px 5px;

        font-size:9px;
    }

    .book-bottom{
        bottom:12px;

        font-size:7px;

        letter-spacing:1px;
    }


    /* HERO TEXT */

    .hero-content h1{
        font-size:36px;
    }

    .hero-content p{
        font-size:18px;
    }

    .hero-features{
        justify-content:center;
    }


    /* HERO ARROWS */

    .hero-arrow{
        width:40px;
        height:40px;

        font-size:24px;
    }

    .hero-prev{
        left:5px;
    }

    .hero-next{
        right:5px;
    }


    /* PRINCIPAL */

    .principal-section{
        padding:50px 5%;
    }

    .principal-container{
        grid-template-columns:
        1fr;

        padding:18px;
    }

    .principal-image-box{
        max-width:350px;

        height:320px;

        margin:auto;
    }

    .principal-message{
        padding:10px 5px;

        text-align:center;
    }

    .principal-message h2{
        font-size:27px;
    }

    .title-line{
        margin:
        0 auto 18px;
    }


    /* GROUPS */

    .groups-section{
        padding:55px 5%;
    }

    .groups-container{
        grid-template-columns:
        repeat(2,1fr);

        gap:15px;
    }

    .group-card{
        padding:22px 12px;
    }

    .group-icon{
        width:55px;
        height:55px;

        font-size:22px;
    }

    .group-card h3{
        font-size:21px;
    }

    .group-card p{
        font-size:13px;
    }


    /* ABOUT */

    .about-section{
        padding:55px 6%;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:28px;
    }

    .about-stats{
        grid-template-columns:
        1fr;
    }


    /* GALLERY */

    .gallery-section{
        padding:55px 6%;
    }


    /* CONTACT */

    .contact-section{
        padding:55px 6%;
    }

    .contact-info{
        text-align:center;
    }


    /* FOOTER */

    .footer-container{
        grid-template-columns:
        1fr;

        text-align:center;
    }

    .footer-college img{
        margin-left:auto;
        margin-right:auto;
    }

    .footer-links{
        align-items:center;
    }

    .footer-bottom{
        flex-direction:column;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:480px){

    .college-brand{
        gap:8px;
    }

    .college-brand img{
        width:55px;
        height:55px;
    }

    .college-title h1{
        font-size:16px;
    }

    .college-title p{
        font-size:9px;
    }


    /* NAV */

    .main-nav{
        gap:10px;
    }

    .main-nav a{
        font-size:11px;
    }


    /* HERO */

    .hero-container{
        padding:
        25px 15px 55px;
    }

    .hero-book{
        height:250px;
    }

    .book-page{
        padding:18px 8px;
    }

    .book-small-title{
        font-size:8px;
    }

    .book-page h2{
        font-size:14px;
    }

    .book-page h3{
        font-size:10px;
    }

    .book-line{
        width:50px;

        margin:12px auto;
    }

    .book-values{
        gap:5px;

        font-size:10px;
    }

    .book-values b{
        font-size:10px;
    }

    .book-logo img{
        width:42px;
        height:42px;
    }

    .book-tagline{
        margin-top:10px;

        font-size:8px;
    }

    .book-button{
        display:none;
    }

    .book-bottom{
        font-size:6px;
    }

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-features{
        display:none;
    }

    .admission-button{
        padding:12px 16px;

        font-size:13px;
    }


    /* GROUPS */

    .groups-container{
        grid-template-columns:
        1fr;
    }

    .section-heading h2{
        font-size:26px;
    }


    /* PRINCIPAL */

    .principal-message h2{
        font-size:24px;
    }

    .principal-message p{
        font-size:14px;
    }

    .principal-image-box{
        height:280px;
    }


    /* ABOUT */

    .about-content h2{
        font-size:25px;
    }


    /* CONTACT */

    .contact-form-box{
        padding:22px 15px;
    }

}