*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    /* background-color: #000000; */
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000000;
    z-index: 1000;
    padding: 12px 0px;
}
.navbar-expand-lg .navbar-nav{
    align-items: anchor-center;
}

p{
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
}

/* --- Modern Nav Link Animation (Text Lift & Dot) --- */
.navbar-nav .nav-item .nav-link {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}



.navbar-nav .nav-item .nav-link:not(.contact-hd):hover {
    color: #ed3b3b !important;

    letter-spacing: 2px; /* Slightly spreads the letters */
}


.navbar-nav .dropdown-menu{
    overflow: hidden;
}

/* --- Contact Button Animation (Glass Shimmer Sweep) --- */
.navbar-nav .nav-item .nav-link.contact-hd {
    padding: 10px 30px;
    background: #ed3b3b;
    border-radius: 40px;
    position: relative;
    overflow: hidden; /* Clips the shimmer effect */
    transition: all 0.3s ease;
    border: 1px solid #ed3b3b;
    z-index: 1;
}

/* The Shimmer Light */
.navbar-nav .nav-item .nav-link.contact-hd::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: all 0.6s ease;
    z-index: -1;
}

.navbar-nav .nav-item .nav-link.contact-hd:hover {
    background: #d92828; /* Slightly darker purple */
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(237, 59, 59, 0.4);
}

/* Moves the shimmer across the button on hover */
.navbar-nav .nav-item .nav-link.contact-hd:hover::before {
    left: 100%;
}
.navbar-nav .nav-item{
    margin-left: 40px;
}


.tagline{
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 3.5px;
    text-align: center;
    display: block;
    margin-bottom: 14px;
}

.h1{
    color: #ffffff;
    font-size: 60px;
    text-align: center;
    line-height: 62px;
    font-weight: 900;
}

/* --- Brand Logo Styling --- */
.brand-logo {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 6px;
}
.logo{
    width: 35px;
    height: 35px;
    background: red;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
/* .brand-logo i {
    font-size: 2.5rem;
    color: #ed3b3b;
    margin-right: 12px;
} */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.main-title {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
}
.sub-title {
    font-size: 10px;
    letter-spacing: 4px;
    color: #ed3b3b;
    margin-top: 4px;
}

/* --- Hero Slider --- */
.hero-section {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
.slide-item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.slider-content h6 {
    font-size: 14px;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: #ffffff;
}
.slider-content h1 {
    font-size: 70px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}
.slider-content h1 span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}
.btn-main {
    padding: 12px 35px;
    background: #ed3b3b;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-block;
}
.btn-main:hover {
    background: #fff;
    color: #ed3b3b;
}

/* --- Animation Classes --- */
.animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* When Slick adds the .slick-active class, trigger animation */
.slick-active .animate-text {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for text elements */
.slick-active h6 { transition-delay: 0.3s; }
.slick-active h1 { transition-delay: 0.6s; }
.slick-active .slider-btns { transition-delay: 0.9s; }

.slick-prev, .slick-next{
    z-index: 1;
    width: 60px;
    height: 60px;
    background: #ff000033 !important;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.slick-prev:hover, .slick-next:hover{
    background: #000000 !important;

}
.slick-prev{
    left: 20px;
}
.slick-next{
    right: 20px;
}

.movebtn i{
    font-size: 20px !important;
    color: #ffffff;
    
}

.slick-prev:before, .slick-next:before{
    content: unset;
}

.about-img-frame {
    position: relative;
    padding: 0px 20px 20px;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #000000;
    border: 1px solid #ffffff5d;
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}
.experience-badge p{
    font-size: 12px;
    color: #ffffff;
}


.btn{
    background-color: #ed3b3b;
    color: #ffffff;
    padding: 8px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.btn:hover {
    background: #000000;
    color: #ffffff;
}

/*  */


/* --- Course Section Styling --- */
.letter-spacing-2 {
    letter-spacing: 2px;
}

.course-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(237, 59, 59, 0.15);
}

.course-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.course-card:hover .course-img img {
    transform: scale(1.1);
}

.course-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.course-content {
    padding: 25px;
}

.course-content h4 {
    margin-bottom: 15px;
    font-size: 22px;
    transition: color 0.3s ease;
}

.course-card:hover h4 {
    color: #ed3b3b;
}

.btn-link {
    color: #ed3b3b;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #000;
    padding-left: 5px;
}

.bg-light {
    background-color: #f8f9fa !important;
}


/* --- Stats Section --- */
.stats-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), 
                url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4?q=80&w=2070&auto=format&fit=crop');
    background-attachment: fixed; /* Parallax Effect */
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.stat-item i {
    font-size: 3rem;
    color: #ed3b3b;
    display: block;
}

.stat-item h2 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 5px;
}

