:root {
            --ling:rgb(14, 76, 168);
           --raw:#3b37c4;
            --primary: #1a365d;
            --secondary: #2b6cb0;
            --accent: #e53e3e;
            --light: #f7fafc;
            --dark: #2d3748;
            --success: #38a169;
            --warning: #d69e2e;
            --gradient: linear-gradient(135deg, #1a365d 0%, #2b6cb0 100%);
            --gradient-accent: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
    scroll-behavior: smooth;
}
body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            background-color: #bce0f3;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--raw);
            
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            letter-spacing: 0.5px;
        }
        
        
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-accent {
            background: rgb(228, 144, 144);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 15px;
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
/* Hero Section */
        #hero-section {
            background: url('toyota.jpg') center/cover no-repeat;
            color: rgb(249, 249, 248);
            padding: 50px 0;
            text-align: center;
            position: relative;
        }
        
#hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); 
    z-index: 1;
}

        
        .hero-content {
            max-width: 900px;
            margin: auto;
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            color: #cbd3de;
        }
        
        .hero-title img {
            height: 160px;
            width: auto;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .hero-desc {
          color: #f6f7fb;
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        #hero-section .btn {
    background: #ffcc00;
    color: rgba(6, 0, 0, 0.958);
    font-weight: 700;
    text-shadow: none;
}
        /* Overview Section */
        #overview {
            padding: 100px 0;
            background-color: white;
        }
        .section-title{
          color: #050c1e;
        }
        
        .overview-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 50px;
        }
        
        .overview-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            font-weight: bold;
        }
        
        .overview-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .overview-images img {
            width: 100%;
            height: 375px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }
        
        .overview-images img:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
         /* Intention Section */
        #intention {
            padding: 100px 0;
            background: linear-gradient(to right, rgb(239, 243, 240) 50%, rgb(239, 243, 240) 50%);
            
        }
        
        .intention-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .intention-text {
            flex: 1;
            padding: 0 40px;
        }
        
        .intention-text h2 {
            color: rgb(59, 3, 3);
            margin-bottom: 25px;
            font-size: 3.2rem;
        }
        
        .intention-text p {
            font-size: 1.5rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .intention-image {
            flex: 1;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 1s ease, transform 1s ease;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .intention-image.show {
            opacity: 1;
            transform: translateX(0);
        }
        
        .intention-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .intention-image:hover img {
            transform: scale(1.05);
        }
        
        
        /* Apply Section */
        #apply {
            padding: 100px 0;
            background: rgb(126, 206, 228);
            position: relative;
        }
        
        
        
        .apply-container {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .apply-text {
            flex: 1;
            padding: 0 40px;
        }
        
           .btna {
           
            display: inline-block;
            padding: 14px 32px ;
            background: rgb(188, 143, 21);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            letter-spacing: 0.5px;
        }
        
        .btna:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        } 
        
        
        .apply-text h2 {
            color: rgb(13, 3, 3);
            margin-bottom: 25px;
            font-size: 2.8rem;
            font-weight: bold;
        }
        
        
        
        .apply-text ul {
            margin-left: 20px;
            margin-bottom: 35px;
        }
        
        .apply-text li {
            font-size: 1.8em;
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }
        
        .apply-text li:before {
            
            content: '✓';
            color: var(--success);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .apply-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .apply-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .apply-image:hover img {
            transform: scale(1.05);
        }
        
        /*  Qualifications Section Redesign */
        .qualifications {
            padding: 100px 0;
            background: rgb(127, 186, 235);
        }
        
        .qualifications-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
        }
        
        .qual-card {
            background: rgb(216, 216, 190);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-top: 5px solid var(--secondary);
        }
        
        .qual-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .qual-card:nth-child(2) {
            border-top-color: var(--accent);
        }
        
        .qual-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .qual-icon-container {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: white;
            font-size: 28px;
        }
        
        .qual-card:nth-child(2) .qual-icon-container {
            background: var(--gradient-accent);
        }
        
        .qual-title {
            color: var(--primary);
            font-size: 1.5rem;
            margin: 0;
        }
        
        .qual-list {
            list-style: none;
            margin-left: 0;
        }
        
        .qual-list li {
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
        }
        
        .qual-list li:before {
            content: "✓";
            color: var(--success);
            font-weight: bold;
            position: absolute;
            left: 0;
            background: rgba(56, 161, 105, 0.1);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        
        /* Scholarship Section */
        #scholarship-provides {
            padding: 100px 0;
            background: var(--light);
        }
        
        .scholarship-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .scholar-box {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            border-top: 5px solid var(--secondary);
            position: relative;
            overflow: hidden;
        }
        
        .scholar-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .scholar-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .scholar-box:hover:before {
            opacity: 1;
        }
        
        .scholar-box:nth-child(2) {
            border-top-color: var(--accent);
        }
        
        .scholar-box:nth-child(3) {
            border-top-color: var(--success);
        }
        
        .scholar-box h2 {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        
        .scholar-box ul {
            list-style: none;
            margin-left: 0;
        }
        
        .scholar-box li {
            margin-bottom: 12px;
            padding-left: 30px;
            position: relative;
        }
        
        .scholar-box li:before {
            content: "➤";
            color: var(--success);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        /*  Footer Section */
        footer {
            background: rgb(6, 36, 62);
            color: white;
            padding: 70px 0 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            width: 100%;
        }
        
        .footer-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .footer-col {
            text-align: center;
            width: 100%;
        }
        
        .footer-col h3 {
            color: white;
            margin-bottom: 30px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: rgb(63, 132, 175);
            border-radius: 2px;
        }
        
        .footer-links {
            padding: 0;
            margin: 0 auto;
            display: table;
            list-style: none;
        }
        
        .footer-links li {
            text-align: left;
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
            max-width: 400px;
        }
        
        .footer-links li i {
            min-width: 24px;
            margin-right: 15px;
            font-size: 18px;
            color: var(--secondary);
            margin-top: 3px;
        }
        
        .footer-links li span {
            flex: 1;
            line-height: 1.5;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .footer-links li {
                max-width: 300px;
            }
            
            footer {
                padding: 50px 0 20px;
            }
            
            .footer-col h3 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .footer-links li {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .footer-links li i {
                margin-right: 0;
                margin-bottom: 8px;
            }
        }
