*{
    margin:0;
    padding:0;
}
.header{
    min-height:100vh;
    width:100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url("images/image2.png");
    background-position: center;
    /*  */
    background-size: cover;
    /*  */
}
nav{
    display:flex;
    padding :0% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    position:relative;
    width: 150px;
}
 /* nav img{
    width: 100px;
} */
.nav-links{
    flex:1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 20px;
    position: relative;
}

.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Poppins',sans-serif;
}


/* to add hover effect */
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* margin-top: 200px;
    margin-left:50px; */
    text-align: center;
}
.text-box h1{
    font-size: 62px;
    /* font-family: 'Poetsen One',sans-serif; */
}
.text-box p{
    margin: 10px 0 40px;
    font-size: 16px;
    font-family: 'Poppins',sans-serif;
}
.text-box a{
    display:inline-block;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 10px 25px;
    color: #fff;
    font-size: 14px;
    background: transparent;
    position:relative;
    cursor: pointer;
    font-family: 'Poppins',sans-serif;
}
.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
}
nav .fa-solid{
    display:none;
}
/* .row campus-col img{
    height: 200px;
    object-fit: cover;
    border-radius:10px;
} */
/* sare device pe aache se dikhne ke liye */
@media (max-width:700px){
    .text-box h1{
        font-size: 40px;
    }
    .nav-links ul li{
       display:block;
    }
    .nav-links{
        position: absolute;
        background:  #f44336;
        height:100vh;
        width:200px;
        top:0;
        right:-200px;
        text-align: left;
        z-index: 2;
        padding: 50px 20px;  /* Fixed: Uncommented for proper spacing */
        transition: 1s;
    }

    nav .fa-solid{
        display:block;
        color:#fff;
        margin:10px;
        font-size:22px;
        cursor:pointer;
        padding-bottom: 20px;
    }
    .nav-links .fa-solid{
        position: absolute;  /* Fixed: was relative */
        top: 25px;
        left: 25px;
    }

    .nav-links ul li{
        padding: 20px 12px;
        border-bottom: 1px solid rgba(0,0,0,0.2);
        }
    }

    /* <!-- New CSS for Courses Section --> */

.course{
    width:80%;
    margin:auto;
    text-align: center;
    padding-top:100px;
}
h1{
    font-size:36px;
    font-weight: 600;
    /* font-family: 'Poppins',sans-serif;
    margin-bottom:10px; */
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height:2;
    line-height:22px;
    font-family: 'Poppins',sans-serif;
}

.row{
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    margin-top:50px;
}
.course-col{
    flex-basis: 31%;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding:20px;
    box-sizing: border-box;
    transition: 0.5s;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius:10px;
    border-left: 4px solid #f44336;
}
h3{
    text-align:center;
    font-weight:600;
    margin: 10px 0;
}
.course-col:hover{
    /* transform: translateY(-10px); */
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}
@media(max-width:700px){
    .row{
        flex-direction:column;
        gap:20px;
        border-radius:2px;
    }
}

/* campus css */
.campus{
    width:80%;
    margin:auto;
    text-align: center;
    padding:100px 0;
}
.campus-col{
    /* display: flex;
    justify-content: space-between; */
    /* margin-top:50px; */
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom:30px;
    position: relative;  /* FIXED: Needed for absolute positioning of .layer */
    overflow:hidden; 
}
.campus-col img{
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.campus-col .layer{
    background: transparent;  /* Start transparent */
    height: 100%;
    width: 100%;
    position:absolute;
    top:0;
    left:0;
    transition: 0.5s;  /* Smooth transition */
}
.campus-col .layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;  /* Hidden by default */
    transition: 0.5s;
}
.campus-col:hover .layer{
    background: rgba(226,0,0,0.7);  /* Show red overlay on hover */
}
.campus-col:hover .layer h3{
    bottom: 49%;
    opacity: 1;  /* Show text on hover */
}

/* facilities */