/* Adding the "+" suffix to numbers */
.stat-item h2::after {
    content: '+';
    color: #ed3b3b;
    font-size: 30px;
    margin-left: 2px;
}

.stat-item p {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cccccc;
}

/* --- Register CTA Section --- */
.register-cta {
    background-color: #ed3b3b; /* Your theme red */
    position: relative;
    overflow: hidden;
}

/* Optional background decoration for style */
.register-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.register-cta .container {
    position: relative;
    z-index: 1;
}

.opacity-90 {
    opacity: 0.9;
}

/* White Button Styling */
.btn-white-register {
    background-color: #ffffff;
    color: #ed3b3b;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white-register:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* --- Gallery Section --- */
#gallery a {
    text-decoration: none; /* Remove any link styling */
    display: block;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 280px; 
    cursor: pointer;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(237, 59, 59, 0.7); /* Red transparent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    color: #ed3b3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transform: scale(0.5);
    transition: all 0.4s ease;
}
.gallery-icon i{
    padding-top: 3px;
}

/* Hover Effects */
.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
    opacity: 0.6;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* --- Blog Section Styling --- */
.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    bottom: 0;
    left: 20px;
    background: #ed3b3b;
    color: #fff;
    padding: 5px 15px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 5px 5px 0 0;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    font-size: 12px;
    color: #ed3b3b;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
     display: -webkit-box;
  -webkit-line-clamp: 2;   /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-title a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.blog-card:hover .blog-title a {
    color: #ed3b3b;
}

.blog-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
     display: -webkit-box;
  -webkit-line-clamp: 2;   /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
}

.read-more:hover {
    color: #ed3b3b;
}

.read-more i {
    font-size: 14px;
    vertical-align: middle;
    margin-left: 5px;
    transition: 0.3s;
}

.read-more:hover i {
    margin-left: 10px;
}

/* --- Testimonial Section (No Box Style) --- */
.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    padding: 20px 0;
    outline: none; /* Removes focus border from Slick */
}

