/* CSS Reset & Base Styles */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Syncopate:wght@400;700&family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #004aab;
    --secondary-color: #e9622d;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --text-color: #333333;
    --gray-color: #666666;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --font-primary: 'Syncopate', sans-serif;
    --font-secondary: 'Lexend', sans-serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 50px;
}

.greybg{
    background-color: #DADCE0 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h2{
    font-size: 36px;
}


p { margin-bottom: 1rem; 
    font-family: var(--font-secondary);

}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 10px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background: #003d91;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    background: #d44d1a;
    transform: translateY(-2px);
}

.btn-large {
    padding: 10px 25px;
    font-size: 16px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader img {
    width: 140px;
    aspect-ratio: 1;
}

/* Header */
.header {
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    margin-top: 10px;
}

.nav-menu ul {
    font-family: var(--font-secondary);
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
    
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Modern CSS with aspect-ratio property */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9; 
    overflow: hidden;
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    z-index: 1;
}

.hero-video video {
 height: 100%;
    width: 100%;
    display: flex;
    object-fit: cover;
    border: none;
    background-color: #000;
}

.heromob{
    display: none;
}




.stat {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
}

.stat p {
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Sections */
section {
    padding: 40px 0;
}





.section-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.counter-box {
    text-align: center;
    padding: 2rem;
}

.counter {
    font-size: 10rem;
    font-family: var(--font-primary);
    font-weight: bold;
    color: var(--secondary-color);
    display: block;
}

.counter-box span {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
 
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    background: var(--light-gray);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center; /* Centers all items including last row */
}

.features-grid > * {
    flex: 0 1 300px; /* Min width of 250px, can grow */
    max-width: 350px; /* Optional max width */
}


.feature-card {
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: #DADCE0;
    color: var(--light-color);
    text-align: center;
}

.cta-section h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

/* Footer */
.footer {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--light-color);
    color: var(--dark-color);
    padding: 60px 0 20px;
}



.footer-section h3 {
    color: var(--dark-color);
    font-size: 14px;
    font-family:var(--font-secondary) ;
    margin-bottom: 1.5rem;
}


.footer {
     background: var(--light-color);
    color: var(--dark-color);
    padding: 60px 0 0px;
}



.footer-content {
  display: grid;
  grid-template-columns: 1fr minmax(350px, 2fr) 1fr; 
  margin-bottom: 1.5rem;
  align-items: start;
}

/* Middle column split into 2 */
.footer-section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: .5rem;
}

.footer-section a {
    font-size: 12px;
    color: #000000;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a i{
    color: var(--primary-color)
  
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}



.footer-section .logo img{
    height: 58px;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--secondary-color);
    margin-top: 0.2rem;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: space-around;
    padding: 10px;
    z-index: 1000;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 10px;
    transition: var(--transition);
    padding: 8px;
    border-radius: var(--border-radius);
    min-width: 60px;
}

.mobile-bottom-nav .nav-item i {
    font-size: 11px;
    margin-bottom: 4px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {

    .herodesk {
        display: none !important;
    }
    .heromob{
        display: block !important;
      
    }
    .hero {
    position: relative;
    width: 100%;
    aspect-ratio: 9/12; 
    overflow: hidden;
}

    .container {
        padding: 0 15px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 0rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .header-buttons .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
    h2{
    font-size: 1.2rem;
}
p{
    font-size: 14px;
}

.contact-info{
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
}

.footer-section ul li {
    margin-bottom: 1.2rem;
}

.footer-section a {
   font-size: 12px;
}
.footer-about {
    grid-column: 1; /* Last column in a 3-column grid */
    grid-row: 4; /* Last row in a 2-row grid */
    gap: 20px;
    display: flex;

     
}

    .logo img {
        height: 40px;
    }
    .nav-wrapper{
        justify-content: space-around;
        padding-bottom: 8px;
    }
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-bottom-nav {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
 
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;

    }
    
    .header-buttons {
        gap: 0.5rem;
    }
    
    .section-content {
        text-align: center;
    }
    
    .about-content {
        text-align: center;
    }
    .footer-section-container{
    display: flex;
    gap: 80px;

}
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 35px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .header-buttons a {
    flex-direction: column;   /* icon on top, text below */
    align-items: center;      /* center align */
    text-align: center;       /* keep text centered */
    gap: 2px;     
    font-size: 8px;            /* smaller gap */
  }
      .header-buttons a i{
      
    font-size: 8px;            /* smaller gap */
  }
    .header-buttons .btn {
        padding: 7px 20px;
        font-size: 8px;
    }
    .about-title2 {
    margin-top: 25px;
    }
    .about-title {
    font-size: 18px !important;
    }

}



/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Business Page Styles */
.business-page {
    width: 100%;
    font-family: var(--font-secondary);
}



.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

/* Section Headers */
.business-section h2 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-family: var(--font-primary);
    letter-spacing: 1px;
}

.section-description {
    font-size: 15px;
    line-height: 38px;
    color: var(--gray-color);
    max-width: 1200px;
    margin: 0 auto 60px;
    text-align: center;
    font-weight: 600;
}

/* Tab Navigation */
.tab-navigation-container {
    margin: 60px 0 40px;
    display: flex;
    justify-content: center;
}

.tab-buttons-row {
    background: var(--primary-color);
    padding: 10px;
    border-radius:50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.tab-button {
    background: var(--primary-color);
    border-radius: var(--border-radius);
    border:none;
    padding: 8px 10px;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-content: center;
}

.tab-button:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.tab-button.active {
    background: var(--secondary-color);
    border:none;
    color: var(--light-color);
    box-shadow: 0 8px 25px rgba(233, 98, 45, 0.25);
}

.tab-button i {
    font-size: 0.8rem;
}

/* Tab Content */
.tab-content-container {
    margin-top: 40px;
}

.tab-content {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-header {
    text-align: center;
    margin-bottom: 50px;
}

.tab-header h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 23px !important;
    font-weight: 600;
}

.tab-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-color);
    max-width: 900px;
    margin: 0 auto;
}