.facilities{
    width:80%;
    margin:auto;
    text-align: center;
    padding:100px 0;
}
.facilities-col{
    flex-basis: 31%;
    /* text-align: center;
    padding:20px;
    box-sizing: border-box;
    transition: 0.5s; */
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.facilities-col img{
    width: 100%;
    border-radius:10px;
}

.facilities-col h3{
    /* font-weight: 600;
    margin: 15px 0; */
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}
.facilities-col p{
    padding:0;
}

/* ====== Placement Section ====== */
.placement{
    width: 70%;
    margin: auto;
    text-align: center;
    padding: 60px 0;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background:#f44336;
    border-radius: 20px;
    color: #0e0d0d;
}
.placement h1{
    color: #060606;
    font-size: 32px;
    margin-bottom: 12px;
}
.placement > p{
    color: rgba(0, 0, 0, 0.9);
    font-size: 15px;
    margin-bottom: 40px;
}

/* Placement Statistics */
.placement-stats{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 15px;
}
.stat-box{
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 15px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}
.stat-box:hover{
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.stat-box i{
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}
.stat-box h2{
    font-size: 36px;
    font-weight: 700;
    color: #010101;
    margin: 12px 0;
}
.stat-box p{
    font-size: 14px;
    color: rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

/* Top Recruiters */
.top-recruiters{
    padding: 0 20px;
}
.top-recruiters h2{
    font-size: 26px;
    color: #040404;
    margin-bottom: 30px;
}
.recruiters-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.recruiter-item{
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 18px 12px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}
.recruiter-item:hover{
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Placement Section */
@media(max-width: 768px){
    .placement{
        width: 90%;
        padding: 50px 20px;
    }
    .placement h1{
        font-size: 32px;
    }
    .placement-stats{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .stat-box{
        padding: 30px 15px;
    }
    .stat-box i{
        font-size: 36px;
    }
    .stat-box h2{
        font-size: 36px;
    }
    .recruiters-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .recruiter-item{
        font-size: 16px;
        padding: 20px 10px;
    }
}

/* testimonials section */
.testimonials{
    width:80%;
    margin:auto;
    text-align: center;
    padding:100px 0;
}   

.testimonial-col{  /* Fixed typo: was testmonal-col */
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align:left;
    background: #fff;
    cursor:pointer;
    padding:25px;
    display: flex;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #f44336;
    margin:5px;
}
.testimonial-col img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-col p{
    padding: 0;
}
.testimonial-col h3{  /* Fixed typo: was testimonal-col */
    margin-top: 15px;
    text-align: left;
}

.testimonial-col .fa-solid{  /* Fixed: was .fa, now .fa-solid for Font Awesome 6 */
    color: #f44336;
}

@media(max-width:700px){
    .testimonials-col img{
        flex-direction: column;
        gap:20px;
    }
}
/* call to action */
.cta{
    margin: 100px auto;
    width:80%;
    background-image: linear-gradient(rgba(4, 4, 4, 0.7),rgba(0,0,0,0.7)), url("images/banner2.jpg");
    background-position: center;
    background-size:cover;
    border-radius:10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{  /* Fixed: Moved after .cta for better organization */
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 20px;
    font-family: 'Poppins',sans-serif;
}
.cta .hero-btn{
    font-size: 18px;
    padding: 15px 30px;
    margin: 100px;
    text-decoration: none;
    color:#fff;
    border: 1px solid #fff;
}
@media(max-width:700px){
    .cta h1{
        font-size: 28px;
    }
    .cta .hero-btn{
        font-size: 16px;
        padding: 12px 25px;
        margin: 50px;
    }
}

/* footer */

.footer{ 
    background: #222;
    color:#fff;
    text-align: center;
    padding:20px;
    font-family: 'Poppins',sans-serif;
}

/* .footer{
    width:100%;
    text-align: center;
    padding:30px 0;
}

.footer h4{
    margin-bottom: 25px;
    margin: top 20px;
    font-weight: 600;

} */
.footer p{
    color: #bbb;
    font-size: 14px;
    font-family: 'Poppins',sans-serif;
}
.footer p a{
    color:#fff;
    text-decoration: none;
}
.footer p a:hover{
    color:#f44336;
    transition: 0.5s;
}
.icons .fa-brands{  /* Fixed: was .fa, now .fa-brands for social icons */
    color:#fff;
    margin:0 10px;
    cursor: pointer;
    padding: 18px 0;
}
.fa-heart-o{
    color: #f44336;
}

/* ====== About Page Styles ====== */

/* Sub Header for About Page */
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url("images/image2.png");
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 100px;
    font-size: 48px;
    color: #fff;
}

/* About Us Section */
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}
.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col img{
    width: 100%;
    border-radius: 10px;
}
.about-col h1{
    padding-top: 0;
    font-size: 32px;
    margin-bottom: 20px;
}
.about-col p{
    padding: 15px 0;
    text-align: justify;
}
.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}
.red-btn:hover{
    color: #fff;
    background: #f44336;
}

/* Mission & Vision Section */
.mission-vision{
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 80px 0;
    background: #f9f9f9;
    margin-top: 50px;
    border-radius: 10px;
}
.mission-col{
    flex-basis: 31%;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: 0.5s;
}
.mission-col i{
    font-size: 40px;
    color: #f44336;
    margin-bottom: 20px;
}
.mission-col h3{
    margin: 20px 0;
    font-size: 22px;
}
.mission-col p{
    text-align: center;
    line-height: 1.8;
}
.mission-col:hover{
    box-shadow: 0 0 30px rgba(244, 67, 54, 0.3);
    transform: translateY(-5px);
}

/* Why Choose Section */
.why-choose{
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 80px 0;
}
.why-col{
    flex-basis: 48%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: 0.5s;
}
.why-col img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.why-col .info{
    padding: 25px;
    text-align: left;
}
.why-col h3{
    margin-bottom: 15px;
    font-size: 20px;
}
.why-col:hover{
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

/* Statistics Section */
.stats{
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(rgba(244, 67, 54, 0.9), rgba(244, 67, 54, 0.9));
    border-radius: 10px;
    color: #fff;
}
.stats h1{
    color: #fff;
    margin-bottom: 50px;
}
.stats-col{
    flex-basis: 23%;
    padding: 20px;
}
.stats-col i{
    font-size: 50px;
    margin-bottom: 20px;
    color: #fff;
}
.stats-col h2{
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0;
}
.stats-col p{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

/* History Timeline Section */
.history{
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 80px 0;
}
.timeline{
    margin-top: 50px;
}
.timeline-item{
    padding: 30px;
    margin: 30px 0;
    background: #f9f9f9;
    border-left: 4px solid #f44336;
    border-radius: 10px;
    transition: 0.5s;
}
.timeline-content h3{
    color: #f44336;
    font-size: 28px;
    margin-bottom: 10px;
}
.timeline-content h4{
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}
.timeline-content p{
    text-align: left;
    padding: 0 20px;
}
.timeline-item:hover{
    box-shadow: 0 0 20px rgba(244, 67, 54, 0.2);
    transform: translateX(10px);
}

/* Responsive Design for About Page */
@media(max-width:700px){
    .sub-header h1{
        font-size: 32px;
        margin-top: 50px;
    }
    .about-col h1{
        font-size: 24px;
    }
    .mission-vision, .why-choose, .stats, .history{
        width: 90%;
        padding: 40px 20px;
    }
    .stats-col h2{
        font-size: 32px;
    }
    .timeline-content h3{
        font-size: 22px;
    }
    .timeline-item{
        padding: 20px;
    }
}

/* ====== Course Page Styles ====== */

/* Course Introduction */
.course-intro{
    width: 80%;
    margin: 50px auto;
    text-align: center;
    padding: 40px 0;
}
.course-intro h1{
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}
.course-intro .highlight{
    color: #f44336;
}
.course-intro p{
    font-size: 18px;
    color: #666;
}

/* Tab Container */
.course-tabs-section{
    width: 85%;
    margin: 0 auto 80px;
}
.tab-container{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.tab-button{
    background: #fff;
    color: #333;
    border: 2px solid #f44336;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.tab-button i{
    font-size: 20px;
}
.tab-button:hover{
    background: #f44336;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}
.tab-button.active{
    background: #f44336;
    color: #fff;
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.4);
}

/* Tab Content */
.tab-content{
    display: none;
    animation: fadeIn 0.5s;
}
.tab-content.active{
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Course Category */
.course-category{
    margin-bottom: 60px;
}
.course-category h2{
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}
.course-category h2::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #f44336, #ff6b6b);
    border-radius: 2px;
}

/* Courses Grid */
.courses-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Course Card */
.course-card{
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.course-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #f44336, #ff6b6b);
}
.course-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(244, 67, 54, 0.2);
    border-color: #f44336;
}

/* Course Icon */
.course-icon{
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f44336, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.course-card:hover .course-icon{
    transform: rotate(360deg);
}
.course-icon i{
    font-size: 32px;
    color: #fff;
}

/* Course Card Title */
.course-card h3{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
    min-height: 60px;
}

/* Course Description */
.course-card p{
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Course Highlights */
.course-highlights{
    list-style: none;
    padding: 0;
    margin: 0;
}
.course-highlights li{
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.course-highlights i{
    color: #f44336;
    font-size: 16px;
}

/* M.Tech Section Styling */
.mtech-section{
    background: #f9f9f9;
    padding: 50px;
    border-radius: 20px;
    margin-top: 60px;
}
.mtech-card{
    background: #fff;
}
.mtech-card .course-icon{
    background: linear-gradient(135deg, #2196F3, #64B5F6);
}

/* Management Card Styling */
.management-card .course-icon{
    background: linear-gradient(135deg, #4CAF50, #81C784);
}

/* MBA Card Styling */
.mba-section{
    background: #f3f8fb;
    padding: 50px;
    border-radius: 20px;
    margin-top: 60px;
}
.mba-card .course-icon{
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

/* Ph.D. Section */
.phd-section{
    padding: 40px 0;
}
.phd-intro{
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Ph.D. Container */
.phd-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Ph.D. Card */
.phd-card{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}
.phd-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

/* Ph.D. Icon */
.phd-icon{
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}
.phd-icon i{
    font-size: 40px;
    color: #fff;
}

/* Ph.D. Card Title */
.phd-card h3{
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}
.phd-card p{
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* Ph.D. Features */
.phd-features{
    list-style: none;
    padding: 0;
    margin: 0;
}
.phd-features li{
    padding: 10px 0;
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.phd-features i{
    color: #fff;
    font-size: 18px;
}

/* Ph.D. Info Section */
.phd-info{
    background: #f9f9f9;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}
.phd-info h3{
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

/* Ph.D. Benefits */
.phd-benefits{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.benefit-item{
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}
.benefit-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(244, 67, 54, 0.2);
}
.benefit-item i{
    font-size: 40px;
    color: #f44336;
    margin-bottom: 20px;
}
.benefit-item h4{
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}
.benefit-item p{
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Admission CTA */
.admission-cta{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    margin: 80px 0;
}
.cta-content h2{
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}
.cta-content p{
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}
.cta-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-buttons .hero-btn{
    background: #fff;
    color: #667eea;
    border: 2px solid #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
}
.cta-buttons .hero-btn:hover{
    background: transparent;
    color: #fff;
}
.cta-buttons .red-btn{
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.cta-buttons .red-btn:hover{
    background: #fff;
    color: #667eea;
}

/* Responsive Design for Course Page */
@media(max-width: 768px){
    .course-intro h1{
        font-size: 32px;
    }
    .tab-container{
        flex-direction: column;
        gap: 15px;
    }
    .tab-button{
        width: 100%;
        justify-content: center;
    }
    .course-tabs-section{
        width: 95%;
    }
    .courses-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .course-category h2{
        font-size: 28px;
    }
    .mtech-section, .mba-section{
        padding: 30px 20px;
    }
    .phd-container{
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .phd-info{
        padding: 30px 20px;
    }
    .phd-benefits{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .admission-cta{
        padding: 50px 20px;
    }
    .cta-content h2{
        font-size: 28px;
    }
    .cta-buttons{
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .hero-btn{
        width: 80%;
    }
}

/* ====== Contact Page Styles ====== */

/* Contact Info Section */
.contact-info-section{
    width: 85%;
    margin: 60px auto;
    text-align: center;
}
.contact-info-section h1{
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}
.contact-info-section > p{
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* Contact Info Grid */
.contact-info-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Info Box */
.info-box{
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid #f44336;
}
.info-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(244, 67, 54, 0.2);
}

/* Info Icon */
.info-icon{
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f44336, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s;
}
.info-box:hover .info-icon{
    transform: rotate(360deg);
}
.info-icon i{
    font-size: 32px;
    color: #fff;
}
.info-box h3{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}
.info-box p{
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* Contact Form Section */
.contact-form-section{
    background: #f9f9f9;
    padding: 80px 0;
}
.contact-container{
    width: 85%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Form Wrapper */
.form-wrapper{
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}
.form-wrapper h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}
.form-wrapper > p{
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
}

/* Contact Form */
.contact-form{
    margin-top: 30px;
}
.form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group{
    margin-bottom: 20px;
}
.form-group label{
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}
.form-group label i{
    color: #f44336;
    margin-right: 5px;
}
.form-group input,
.form-group select,
.form-group textarea{
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline: none;
    border-color: #f44336;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}
.form-group textarea{
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-btn{
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #f44336, #ff6b6b);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.submit-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 67, 54, 0.3);
}
.submit-btn i{
    font-size: 18px;
}

/* Map Wrapper */
.map-wrapper{
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}
.map-wrapper h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

/* Map Container */
.map-container{
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

/* Map Info */
.map-info h3{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}
.campus-location{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s;
}
.campus-location:hover{
    background: #fff3f3;
    transform: translateX(5px);
}
.campus-location i{
    font-size: 24px;
    color: #f44336;
    margin-top: 3px;
}
.campus-location h4{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}
.campus-location p{
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* FAQ Section */
.faq-section{
    width: 85%;
    margin: 80px auto;
    text-align: center;
}
.faq-section h2{
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}
.faq-section > p{
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

/* FAQ Container */
.faq-container{
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* FAQ Item */
.faq-item{
    background: #fff;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover{
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

/* FAQ Question */
.faq-question{
    padding: 25px 30px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    user-select: none;
}
.faq-item.active .faq-question{
    background: #f44336;
    color: #fff;
}
.faq-question h3{
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    transition: all 0.3s;
}
.faq-item.active .faq-question h3{
    color: #fff;
}
.faq-question i{
    font-size: 20px;
    color: #f44336;
    transition: all 0.3s;
}
.faq-item.active .faq-question i{
    color: #fff;
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}
.faq-answer p{
    padding: 25px 30px;
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* Social Connect Section */
.social-connect{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
}
.social-connect h2{
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.social-connect p{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

/* Social Links */
.social-links{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

/* Social Link */
.social-link{
    width: 150px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.social-link:hover{
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.social-link i{
    font-size: 36px;
    color: #fff;
}
.social-link span{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Social Link Colors */
.social-link.facebook:hover{
    background: #1877f2;
    border-color: #1877f2;
}
.social-link.twitter:hover{
    background: #1da1f2;
    border-color: #1da1f2;
}
.social-link.instagram:hover{
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}
.social-link.linkedin:hover{
    background: #0077b5;
    border-color: #0077b5;
}
.social-link.youtube:hover{
    background: #ff0000;
    border-color: #ff0000;
}

/* Responsive Design for Contact Page */
@media(max-width: 900px){
    .contact-container{
        grid-template-columns: 1fr;
        gap: 40px;
        width: 90%;
    }
    .form-row{
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media(max-width: 768px){
    .contact-info-section{
        width: 90%;
        margin: 40px auto;
    }
    .contact-info-section h1{
        font-size: 32px;
    }
    .contact-info-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-form-section{
        padding: 50px 0;
    }
    .form-wrapper,
    .map-wrapper{
        padding: 30px 20px;
    }
    .form-wrapper h2,
    .map-wrapper h2{
        font-size: 26px;
    }
    .map-container{
        height: 250px;
    }
    .faq-section{
        width: 90%;
        margin: 50px auto;
    }
    .faq-section h2{
        font-size: 32px;
    }
    .faq-question{
        padding: 20px;
    }
    .faq-question h3{
        font-size: 16px;
    }
    .faq-answer p{
        padding: 20px;
        font-size: 14px;
    }
    .social-connect{
        padding: 50px 20px;
    }
    .social-connect h2{
        font-size: 32px;
    }
    .social-links{
        gap: 15px;
    }
    .social-link{
        width: 130px;
        padding: 20px 15px;
    }
    .social-link i{
        font-size: 28px;
    }
    .social-link span{
        font-size: 14px;
    }
}