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

body {
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* ===============================
   NAVBAR
================================ */

.glass-navbar {
    background: #FFF5E1;
    padding: 18px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 22px;
}

.navbar-nav .nav-link{
    color:#0d6efd !important;   /* blue color */
}

.navbar-nav .nav-link:hover{
    color:#084298 !important;   /* darker blue on hover */
}

/* ===============================
   HERO SECTION
================================ */

.hero-section {
    min-height: 100vh;
    background: linear-gradient(90deg, #eef3ff 0%, #fbeeee 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Welcome Text */

.welcome-text {
    /* Colors and Weight */
    color: #2563eb;
    font-weight: 700; /* Increased from 600 for more presence */

    /* Layout and Spacing */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;

    /* Increased font size */
    font-size: 18px !important; /* Change this value to 20px or 22px if you want it even bigger */
}

/* Title */

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    color: #0b1238;
}

/* Orange Underline */

.highlight {
    position: relative;
    color: #0b1238;
}

.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 8px;
    background: #ff4b2b;
    border-radius: 5px;
}

/* Description */

.hero-subtext {
    margin-top: 30px;
    font-size: 18px;
    color: #555;
    max-width: 520px;
}

/* Button */

.hero-btn {
    display: inline-block;
    margin-top: 40px;
    background: #ff4b2b;
    color: white;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ===============================
   RIGHT SIDE
================================ */

.hero-right {
    position: relative;
    text-align: center;
}

/* Blue Blob */

.blob-blue {
    position: absolute;
    width: 520px;
    height: 520px;
    background: #2f63e0;
    border-radius: 50%;
    bottom: -180px;
    right: 20px;
    z-index: 0;
}

.blob-orange {
    position: absolute;
    width: 260px;
    height: 260px;
    background: #ff4b2b;
    border-radius: 50%;
    bottom: -60px;
    right: 220px;
    z-index: 1;
}

/* Image */

.hero-image {
    width: 85%;
    position: relative;
    z-index: 3;
    border-radius: 20px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.25);
}

/* Floating Cards */

.floating-card {
    position: absolute;
    background: white;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    font-size: 14px;
    z-index: 5;
}

.card-1 {
    top: 120px;
    left: 40px;
}

.card-2 {
    bottom: 70px;
    left: 60px;
}

.card-3 {
    top: 260px;
    right: -20px;
}

/* ===============================
   DOMAIN CARDS
================================ */

.domain-card {
    border: none;
    border-radius: 20px;
    transition: 0.4s ease;
    background: white;
}

.domain-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
/* Add to your existing CSS */

/* Floating Cards Layout */
.floating-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px !important;
    white-space: nowrap;
}

.icon-box {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-box.red { background: #ff4b2b; }
.icon-box.green { background: #28a745; }
.icon-box.purple { background: #6f42c1; }

/* Positioning Tweaks for portrait image */
.hero-image {
    width: 75% !important; /* Smaller width for portrait */
    border-radius: 0 0 100px 100px; /* Optional: gives it that rounded bottom look */
    box-shadow: none !important; /* Remove shadow if you want it cleaner like the image */
}

.card-1 { top: 40%; left: -5%; }
.card-2 { bottom: 10%; left: 0%; }
.card-3 { top: 65%; right: -10%; }

/* Decoration Dots (The orange squiggly dots) */
.decoration-dots {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#ff4b2b 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 1;
}

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

/* Define the movement */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); } /* Moves up 15px */
    100% { transform: translateY(0px); }
}

/* Apply to the cards with different timings for a natural look */
.card-1 {
    animation: float 3s ease-in-out infinite;
}

.card-2 {
    animation: float 4s ease-in-out infinite;
    animation-delay: 0.5s; /* Starts slightly later */
}

.card-3 {
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 1s;
}

/* Ensure the transform from animation doesn't fight the centering if used */
.floating-card {
    transition: all 0.3s ease;
}

/* Optional: Pause animation on hover so users can read easily */
.floating-card:hover {
    animation-play-state: paused;
    transform: scale(1.05); /* Slight pop on hover */
}

/* ===============================
   ACHIEVEMENTS SECTION
================================ */

.achievement-img-wrapper {
    position: relative;
    border-radius: 20px;
}

/* Red Play Button Box */
.play-button-box {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #ff2d55;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 45, 85, 0.4);
    cursor: pointer;
}

.play-icon {
    width: 40px;
    height: 40px;
    background: white;
    color: #ff2d55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Stats List Styling */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.stat-item:hover {
    transform: translateX(10px);
    border-color: #2563eb;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    min-width: 80px;
}

.stat-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #0b1238;
}

.stat-info p {
    margin: 0;
    color: #777;
    font-size: 14px;
}
/* Update Title for better fit with the new long heading */
.hero-title {
    font-size: 64px; /* Slightly smaller than 72px to fit "Artificial Intelligence" */
    font-weight: 900;
    line-height: 1.1;
    color: #0b1238;
}

/* Adjust Subtext for the extra paragraph content */
.hero-subtext {
    margin-top: 25px;
    font-size: 16px; /* Slightly smaller to accommodate more text */
    line-height: 1.6;
    color: #475569;
    max-width: 550px;
}

.hero-subtext p {
    margin-bottom: 12px;
}

/* Ensure the blue "Welcome" text stands out */
/*.welcome-text {*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 2px;*/
/*    font-size: 20px;*/
/*}*/

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

@media (max-width: 992px) {

    .hero-title {
        font-size: 42px;
        text-align: center;
    }

    .hero-subtext {
        text-align: center;
        margin: 20px auto;
    }

    .hero-btn {
        display: block;
        margin: 30px auto 0;
    }

    .hero-right {
        margin-top: 60px;
    }

    .floating-card {
        display: none;
    }
}