/* Business Cards Grid */
.business-cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center; 
}

.business-card {
    flex: 0 0 350px; 
   padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

/* Responsive adjustments for flexbox */
@media (max-width: 768px) {
    .business-card {
        flex: 1 1 280px;
        max-width: 100%;
    }
}





.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.business-card:hover::before {
    opacity: 1;
}

/* Card Image */
.card-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.business-card:hover .card-image img {
    transform: scale(1.05);
}

.section-divider {
  position: relative;
  width: 200px;
  max-width: 600px;
  height: 1px;
  margin: 20px auto;
  background: #e74c3c; /* same as diamond */
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #e74c3c;
  transform: translate(-50%, -50%) rotate(45deg);
}


/* Card Content */
.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-family: var(--font-primary);
    line-height: 1.3;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-color);
    margin-bottom: 10px;
    flex-grow: 1;
}

/* Card Button */
.card-button {
    width: fit-content;
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 10px 22px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.55rem;
    transition: var(--transition);
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    margin: 0 auto;
}

.card-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 98, 45, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .business-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

}


@media (max-width: 1250px) {
 h2 {
    
        font-size: 20px !important;
    }

   p {
        font-size: 12px !important;
        line-height: 30px !important;
    }
    .about-text p{
        font-size: 12px !important;
    }
    .section-description{
        font-size: 12px !important;
    }
    .core-values p{
        font-size: 12px !important;
    }
    .contact-description{
        font-size: 12px !important;
    }

}
@media (max-width: 768px) {
    .business-section {
        padding: 20px 0;
    }
    .contact-title {
        font-size: 18px !important;
    }

    .contact-description {
        font-size: 0.9rem;
    }
    .contact-heading h2{
        font-size: 15px !important;
    }
    
    .tab-button {
        padding: 10px 14px;
    }
    
    .business-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    

    

}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    

    
    .section-description {
        font-size: 1rem;
    }
    
    .business-card {
        padding: 25px 20px;
    }
}

.about-title{
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    letter-spacing: 1px;
    text-align: center;
}

.about-title2{
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color) !important;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    letter-spacing: 1px;
}
.about-image2 img{
    width: 50%;
    display: block;
    margin: 0 auto;
}
.core-values{
    line-height: 25px;
    font-family: var(--font-primary);
}

.contact-title{
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color) !important;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    letter-spacing: 1px;
    text-align: center;
}

.contact-info-section{
display: flex;
justify-content: center;
align-items: center;
gap: 50px;
 flex-wrap: wrap;
}
.inner-info-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
    gap:15px;

}
.inner-info-contact i{
font-size: 40px;
color: var(--secondary-color);
}
.inner-info-contact p:first-of-type strong {
  font-family: var(--font-primary) !important;
   color: var(--primary-color) !important;
   text-align: center;
}
.inner-info-contact p {
    margin-bottom: 0 !important;
}
.inner-info-contact p:nth-of-type(2) a{
  color: gray;
text-decoration: none;
}


.map-section{

    padding: 10px;
}

.contact-image {
  max-width: 100%;   /* keeps it responsive */
  width: 400px;      /* adjust as per your design */
  height: auto;      /* maintains aspect ratio */
  margin: 0 auto;    /* centers inside text-center */
  display: block;
}

