:root {
    --primary-blue: #0056D2;
    --accent-orange: #FF9900;
    --text-dark: #222;
    --text-light: #555;
    --white: #fff;
    --light-bg: #F9FAFB;
    --border-radius: 12px;
    --container-width: 1200px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    --transition: all .3s ease
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: Inter, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark)
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px
}

.text-center {
    text-align: center
}

.text-primary {
    color: var(--primary-blue)
}

.text-accent {
    color: var(--accent-orange)
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 86, 210, .3)
}

.btn-primary:hover {
    background-color: #0044a6;
    transform: translateY(-2px)
}

.btn-accent {
    background-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 153, 0, .3)
}

.btn-accent:hover {
    background-color: #e68a00;
    transform: translateY(-2px)
}

.section-padding {
    padding: 80px 0
}

.grid {
    display: grid;
    gap: 30px
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease-out, transform .8s ease-out
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0)
}

.pulse {
    animation: pulse-animation 2s infinite
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, .4)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 153, 0, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 153, 0, 0)
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition)
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

header .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue)
}

.header-cta a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 20px
}

.header-cta .btn {
    padding: 8px 20px;
    font-size: .9rem
}

.hero {
    margin-top: 85px;
    padding: 100px 0;
    background: url(Hero-image-1.jpeg) no-repeat center center/cover;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .35);
    z-index: 0
}

.hero .container {
    position: relative;
    z-index: 1
}

.hero .grid-2 {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: center
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, .7)
}

.hero-content p {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    font-weight: 500;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .8)
}

.hero-content ul li {
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .8);
    font-weight: 600
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px
}

.badge {
    background: rgba(255, 255, 255, .9);
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.trust-indicators p {
    color: #eee !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .9)
}

.hero-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-top: 5px solid var(--accent-orange);
    scroll-margin-top: 140px;
    max-width: 420px;
    margin-left: auto
}

.hero-form h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem
}

.form-group {
    margin-bottom: 15px
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition)
}

.form-group input:focus {
    border-color: var(--primary-blue)
}

.hero-form .btn {
    width: 100%
}

.highlights {
    background: var(--white)
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px
}

.highlight-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition)
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow)
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-orange)
}

.career {
    background: #f4f8fb
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px
}

.career-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}

.career-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    object-fit: contain
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: center
}

.tool-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    transition: var(--transition)
}

.tool-item:hover {
    border-color: var(--primary-blue)
}

.tool-item img {
    height: 60px;
    margin: 0 auto 15px
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    border-left: 4px solid var(--accent-orange)
}

.quote-icon {
    font-size: 3rem;
    color: #ffdcb5;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 0
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 15px
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-blue)
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px
}

.faq-question {
    padding: 20px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: var(--light-bg);
    color: var(--text-light)
}

.faq-toggle {
    transition: transform .3s ease
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg)
}

footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 60px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px
}

.footer h3 {
    color: var(--white);
    margin-bottom: 20px
}

.footer-links li {
    margin-bottom: 10px
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: .9rem
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    z-index: 999
}

.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .1);
    padding: 10px;
    z-index: 998;
    justify-content: space-around
}

.campus-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px
}

.campus-gallery img {
    width: calc(25% - 12px);
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition)
}

@media (max-width:900px) {
    .campus-gallery img {
        width: calc(33.33% - 10px)
    }
}

@media (max-width:600px) {
    .campus-gallery img {
        width: calc(50% - 8px)
    }
}

.campus-gallery img:hover {
    transform: scale(1.05)
}

.admission-vertical {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.process-card-v {
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-left: 5px solid var(--primary-blue)
}

.process-card-v:hover {
    transform: translateX(10px)
}

.process-icon-v {
    font-size: 2rem;
    color: var(--primary-blue);
    background: #eef5ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.process-content-v h4 {
    margin-bottom: 5px;
    font-size: 1.1rem
}

.process-content-v p {
    font-size: .95rem;
    color: var(--text-light);
    margin-bottom: 0
}

@media (max-width:600px) {
    .process-card-v {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px
    }
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px
}

.faculty-card {
    text-align: center
}

.faculty-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 10px
}

.faculty-card img:hover {
    transform: translateY(-5px)
}

.faculty-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 5px
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px
}

.skill-card {
    flex: 0 1 350px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-blue)
}

.skill-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px
}

.skill-card h4 {
    margin-bottom: 15px
}

.skill-card p {
    font-size: .95rem;
    color: var(--text-light)
}

@media (max-width:768px) {
    header .container {
        flex-direction: column;
        gap: 10px
    }

    .logo img {
        height: 50px !important
    }

    .nav-links {
        display: none
    }

    .hero .grid-2 {
        grid-template-columns: 1fr
    }

    .hero-content {
        text-align: center;
        order: 1
    }

    .hero-form {
        order: 2
    }

    .hero-content h1 {
        font-size: 2.2rem
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .mobile-sticky-bar {
        display: flex
    }

    .floating-whatsapp {
        bottom: 80px
    }
}