/* ====================================
   Sri Vishwabharathi Group of Institution
   Custom Stylesheet - Traditional College Look
   ==================================== */

/* CSS Variables */
:root {
    --primary-color: #003366;
    --primary-dark: #002244;
    --secondary-color: #0066cc;
    --accent-color: #ff9900;
    --accent-dark: #e68a00;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Poppins', Arial, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ====================================
   Top Bar
   ==================================== */
.top-bar {
    background: var(--primary-dark);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    color: var(--accent-color);
    margin-right: 6px;
}

.top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.social-links a {
    color: #fff;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-right: 5px;
    font-size: 12px;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #fff;
}

.top-phone {
    color: #fff;
    font-weight: 600;
}

.top-phone i {
    color: var(--accent-color);
}

/* ====================================
   Header
   ==================================== */
.main-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;
    width: auto;
    background: var(--primary-color);
    padding: 8px;
    border-radius: 8px;
}

.brand-text h1 {
    font-size: 20px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.brand-text span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 18px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.btn-enroll {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    margin-left: 20px;
}

.btn-enroll:hover {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,153,0,0.4);
}

/* ====================================
   Hero Section
   ==================================== */
.hero-section {
    position: relative;
}

.hero-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,51,102,0.9) 0%, rgba(0,102,204,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h2 span {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--accent-color);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #fff;
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Hero Slider Controls */
.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.hero-slider .owl-nav button {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2) !important;
    border-radius: 50%;
    color: #fff !important;
    font-size: 20px !important;
    transition: var(--transition);
}

.hero-slider .owl-nav button:hover {
    background: var(--accent-color) !important;
}

.hero-slider .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.hero-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
}

.hero-slider .owl-dot.active span {
    background: var(--accent-color);
    width: 30px;
    border-radius: 20px;
}

/* ====================================
   Stats Section
   ==================================== */
.stats-section {
    background: var(--primary-color);
    padding: 40px 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    border-radius: 20px;
    margin-left: 5%;
    margin-right: 5%;
}

.stat-box {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--accent-color);
}

.stat-box h3 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 700;
}

.stat-box p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====================================
   Section Styles
   ==================================== */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 50px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.section-header .section-subtitle {
    padding-left: 0;
}

.section-header .section-subtitle::before {
    display: none;
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ====================================
   About Section
   ==================================== */
.about-images {
    position: relative;
}

.about-images .main-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-color);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge .years {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-badge .number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.about-content {
    padding-left: 30px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item i {
    color: var(--success-color);
    font-size: 18px;
}

/* ====================================
   Course Cards
   ==================================== */
.course-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.course-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.course-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.course-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.course-meta {
    margin-bottom: 15px;
}

.course-meta span {
    font-size: 13px;
    color: var(--secondary-color);
}

.course-meta i {
    margin-right: 5px;
}

.course-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.course-link:hover {
    color: var(--accent-color);
}

.course-link i {
    transition: var(--transition);
}

.course-link:hover i {
    transform: translateX(5px);
}

/* ====================================
   Director Section
   ==================================== */
.director-section {
    background: linear-gradient(135deg, var(--bg-light) 50%, var(--bg-white) 50%);
}

.director-image {
    position: relative;
}

.director-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.director-info {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.director-info h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.director-info span {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
}

.director-content {
    padding-left: 30px;
}

.quote-icon {
    color: var(--accent-color);
    font-size: 40px;
    opacity: 0.3;
    margin-bottom: 10px;
}

.director-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.director-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.director-signature strong {
    display: block;
    font-size: 18px;
    color: var(--primary-color);
}

.director-signature span {
    font-size: 14px;
    color: var(--text-muted);
}

/* ====================================
   Why Choose Us
   ==================================== */
.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.why-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: #fff;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
}

.why-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.why-card h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.why-card p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* ====================================
   Placement Section
   ==================================== */
.logo-box {
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.logo-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* ====================================
   Facilities Section
   ==================================== */
.facility-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}

.facility-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.facility-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ====================================
   Testimonials Section
   ==================================== */
.testimonial-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin: 10px;
    border: 1px solid var(--border-color);
}

.testimonial-content {
    margin-bottom: 20px;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stars i {
    margin-right: 3px;
}

.testimonial-content p {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 16px;
    margin-bottom: 3px;
    font-family: var(--font-body);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ====================================
   Approvals Section
   ==================================== */
.approval-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.approval-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.approval-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-color);
}

.approval-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
}

.approval-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}

/* ====================================
   CTA Section
   ==================================== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    padding: 60px 0;
}

.cta-content h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin: 0;
}

.btn-white {
    background: #fff;
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white:hover {
    background: var(--primary-color);
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
}

/* ====================================
   Footer
   ==================================== */
.main-footer {
    background: var(--primary-dark);
    color: #fff;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 10px;
}

.footer-logo h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 0;
}

.footer-logo span {
    color: var(--accent-color);
    font-size: 13px;
}

.footer-widget p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
}

.footer-widget h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ====================================
   WhatsApp Float
   ==================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: rgba(37,211,102,0.3);
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0; }
}

/* ====================================
   Back to Top
   ==================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    color: #fff;
}

/* ====================================
   Responsive Styles
   ==================================== */
@media (max-width: 991px) {
    .top-bar .top-info,
    .top-bar .top-right {
        justify-content: center;
        text-align: center;
    }
    
    .navbar-brand {
        gap: 8px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .brand-text h1 {
        font-size: 16px;
    }
    
    .btn-enroll {
        margin: 15px 0;
        display: block;
        text-align: center;
    }
    
    .hero-slide {
        height: 500px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .stats-section {
        margin-left: 15px;
        margin-right: 15px;
        margin-top: -50px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-content,
    .director-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .experience-badge {
        right: 20px;
        bottom: 20px;
    }
    
    .director-info {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 20px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-content .btn {
        margin: 5px;
    }
}

@media (max-width: 767px) {
    .top-info span {
        display: block;
        margin-bottom: 5px;
    }
    
    .hero-slide {
        height: 450px;
    }
    
    .hero-content h2 {
        font-size: 26px;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-section {
        border-radius: 15px;
    }
    
    .stat-box h3 {
        font-size: 28px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .brand-text {
        display: none;
    }
    
    .logo-img {
        height: 45px;
    }
}
