
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Antonio:wght@100..700&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.anton-family{
    font-family: "Anton", sans-serif !important;
}
.antonio-family{
    font-family: "Antonio", sans-serif !important;
}
.redhatdisplay-family{
    font-family: "Red Hat Display", sans-serif !important;
}
body {
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Header Section */
.header-section {
    background: linear-gradient(135deg, #0a0e27 0%, #1a2456 100%);
    color: white;
    padding:  0px;
    position: relative;
    overflow: hidden;
}

.header-left {
    padding: 10px 15px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.admission-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.header-underline {
    width: 280px;
    height: 3px;
    background: white;
    margin-bottom: 20px;
    animation: expandWidth 0.8s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 280px;
    }
}

.course-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.course-row {
    display: flex;
    gap: 30px;
    align-items: center;
}

.course-item {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.course-item:nth-child(1) {
    animation-delay: 0.2s;
}

.course-item:nth-child(2) {
    animation-delay: 0.3s;
}

.course-item:nth-child(3) {
    animation-delay: 0.4s;
}

.course-item:nth-child(4) {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Header Right Section */
.header-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.header-hero {
    position: relative;
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    gap: 0px;
    top: -85px;
    flex-direction: column;
}

.hero-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    z-index : 1;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h3 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 5px;
}

.paper-plane-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 50px;
}

.paper-plane {
    position: relative;
    transform: rotate(-45deg);
}

.paper-plane i {
    font-size: 3.5rem;
    color: white;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    animation: flyPlane 2s ease-in-out infinite;
}

@keyframes flyPlane {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -10px);
    }
}

.dashed-line-down {
    width: 2px;
    height: 80px;
    background: transparent;
    border-left: 3px dashed white;
    margin-top: 10px;
}

.dashed-line-up {
    width: 2px;
    height: 60px;
    background: transparent;
    border-left: 3px dashed white;
    margin-bottom: 10px;
}

.dashed-line-down-bottom {
    width: 2px;
    height: 60px;
    background: transparent;
    border-left: 3px dashed white;
    margin-top: 10px;
}

.hero-image {
    /* position: relative; */
    z-index: 1;
    flex-shrink: 0;
}

