/*=========================================================
CONTACT HERO
=========================================================*/

.contact-hero{

position:relative;

min-height:100vh;

display:flex;

align-items:center;

overflow:hidden;

background:linear-gradient(135deg,#0b1f4d,#213166,#0d6efd);

color:#fff;

}

/* Floating Shapes */

.shape{

position:absolute;

border-radius:50%;

background:rgba(255,255,255,.08);

animation:float 8s infinite ease-in-out;

}

.shape1{

width:250px;

height:250px;

top:-80px;

left:-80px;

}

.shape2{

width:180px;

height:180px;

bottom:50px;

right:100px;

animation-delay:2s;

}

.shape3{

width:120px;

height:120px;

top:30%;

right:-40px;

animation-delay:4s;

}

.shape4{

width:90px;

height:90px;

bottom:-20px;

left:40%;

animation-delay:1s;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(25px);

}

100%{

transform:translateY(0);

}

}

.hero-tag{

display:inline-block;

padding:10px 24px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(10px);

border-radius:50px;

font-weight:600;

}

.hero-title{

font-size:58px;

font-weight:800;

line-height:1.2;

}

.hero-title span{

color:#FFD54F;

}

.hero-description{

font-size:18px;

line-height:1.9;

margin-top:25px;

opacity:.9;

max-width:650px;

}

/* Buttons */

.hero-buttons .btn{

border-radius:50px;

padding:15px 35px;

font-weight:600;

transition:.4s;

}

.hero-buttons .btn:hover{

transform:translateY(-5px);

}

/* Hero Card */

.hero-card{

background:rgba(255,255,255,.12);

backdrop-filter:blur(20px);

padding:45px;

border-radius:25px;

border:1px solid rgba(255,255,255,.15);

box-shadow:0 20px 50px rgba(0,0,0,.2);

}

.hero-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

background:#FFD54F;

color:#213166;

display:flex;

justify-content:center;

align-items:center;

font-size:36px;

margin-bottom:25px;

}

.hero-card h3{

font-weight:700;

margin-bottom:20px;

}

.hero-card p{

margin-bottom:12px;

}

/* Breadcrumb */

.breadcrumb{

background:none;

padding:0;

}

.breadcrumb a{

color:#fff;

text-decoration:none;

}

.breadcrumb-item.active{

color:#FFD54F;

}

/* Scroll Down */

.scroll-down{

position:absolute;

bottom:30px;

left:50%;

transform:translateX(-50%);

width:55px;

height:55px;

background:#FFD54F;

color:#213166;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

font-size:22px;

animation:bounce 2s infinite;

text-decoration:none;

}

@keyframes bounce{

0%,100%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,-12px);

}

}

/* Responsive */

@media(max-width:991px){

.hero-title{

font-size:42px;

}

.hero-card{

margin-top:40px;

}

}

@media(max-width:768px){

.contact-hero{

padding:100px 0;

}

.hero-title{

font-size:34px;

}

.hero-description{

font-size:16px;

}

.hero-buttons .btn{

display:block;

margin-bottom:15px;

width:100%;

}

}
/*=========================================================
CONTACT INFORMATION
=========================================================*/

.contact-info-section{

background:#f8fbff;

padding:90px 0;

}

.section-badge{

display:inline-block;

padding:10px 28px;

background:#213166;

color:#fff;

border-radius:50px;

font-weight:600;

}

.section-title{

font-size:48px;

font-weight:800;

color:#213166;

}

.section-title span{

color:#FFC107;

}

.section-description{

max-width:700px;

margin:auto;

color:#666;

margin-top:20px;

line-height:1.8;

}

/* Card */

.contact-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

text-align:center;

height:100%;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

position:relative;

overflow:hidden;

}

.contact-card::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:5px;

background:linear-gradient(90deg,#213166,#FFC107);

transition:.5s;

}

.contact-card:hover::before{

left:0;

}

.contact-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(0,0,0,.15);

}

/* Icon */

.contact-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

margin-bottom:25px;

transition:.4s;

}

.contact-card:hover .contact-icon{

transform:rotateY(360deg);

}

/* Title */

.contact-card h4{

font-size:24px;

font-weight:700;

color:#213166;

margin-bottom:15px;

}

/* Text */

.contact-card p{

color:#666;

line-height:1.8;

margin-bottom:25px;

}

/* Link */

.contact-link{

display:inline-block;

padding:12px 30px;

border-radius:50px;

background:#213166;

color:#fff;

text-decoration:none;

font-weight:600;

transition:.4s;

}

.contact-link:hover{

background:#FFC107;

color:#213166;

}

/* Responsive */

@media(max-width:768px){

.section-title{

font-size:34px;

}

.contact-card{

padding:30px 20px;

}

.contact-icon{

width:75px;

height:75px;

font-size:28px;

}

}
/*=========================================================
CONTACT FORM
=========================================================*/

.contact-form-section{

background:#ffffff;

padding:100px 0;

}

/*=========================
MAP CARD
==========================*/

.map-card{

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:0 20px 60px rgba(0,0,0,.08);

height:100%;

}