.quote-icon {
    font-size: 60px;
    color: #ed3b3b;
    opacity: 0.3;
    display: block;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.student-info h5 {
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.student-info span {
    letter-spacing: 2px;
}

/* Customizing Slick Dots for Testimonial */
.testimonial-slider .slick-dots {
    bottom: -40px;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 12px;
    color: #ccc;
    opacity: 1;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: #ed3b3b;
}

/* --- Full Background Contact Section --- */
.contact-full-bg {
    
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    position: relative;
}

/* Icon Box for details on left */
.icon-box {
    width: 50px;
    height: 50px;
    background: #ed3b3b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

/* The Form Card on the right */
.contact-form-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contact-form-card h3 {
    color: #000;
}

/* Form Input Styling */
.contact-form-card .form-control, 
.contact-form-card .form-select {
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 14px;
}

.contact-form-card .form-control:focus {
    border-color: #ed3b3b;
    box-shadow: none;
    background: #fff;
}

/* --- Small Footer Styling --- */
.footer-small {
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.copyright-text {
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #aaaaaa;
}

.footer-links li a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 13px;
    margin: 0 10px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #ed3b3b;
}

.social-icons a {
    color: #ffffff;
    font-size: 18px;
    margin-left: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #ed3b3b;
    transform: translateY(-3px);
}

/*about us*/
/* --- Inner Hero Header --- */
.inner-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.breadcrumb-item a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: #ed3b3b;
}

/* --- Info Cards (Mission/Vision) --- */
.info-card {
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: #ed3b3b;
}

/* --- Teacher Cards --- */
.teacher-img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid #f8f9fa;
    transition: all 0.3s ease;
}

.teacher-card:hover .teacher-img {
    border-color: #ed3b3b;
    transform: scale(1.05);
}

.teacher-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- General Utilities --- */
.letter-spacing-2 {
    letter-spacing: 2px;
}

/* --- Dropdown General Styling --- */
.navbar-nav .nav-item.dropdown {
    position: relative;
}

/* Style the dropdown menu box */
.dropdown-menu {
    background-color: #000000;
    border: 1px solid #ed3b3b; /* Red border to match theme */
    border-radius: 10px;
    padding: 0;
    margin-top: 15px !important; /* Spacing from navbar */
    box-shadow: 0 10px 30px rgba(237, 59, 59, 0.2);
}

/* Style individual dropdown links */
.dropdown-item {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Hover effect for dropdown items */
.dropdown-item:hover {
    background-color: #ed3b3b;
    color: #ffffff !important;
    padding-left: 25px; /* Slight slide effect on hover */
}

/* Divider color */
.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Remove the default Bootstrap arrow (optional) */
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    color: #ed3b3b; /* Red arrow */
}

/* --- Service Hero Header --- */
.service-hero {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

/* --- Service Detail UI Elements --- */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.service-list li i {
    color: #ed3b3b;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Sidebar Styling */
.service-sidebar {
    border-top: 4px solid #ed3b3b;
}

/* Custom Accordion */
.custom-accordion .accordion-button {
    font-weight: 700;
    color: #000;
    background: #fff;
    border: none;
    box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #ed3b3b;
    background-color: #fef1f1;
}

.custom-accordion .accordion-item {
    border: 1px solid #eee;
    border-radius: 10px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

/* Helper Class for Text Animations */
.animate-text {
    animation: fadeInUp 1s ease both;
}

/* --- Event Card Horizontal --- */
.event-card-horizontal {
    display: flex;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
    transition: 0.3s;
}

.event-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(237, 59, 59, 0.1);
}

.event-date-box {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ed3b3b;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    min-width: 65px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(237, 59, 59, 0.3);
}

.event-date-box .day {
    display: block;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.event-date-box .month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-img {
    width: 40%;
    min-height: 250px;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-body {
    width: 60%;
    padding: 30px;
}

.event-desc {
    font-size: 14px;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Past Event Cards --- */
.past-event-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.past-img img {
    transition: 0.5s;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.past-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, #ed3b3b);
    padding: 20px;
    color: #fff;
    transition: 0.4s;
}

.past-event-card:hover .past-overlay {
    bottom: 0;
}

.past-event-card:hover .past-img img {
    transform: scale(1.1);
}


/* --- Video Gallery Styles --- */
.video-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.video-thumb-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 230px;
}

.video-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #ed3b3b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 2;
    transition: 0.3s;
    box-shadow: 0 0 0 0 rgba(237, 59, 59, 0.5);
    animation: pulse-red 2s infinite;
}

.video-card:hover .play-button {
    background: #000;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card:hover .video-thumb-wrapper img {
    transform: scale(1.1);
}

.video-details {
    border: 1px solid #eee;
    border-top: none;
}

/* Pulsing Animation */
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(237, 59, 59, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(237, 59, 59, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(237, 59, 59, 0);
    }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .event-card-horizontal {
        flex-direction: column;
    }
    .event-img, .event-body {
        width: 100%;
    }
    .event-img {
        min-height: 200px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Hover to Open Dropdown (Desktop Only) --- */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
}

/* Fix for the "Dot" animation on Dropdown toggle */
.navbar-nav .nav-item.dropdown .nav-link.show::after {
    opacity: 1;
    bottom: -10px;
}


/* --- Contact Page Styles --- */

.contact-icon {
    width: 50px;
    height: 50px;
    background: #fef1f1;
    color: #ed3b3b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
}

.contact-methods .d-flex:hover .contact-icon {
    background: #ed3b3b;
    color: #fff;
    transform: rotate(15deg);
}

.contact-form-wrapper {
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.contact-form-wrapper .form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.contact-form-wrapper .form-control:focus {
    border-color: #ed3b3b;
    box-shadow: 0 0 0 0.2rem rgba(237, 59, 59, 0.1);
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: #eee;
    color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 10px;
    transition: 0.3s;
    font-size: 18px;
}
.social-links-contact a i{
    padding-top: 3px;
}

.social-links-contact a:hover {
    background: #ed3b3b;
    color: #fff;
    transform: translateY(-5px);
}

.map-section {
    line-height: 0;
    filter: grayscale(100%) invert(90%) contrast(90%); /* Modern grayscale map effect */
    transition: filter 0.5s ease;
}

.map-section:hover {
    filter: grayscale(0%);
}


/* --- Privacy Policy Page --- */

.policy-nav li a {
    transition: all 0.3s ease;
    display: block;
}

.policy-nav li a:hover {
    color: #ed3b3b !important;
    padding-left: 5px;
}

.policy-text-block h3 {
    font-size: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.policy-text-block p, .policy-text-block li {
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

/* Smooth Scrolling for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Adjusting breadcrumb for dark hero */
.breadcrumb-item.active {
    color: #ed3b3b !important;
}

/* --- Sticky Sidebar Responsive --- */
@media (max-width: 991px) {
    .policy-text-block h3 {
        font-size: 20px;
    }
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .inner-hero { padding: 120px 0 60px; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-icons a {
        margin: 0 10px;
    }
}

/* Responsiveness */
@media (max-width: 991px) {
    .contact-full-bg {
        padding: 60px 0;
    }
    .contact-form-card {
        padding: 30px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-text {
        font-size: 18px;
    }
    .quote-icon {
        font-size: 40px;
    }
}



/* Mobile adjustments */
@media (max-width: 991px) {
    .register-cta {
        text-align: center;
    }
}

/* Responsive fix for stats */
@media (max-width: 768px) {
    .stat-item h2 { font-size: 30px; }
    .stat-item i { font-size: 2rem; }
}