/*
About
*/


/* Approach Section Styles */
.approach-card {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s;
}

.approach-card:hover {
    transform: translateY(-10px);
    background: #2563eb;
    color: white;
}

.step-num {
    width: 40px;
    height: 40px;
    background: #ff4b2b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

.approach-card:hover .step-num {
    background: white;
    color: #2563eb;
}



/*
Contact
*/

/* Contact Page Styling */
.form-control {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background-color: #fcfcfc;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    border-color: #2563eb;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    color: #0b1238;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

.contact-info-wrapper .icon-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 12px;
    font-size: 18px;
}

/*
Internship Minor
*/

/* Text Gradient */
.text-gradient {
    background: linear-gradient(90deg, #2563eb, #ff4b2b);
    /* Standard property */
    background-clip: text;
    /* Vendor prefixes for Safari/Chrome */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-weight: 900;
    display: inline-block; /* Essential for some browsers to render the clip */
}

/* Hero Badge */
.bg-soft-blue {
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Portrait Wrapper & Blobs */
.portrait-wrapper {
    position: relative;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-blob {
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 43% 57% 70% 30% / 30% 45% 55% 70%;
    z-index: 1;
}

.accent-blob {
    position: absolute;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, #ff4b2b 0%, #dc2626 100%);
    border-radius: 50%;
    z-index: 2;
    top: 10%;
    left: 10%;
    opacity: 0.8;
}

.main-student-img {
    height: 95%;
    z-index: 3;
    position: relative;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.2));
}

/* Glassmorphism Cards */
.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
    font-weight: 700;
    font-size: 14px;
}

.card-ai-top { top: 15%; left: 0; }
.card-users-bottom { bottom: 15%; left: -5%; }
.card-growth-right { top: 50%; right: -5%; }

.icon-pulse {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.icon-pulse.red { background: #ff4b2b; }
.icon-pulse.green { background: #22c55e; }
.icon-pulse.purple { background: #8b5cf6; }

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-blob {
    0%, 100% { transform: scale(1); border-radius: 43% 57% 70% 30% / 30% 45% 55% 70%; }
    50% { transform: scale(1.05); border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%; }
}

.animated-float { animation: float 5s ease-in-out infinite; }
.animated-float-fast { animation: float 3s ease-in-out infinite; }
.animated-float-slow { animation: float 7s ease-in-out infinite; }
.animated-pulse { animation: pulse-blob 8s ease-in-out infinite; }

/* Watch Demo Button */
.btn-play-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    color: #0b1238;
    text-decoration: none;
    transition: 0.3s;
}

.btn-play-outline:hover {
    background: #0b1238;
    color: white;
    border-color: #0b1238;
}
/* ===============================
   TABULAR INTERNSHIP LAYOUT
================================ */

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.bg-navy { background-color: #0b1238; }

.intern-table {
    background: white;
}

.intern-row {
    display: flex;
    align-items: center;
    padding: 25px 40px;
    border-bottom: 1px solid #f1f5f9;
    transition: 0.3s ease;
}

.intern-row:hover {
    background: #f8fafc;
    transform: scale(1.01);
}

.intern-dept {
    flex: 0 0 180px;
    font-weight: 800;
    color: #2563eb;
    font-size: 14px;
    text-transform: uppercase;
}

.intern-info {
    flex: 1;
}

.intern-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #0b1238;
}

.intern-info p {
    margin-bottom: 0;
    color: #64748b;
    font-size: 14px;
}

.intern-action {
    flex: 0 0 120px;
    text-align: right;
}

.apply-link-btn {
    font-weight: 700;
    text-decoration: none;
    color: #0b1238;
    border-bottom: 2px solid currentColor;
    padding-bottom: 2px;
    transition: 0.3s;
}

.apply-link-btn:hover {
    letter-spacing: 1px;
}


/*
Internship Major
*/


/* Reusable Tabular Layout */
.internship-table-section {
    background-color: #f8fafc;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.intern-row {
    display: flex;
    align-items: center;
    padding: 25px 40px;
    border-bottom: 1px solid #f1f5f9;
    transition: 0.3s ease;
}

.intern-row:hover {
    background: #f8fafc;
    transform: scale(1.005);
}

.intern-dept {
    flex: 0 0 200px; /* Fixed width for the "Table Key" */
    font-weight: 800;
    color: #2563eb;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intern-info {
    flex: 1; /* Takes up remaining space */
}

.intern-info h5 {
    font-weight: 700;
    color: #0b1238;
    margin-bottom: 4px;
}

.apply-link-btn {
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid currentColor;
    padding-bottom: 2px;
}



/*
Internship Form
*/

.card{
border-radius:12px;
}

.card-header{
font-size:20px;
font-weight:600;
}

.form-control{
border-radius:8px;
padding:10px;
}

.btn-success{
border-radius:30px;
font-weight:600;
}





/* ===============================
   PRO FOOTER STYLES
================================ */

.main-footer {
    background: #0b1238; /* Matches your Navy Theme */
    padding: 80px 0 30px;
    color: #cbd5e1;
}

.footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #ff4b2b;
}

.footer-text {
    line-height: 1.8;
    color: #94a3b8;
}

/* Links List */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff4b2b;
    padding-left: 5px;
}

/* Contact List */
.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-contact i {
    color: #ff4b2b;
    margin-top: 5px;
}

/* Social Buttons */
.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    background: #ff4b2b;
    color: white;
    transform: translateY(-3px);
}

/* Newsletter Input */
.footer-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px 0 0 8px;
}

.footer-form .form-control::placeholder {
    color: #64748b;
}