.map-header{

padding:35px;

background:linear-gradient(135deg,#213166,#0d6efd);

color:#fff;

}

.map-header h3{

font-weight:700;

margin-bottom:15px;

}

.map-container iframe{

width:100%;

height:420px;

border:none;

}

.map-footer{

padding:25px;

text-align:center;

background:#f8f9fa;

}

/*=========================
FORM CARD
==========================*/

.contact-form-card{

background:#fff;

padding:50px;

border-radius:25px;

box-shadow:0 20px 60px rgba(0,0,0,.08);

height:100%;

}

.form-badge{

display:inline-block;

background:#213166;

color:#fff;

padding:8px 22px;

border-radius:30px;

font-weight:600;

margin-bottom:20px;

}

.contact-form-card h2{

font-weight:800;

color:#213166;

margin-bottom:30px;

}

/*=========================
INPUTS
==========================*/

.contact-form-card label{

font-weight:600;

margin-bottom:8px;

color:#213166;

}

.form-control,

.form-select{

height:58px;

border-radius:14px;

border:1px solid #dcdcdc;

padding:15px;

font-size:15px;

transition:.35s;

box-shadow:none;

}

textarea.form-control{

height:auto;

resize:none;

}

.form-control:focus,

.form-select:focus{

border-color:#213166;

box-shadow:0 0 0 .2rem rgba(33,49,102,.12);

}

/*=========================
BUTTON
==========================*/

.submit-btn{

background:#213166;

color:#fff;

padding:16px 45px;

border-radius:50px;

font-weight:600;

font-size:17px;

transition:.35s;

border:none;

}

.submit-btn:hover{

background:#FFC107;

color:#213166;

transform:translateY(-4px);

box-shadow:0 15px 35px rgba(255,193,7,.35);

}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.contact-form-card{

padding:35px;

}

.map-container iframe{

height:350px;

}

}

@media(max-width:768px){

.contact-form-card{

padding:25px;

}

.submit-btn{

width:100%;

}

}
/*=========================================================
DEPARTMENT DIRECTORY
=========================================================*/

.department-section{

padding:100px 0;

background:#f7f9fc;

}

/* Card */

.dept-card{

background:#fff;

padding:35px;

border-radius:22px;

height:100%;

text-align:center;

box-shadow:0 20px 50px rgba(0,0,0,.08);

transition:.4s;

position:relative;

overflow:hidden;

}

.dept-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#213166,#FFC107);

transform:scaleX(0);

transform-origin:left;

transition:.4s;

}

.dept-card:hover::before{

transform:scaleX(1);

}

.dept-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 70px rgba(0,0,0,.15);

}

/* Icon */

.dept-icon{

width:90px;

height:90px;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

margin-bottom:25px;

transition:.5s;

}

.dept-card:hover .dept-icon{

transform:rotateY(360deg);

}

/* Colors */

.admission{

background:#0d6efd;

}

.principal{

background:#198754;

}

.placement{

background:#ffc107;

color:#213166;

}

.exam{

background:#dc3545;

}

.accounts{

background:#6f42c1;

}

.help{

background:#20c997;

}

/* Title */

.dept-card h4{

font-size:24px;

font-weight:700;

color:#213166;

margin-bottom:15px;

}

/* Description */

.dept-card p{

color:#666;

line-height:1.8;

margin-bottom:20px;

}

/* List */

.dept-card ul{

list-style:none;

padding:0;

margin-bottom:25px;

}

.dept-card ul li{

padding:10px 0;

font-size:15px;

color:#555;

border-bottom:1px dashed #ddd;

}

.dept-card ul li i{

color:#213166;

margin-right:8px;

}

/* Button */

.dept-btn{

display:inline-block;

padding:12px 32px;

border-radius:50px;

background:#213166;

color:#fff;

font-weight:600;

text-decoration:none;

transition:.4s;

}

.dept-btn:hover{

background:#FFC107;

color:#213166;

transform:translateY(-3px);

}

/* Responsive */

@media(max-width:768px){

.dept-card{

padding:25px;

}

.dept-card h4{

font-size:20px;

}

}
/*=========================================================
FAQ
=========================================================*/

.faq-section{

padding:100px 0;

background:#fff;

}

.custom-accordion .accordion-item{

border:none;

margin-bottom:20px;

border-radius:15px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.custom-accordion .accordion-button{

font-weight:600;

padding:22px;

font-size:18px;

background:#fff;

}

.custom-accordion .accordion-button:not(.collapsed){

background:#213166;

color:#fff;

}

.custom-accordion .accordion-body{

padding:25px;

line-height:1.8;

color:#666;

}

/*=========================================================
SOCIAL
=========================================================*/

.social-section{

background:#f7f9fc;

padding:80px 0;

}

.social-icons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.social-icons a{

width:70px;

height:70px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:28px;

color:#fff;

transition:.4s;

text-decoration:none;

}

.social-icons a:hover{

transform:translateY(-10px) rotate(10deg);

}

.facebook{

background:#1877F2;

}

.instagram{

background:#E4405F;

}

.youtube{

background:#FF0000;

}

.linkedin{

background:#0A66C2;

}

.whatsapp{

background:#25D366;

}

/*=========================================================
CTA
=========================================================*/

.contact-cta{

padding:90px 0;

background:linear-gradient(135deg,#213166,#0d6efd);

color:#fff;

position:relative;

overflow:hidden;

}

.contact-cta::before{

content:"";

position:absolute;

width:350px;

height:350px;

background:rgba(255,255,255,.08);

border-radius:50%;

top:-150px;

right:-120px;

}

.contact-cta h2{

font-size:42px;

font-weight:800;

margin-bottom:20px;

}

.contact-cta p{

font-size:18px;

opacity:.9;

}

.contact-cta .btn{

padding:15px 35px;

border-radius:50px;

font-weight:600;

margin:8px;

transition:.4s;

}

.contact-cta .btn:hover{

transform:translateY(-5px);

box-shadow:0 20px 40px rgba(0,0,0,.25);

}

@media(max-width:768px){

.contact-cta{

text-align:center;

}

.contact-cta h2{

font-size:32px;

}

.social-icons a{

width:60px;

height:60px;

font-size:22px;

}

}