 * {
     margin: 0px;
     padding: 0px;
     box-sizing: border-box;
 }

 body {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     background: #ffffff;
     color: #1a1a1a;
     line-height: 1.6;
     overflow-x: hidden;
 }

 ::-webkit-scrollbar {
     width: 12px;
 }

 ::-webkit-scrollbar-track {
     background: #f5f5f5;
 }

 ::-webkit-scrollbar-thumb {
     background: linear-gradient(180deg, #8c1007 0%, #a81510 100%);
     border-radius: 6px;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: linear-gradient(180deg, #6b0d05 0%, #8c1007 100%);
 }

 .fade-in {
     animation: fadeIn 0.8s ease-out;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

      /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }

            100% {
                background-position: 1000px 0;
            }
        }

        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }

        .fade-in-delay {
            animation: fadeIn 0.8s ease-out 0.2s both;
        }

        .fade-in-delay-2 {
            animation: fadeIn 0.8s ease-out 0.4s both;}
  /* Hero Section */
        .hero {
            position: relative;
            padding: 120px 24px 100px;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #8c1007 0%, #b51610 30%, #8c1007 60%, #6b0d05 100%);
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1), transparent 40%);
        }

        .hero-particles {
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 100px 100px, 150px 150px, 200px 200px;
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .college-badge {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 2.5rem;
            color: white;
            animation: float 3s ease-in-out infinite;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            letter-spacing: -0.03em;
            line-height: 1.1;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
        }

        .hero p {
            font-size: 1.375rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 800px;
            margin: 0 auto 48px;
            font-weight: 500;
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(12px);
            padding: 32px 48px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            max-width: 900px;
            margin: 0 auto;
        }
/* Form polish on small phones */
@media (max-width: 480px) {
    .form-control {
        font-size: 16px !important;
        padding: 14px 12px !important;
    }
    .form-label {
        font-size: 0.95rem;
        font-weight: 600;
    }
    .btn-danger {
        width: 100%;
        padding: 14px !important;
        font-size: 1.1rem;
    }
}

 
 /* responsiv */

 @media(max-width:1200px) {
     .contact-header h1 {
         font-size: 3.2rem;

     }

     .contact-header p {
         font-size: 20px;
     }

 }

 @media (max-width: 991px) {

     .contact-header {
         padding: 60px 20px 70px;
         min-height: auto;
         text-align: center;
     }

     .contact-header h1 {
         font-size: 2.8rem;
         line-height: 1.3;
     }

     .contact-header p {
         font-size: 18px;
         margin-bottom: 20px;
     }

     .contact-card {
         margin-bottom: 25px;
         padding: 25px;
     }

     iframe {
         height: 350px;
     }
 }

 @media (max-width: 768px) {

     .contact-header {
         padding: 50px 16px 60px;
         border-radius: 0 0 20px 20px;
     }

     .contact-header h1 {
         font-size: 2.4rem;
         margin-bottom: 10px;
     }

     .contact-header p {
         font-size: 16px;
     }

     .contact-card {
         padding: 22px;
         border-radius: 12px;
     }

     .contact-heading {
         font-size: 26px;
     }

     iframe {
         width: 100%;
         height: 300px;
     }

     .social-icons a {
         font-size: 22px;
         margin-right: 12px;
     }

     .btn-danger {
         width: 100%;
         padding: 12px;
         font-size: 1rem;
     }
 }

 @media (max-width: 576px) {

     .contact-header {
         padding: 40px 14px 50px;
     }

     .contact-header h1 {
         font-size: 2rem;
     }

     .contact-header p {
         font-size: 15px;
     }

     .contact-heading {
         font-size: 24px;
     }

     .social-icons a {
         font-size: 20px;
     }

     iframe {
         height: 260px;
     }
 }

 @media (max-width: 400px) {

     .contact-header h1 {
         font-size: 1.8rem;
     }

     .contact-header p {
         font-size: 14px;
     }

     .contact-card {
         padding: 16px;
     }

     iframe {
         height: 240px;
     }
 }




 .contact-header p {
     font-size: 25px;
 }

 .contact-section {
     padding: 60px 0;
 }

 .btn-danger {
     background-color: #8C1007;
 }

 .btn-danger:hover {
     background-color: #a15b56;
 }

 .contact-card {
     background: #ffffff;
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     padding: 25px;
     position: relative;
     border: 2px solid #e5e5e5;
     transition: all 0.35s ease-in-out;
     z-index: 1;
 }

 .contact-card:hover {
     border-color: #b51610;
     /* Maroon border */
     transform: translateY(-8px);
     background-color: white;
     box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.12);
 }

 .contact-heading {
     font-size: 32px;
     font-weight: 700;
     color: #8C1007;
     margin-bottom: 20px;
 }

 .social-icons a {
     font-size: 25px;
     margin-right: 15px;
     color: #8C1007;
     /* transition: 0.3s; */
     transition: 0.3s ease;

 }

 .social-icons a:hover {
     /* color: #000; */
     color: #b51610;

     transform: scale(1.2);
 }


 footer {
     background: #222;
     color: white;
     padding: 15px 0;
     margin-top: 50px;
     text-align: center;
 }

 iframe {
     border: none;
     border-radius: 15px;
     /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */

 }