.student-img {
    width: 350px;
    height: 353px;
    object-fit: cover;
    border-radius: 0;
    animation: fadeInScale 1s ease-out;
    position: absolute;
    top: -5%;
    left: 30%;
    z-index: 1000;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.enroll-badge {
    position: relative;
    background: white;
    padding: 15px 50px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 3;
    animation: bounceIn 1s ease-out 0.5s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 50px;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.enroll-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff8c00;
    text-transform: uppercase;
}

/* Content Section */
.content-section {
    padding: 0px;
}

/* Stats Section */
.stats-section {
    background: white;
    border-radius: 15px;
    padding: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-item {
    /* padding: 20px; */
    padding: 0px;
    width: 14%;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 500;
    color: #004aad;
    margin-bottom: 10px;
    font-family: "Anton", sans-serif;
    display: inline-block;
}
.training-stat small{
    font-family: "Anton", sans-serif;
color:#004aad;
font-weight: 500;
}
.training-stat span{
    font-size: 14px !important;
margin-left: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #a6a6a6;
    font-family: "Antonio", sans-serif;
    font-weight:800;
}
.stat-box {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 0px;
    }

    
    .donut {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        /*background: conic-gradient(#0d47a1 0% 75%, #f39c12 75% 100%);*/
        position: relative;
    }
    .donut img{
        width:100%;
    }

    /*.donut::after {*/
    /*    content: '';*/
    /*    width: 40px;*/
    /*    height: 40px;*/
    /*    background: #fff;*/
    /*    border-radius: 50%;*/
    /*    position: absolute;*/
    /*    top: 50%;*/
    /*    left: 50%;*/
    /*    transform: translate(-50%, -50%);*/
    /*}*/

    .stat-title {
        font-weight: 600;
        color: #000;
        font-family: "Antonio", sans-serif;
    }

    .stat-sub {
        color: #f39c12;
        font-weight: 500;
        font-family: "Antonio", sans-serif;
    }

    .stat-value {
        font-size: 28px;
        font-weight: 500;
        color: #0d47a1;
        line-height: 1;
         font-family: "Anton", sans-serif;
    }

/* Section Styles */
.legacy-section,
.why-section,
.training-section,
.pathway-section {
    padding: 10px;
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    color: #004aad;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: "Anton", sans-serif;
}

.section-text {
    color: #000000;
    line-height: 1.8;
    text-align: justify;
    font-family: "Red Hat Display", sans-serif;
}

/* Feature Items */
.feature-item {
    padding: 0px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #a6a6a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item:hover .feature-icon {
    transform: rotate(360deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Training Stats */
.training-stats {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.training-stat {
    padding: 20px;
}
.training-stat p{
    color:#a6a6a6;
    font-size: 21px;
}
.stat-big {
    font-size: 3rem;
    font-weight: bold;
    color: #0f3460;
}

.stat-big small {
    font-size: 1.2rem;
    color: #666;
}

/* Pathway Flow */
.pathway-flow {
    position: relative;
}

.pathway-step {
    margin-bottom: 20px;
}

.pathway-card {
    background: #dff1ff;
    border-radius: 0px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pathway-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
}

.pathway-card-blue {
    background: #1e60b8;
    color: white;
}

.pathway-icon {
    width: 70px;
    height: 70px;
    background: rgb(0, 0, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.pathway-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.pathway-card-blue .pathway-icon i {
    color: #1976d2;
}

.pathway-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.arrow-col {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0f3460;
}

/* Sticky Form */
.form-sticky-wrapper {
    position: sticky;
    top: 10px;
    padding: 10px;
}

.application-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.8s ease-out;
}

.form-title {
    color: #0f3460;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.course-selection {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
}

.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.generate-otp-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.generate-otp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Footer */
.footer-section {
    background: #1a1a2e;
    color: white;
}

/* Responsive Design */
@media (min-width: 767px) {
 .whyitrust .col-md-2{
        width:20% !important;
    }
}
@media (max-width: 991px) {
    .form-sticky-wrapper {
        position: relative;
        top: 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .arrow-col {
        display: none;
    }

    .header-right {
        margin-top: 30px;
        min-height: 250px;
    }

    .admission-title {
        font-size: 2rem;
    }

    .course-item {
        font-size: 1.3rem;
    }

    .hero-text h3 {
        font-size: 1.8rem;
    }

    .header-hero {
        flex-direction: column;
        align-items: start;
    }

    .hero-content-left {
        align-items: center;
    }

    .paper-plane-wrapper,
    .enroll-badge {
        margin-left: 0;
    }
    .header-hero{
        top: -125px;
    }
}

@media (max-width: 768px) {
    .admission-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-big {
        font-size: 2rem;
    }

    .course-item {
        font-size: 1.1rem;
    }

    .course-row {
        gap: 15px;
    }

    .student-img {
        width: 250px;
        height: 300px;
    }

    .hero-text h3 {
        font-size: 1.5rem;
    }

    .paper-plane i {
        font-size: 2.5rem;
    }

    .enroll-text {
        font-size: 1.2rem;
    }

    .dashed-line-down,
    .dashed-line-up,
    .dashed-line-down-bottom {
        height: 40px;
    }
    .stat-item img{
        /*width: 40% !important;*/
    }
    .no-border{
        border:1px solid transparent !important;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Outcome Section */
.outcome-section {
   
    padding: 40px 40px;
  
   
    animation: fadeInUp 0.6s ease-out;
}

.outcome-item {
    padding: 20px;
}

.outcome-content {
  
    padding: 30px 20px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
   }

.outcome-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #1976d2;
}

.outcome-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    min-height: 100px;
    font-family: "Red Hat Display", sans-serif;
}

.outcome-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f3460;
    margin: 0;

    font-family: "Red Hat Display", sans-serif;
}

@media (max-width: 768px) {
    .outcome-description {
        min-height: auto;
        font-size: 0.9rem;
    }
    
    .outcome-title {
        font-size: 1.1rem;
    }
}

/* Quote Section */
.quote-section {
    background: white;
    border-radius: 15px;
    padding: 50px 40px;
    
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.quote-container {
    position: relative;
    text-align: center;
    padding: 30px 20px;
}

.quote-mark-left,
.quote-mark-right {
    font-size: 5rem;
    color: #1976d2;
    
    line-height: 0.5;
    opacity: 0.3;
}

.quote-mark-left {
    position: absolute;
    top: 0;
    left: 20px;
}

.quote-mark-right {
    position: absolute;
    bottom: 0;
    right: 20px;
}

.quote-text {
    font-size: 2rem;
    font-weight: 600;
    color: #1976d2;
    font-style: italic;
    line-height: 1.5;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

/* Apply Now Section */
.apply-now-section {
   
    padding: 30px;
    
   
}

.apply-now-btn {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    border: none;
    border-radius: 10px;
    padding: 18px 60px;
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(25, 118, 210, 0.3);
}

.apply-now-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(25, 118, 210, 0.5);
}

/* Testimonial Section */
.testimonial-section {
   
    padding: 40px;
    
    
}

.testimonial-item {
    padding: 15px;
}

.testimonial-card {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(25, 118, 210, 0.4);
}

.video-placeholder {
    background: #1e60b8;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-placeholder i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.testimonial-card:hover .video-placeholder i {
    transform: scale(1.2);
    opacity: 1;
}

.testimonial-title {
    background: #1565c0;
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    font-family: "Antonio", sans-serif !important;
}
@media (max-width: 768px) {
    .stat-item {
    width: 48%;
    }
    .stat-sub {
    text-align: left;
    }
    .stat-value {
        text-align: left;
    }
    .stat-title {
    text-align: left;
    }
    .stat-box {
    margin-bottom: 15px;
    }
    
}