@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #0056b3;
  --secondary-color: #ffffff;
  --accent-color: #003366;
  --text-color: #1a1a1a;
  --text-light: #555555;
  --bg-color: #f9fbfd;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--secondary-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

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

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

/* Typography Utility */
.text-center { text-align: center; }
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  margin-top: 0;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--secondary-color);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 70px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-color);
  padding: 10px 0;
  display: block;
}

.nav-links li a:hover {
  color: var(--primary-color);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  transform: translateY(10px);
  list-style: none;
  padding: 10px 0;
  z-index: 100;
}

.nav-links li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent-color);
}

/* Footer */
.site-footer {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-col p {
  color: #d1d5db;
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links li a {
  color: #d1d5db;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  font-size: 0.85rem;
}

/* Page Banner */
.page-banner {
  background-color: var(--bg-color);
  padding: 140px 0 60px;
  text-align: center;
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--secondary-color);
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    transition: left var(--transition-normal);
    overflow-y: auto;
  }

  .nav-links.active {
    left: 0;
  }
  
  .nav-links li:hover .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  
  .nav-links li.open .dropdown-menu {
    display: block;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Animations - Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Cards */
.card {
  background: var(--secondary-color);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 30px;
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
}

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

/* Homepage specific */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('../public/images/605257930_739048245920635_1254054173518177027_n.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding-top: 80px;
}

.hero h1 {
  color: white;
  font-size: 4rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
}
.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.hero .btn-secondary {
  color: white;
  border-color: white;
}
.hero .btn-secondary:hover {
  background-color: white;
  color: var(--accent-color);
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}


/* style.css - Sudesh Bhandari Charitable Trust */

:root {
    --primary-color: #0b4a9b; /* Royal Blue */
    --secondary-color: #ffffff;
    --text-color: #1a1a1a;
    --text-light: #555555;
    --accent-color: #08336b; /* Dark Royal Blue */
    --hover-color: #0a4087; /* Slight Dark Blue */
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --gray-bg: #f5f7fa;
    --border-color: #e0e5eb;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(11, 74, 155, 0.1);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: 200px;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: var(--hover-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 74, 155, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding: 20px 0;
}

.header.scrolled {
    background: var(--secondary-color);
    padding: 10px 0;
    box-shadow: var(--shadow-soft);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-area a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    transition: var(--transition);
    max-width: 200px;
    line-height: 1.2;
}

.header.scrolled .logo-text {
    color: var(--primary-color);
}

/* Navigation */
.nav-menu > ul {
    display: flex;
    gap: 30px;
}

.nav-menu > ul > li > a {
    color: var(--secondary-color);
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.header.scrolled .nav-menu > ul > li > a {
    color: var(--text-color);
}

.nav-menu > ul > li > a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--secondary-color);
    min-width: 220px;
    box-shadow: var(--shadow-soft);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 10px 0;
    border-top: 3px solid var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background: var(--gray-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

#lang-switch {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.header.scrolled #lang-switch {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

#lang-switch:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

.header.scrolled .mobile-menu-toggle {
    color: var(--text-color);
}

/* Page Hero */
.page-hero {
    height: 40vh;
    min-height: 300px;
    background-image: url('../480009556_495787876913341_2223387637056330905_n.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

.page-hero.home-hero {
    height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 74, 155, 0.7); /* Royal Blue overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
}

.hero-content h1 {
    color: var(--secondary-color);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.breadcrumbs {
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--secondary-color);
    opacity: 0.8;
}

.breadcrumbs a:hover {
    opacity: 1;
}

/* Main Content Styles */
.page-content {
    padding: 60px 20px;
    min-height: 40vh;
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3, .footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-col p, .footer-col ul li a {
    color: #aaa;
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #08336b;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #777;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #777;
    margin-left: 20px;
}

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

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center { text-align: center; }
.section-padding { padding: 80px 0; }
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}
.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Cards */
.card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

/* Responsive */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}


   /* Homepage specific styles */
        .home-hero .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 30px;
        }
        
        .home-hero .hero-content p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 40px;
            font-weight: 300;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        
        .hindi-slogan {
            margin-top: 40px;
            font-size: 1.8rem;
            font-family: var(--font-heading);
            font-weight: 600;
            font-style: italic;
            color: #f1c40f;
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            color: #fff;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-30px) translateX(-50%); }
            60% { transform: translateY(-15px) translateX(-50%); }
        }

        /* About Section */
        .about-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-image img {
            border-radius: 12px;
            box-shadow: var(--shadow-hover);
        }
        
        .about-content h2 {
            font-size: 2.8rem;
            color: var(--accent-color);
            margin-bottom: 25px;
        }
        
        .about-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        /* Cards Section (Vision/Mission) */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .vm-card {
            padding: 40px;
            text-align: center;
        }
        
        .vm-card .icon-wrapper {
            width: 60px;
            height: 60px;
            background: rgba(11, 74, 155, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        /* Premium Highlights */
        .highlight-section {
            background: var(--primary-color);
            color: white;
            padding: 100px 0;
            margin-top: 80px;
        }
        
        .highlight-section h2, .highlight-section h3 {
            color: white;
        }
        
        .cricket-highlight {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: center;
        }
       .cricket-img img {
    width: 500px;
    height: 500px;
    border-radius: 12px;
    border: 4px solid rgba(255, 255, 255, 0.2);
}
        
        /* Impact Counters */
        .impact-counters {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
            margin-top: 60px;
        }
        
        .counter-item {
            padding: 30px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow-soft);
        }
        
        .counter-item .number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            font-family: var(--font-heading);
            margin-bottom: 10px;
        }
        
        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            aspect-ratio: 4/3;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(11, 74, 155, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            color: white;
        }

        .about-image img {
    height: 400px
;
}

.icon h1

 {
    padding: 70px 50px;
    align-items: center;
}

/* ===========================
   RESPONSIVE DESIGN
=========================== */

/* Large Laptop */

@media (max-width:1200px){

.container{
    width:95%;
}

.hero h1{
    font-size:3.3rem;
}

.about-section{
    gap:40px;
}

.cricket-highlight{
    gap:40px;
}

}

/* Tablet */

@media (max-width:992px){

.section-padding{
    padding:60px 0;
}

.section-title{
    font-size:2rem;
}

.hero{
    min-height:auto;
    padding:150px 0 80px;
}

.hero h1{
    font-size:2.7rem;
}

.hero p{
    font-size:1rem;
}

.header-inner{
    height:75px;
}

.about-section{

    grid-template-columns:1fr;

    text-align:center;
}

.about-content{

    order:2;
}

.about-image{

    order:1;
}

.about-image img{

    height:auto;
}

.cricket-highlight{

    grid-template-columns:1fr;

    text-align:center;
}

.cricket-img{

    display:flex;

    justify-content:center;
}

.cricket-img img{

    width:100%;

    max-width:500px;

    height:auto;
}

.cards-grid{

    grid-template-columns:1fr;
}

.gallery-grid{

    grid-template-columns:repeat(2,1fr);
}

.impact-counters{

    grid-template-columns:repeat(2,1fr);
}

.footer-container{

    grid-template-columns:1fr 1fr;
}

.footer-bottom{

    flex-direction:column;

    gap:10px;

    text-align:center;
}

}

/* Mobile */

@media (max-width:768px){

.section-padding{

    padding:50px 0;
}

.section-title{

    font-size:1.8rem;
}

.section-subtitle{

    font-size:15px;
}

.hero{

    padding:120px 0 60px;
}

.hero h1{

    font-size:2rem;
}

.hero p{

    font-size:15px;
}

.hero-btns{

    flex-direction:column;

    align-items:center;
}

.hero-btns .btn{

    width:100%;

    max-width:280px;
}

.about-content h2{

    font-size:2rem;
}

.about-content p{

    font-size:15px;
}

.cricket-content h2{

    font-size:2rem !important;
}

.cricket-content h3{

    font-size:1.2rem !important;
}

.cricket-content p{

    font-size:15px !important;
}

.cricket-content ul{

    text-align:left;
}

.gallery-grid{

    grid-template-columns:1fr;
}

.cards-grid{

    grid-template-columns:1fr;
}

.impact-counters{

    grid-template-columns:1fr;
}

.footer-container{

    grid-template-columns:1fr;
}

.footer-col{

    text-align:center;
}

.footer-col h4::after{

    left:50%;

    transform:translateX(-50%);
}

.logo img{

    height:55px;
}

}

/* Small Mobile */

@media (max-width:480px){

.container{

    width:92%;
}

.hero{

    padding:110px 0 50px;
}

.hero h1{

    font-size:1.6rem;
}

.hero p{

    font-size:14px;
}

.about-content h2{

    font-size:1.7rem;
}

.section-title{

    font-size:1.6rem;
}

.btn{

    width:100%;
}

.hero-btns{

    gap:12px;
}

.cricket-img img{

    max-width:100%;
}

.about-image img{

    width:100%;
}

.gallery-item{

    aspect-ratio:1/1;
}

}