/* FontAwesome CDN */
@import url('../src/fontawesome/css/all.css');

@font-face {
  font-family: 'Inter';
  src: url('../src/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../src/fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}



/* Color Variables */
:root {
    --primary-color: #e77919;
    --secondary-color: #ffffff;
    --tertiary-color: #333333;
}


/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

p{
    font-weight: 200;
    font-size: 1.1rem
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  position: relative;
}

/* Global Typography */
h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem ;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--tertiary-color);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
}

h5 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--tertiary-color);
    margin-bottom: 0.6rem;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--tertiary-color);
    margin-bottom: 0.5rem;
}

/* Global Styles */
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  user-select: none;
}

/* Layout */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Global Button Styles */
.btn-primary, .btn-secondary, .btn-see-more, .btn-learn-more {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    border-radius: 5px;
    transition: all 0.3s ease;
    min-height: 50px;
    max-height: 50px;
    font-weight: bold;
    color: var(--secondary-color);
}

.btn-primary, .btn-see-more, .btn-learn-more {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary{
    background: #ffffff22;;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.8px;
    /* box-shadow: 0 4px 12px rgba(231, 121, 25, 0.3); */
}

.btn-primary:hover, .btn-secondary:hover, .btn-see-more:hover, .btn-learn-more:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(231, 121, 25, 0.4);
    border-color: var(--primary-color);
}


/* .btn-secondary {
    background-color: #ffffff22;
    color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    
}

.btn-secondary:hover {
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
} */



/* Responsive Button Styles */
@media (max-width: 480px) {
    .btn-primary, .btn-secondary, .btn-see-more, .btn-learn-more {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}

/* Global Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.text-tertiary {
    color: var(--tertiary-color);
}

/* Global Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Fix for hover-lift when combined with fade-in animations */
.fade-in.animate-in.hover-lift:hover {
    transform: translateY(-5px) !important;
}

.fade-in-left.animate-left.hover-lift:hover {
    transform: translateX(0) translateY(-5px) !important;
}

.fade-in-right.animate-right.hover-lift:hover {
    transform: translateX(0) translateY(-5px) !important;
}

.fade-in-bottom.animate-bottom.hover-lift:hover {
    transform: translateY(-5px) !important;
}

/* Enhanced hover effects for animated elements */
.animate-in.hover-lift:hover,
.animate-left.hover-lift:hover,
.animate-right.hover-lift:hover,
.animate-bottom.hover-lift:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Service Point Hover Effect - Glowing Border */
.hover-glow {
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.hover-glow:hover {
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(231, 121, 25, 0.4), 
                0 0 20px rgba(231, 121, 25, 0.2);
}

/* Service Point with Top Border */
.hover-glow-top {
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.hover-glow-top:hover {
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(231, 121, 25, 0.4), 
                0 0 20px rgba(231, 121, 25, 0.2);
}

/* Combined Effects - Lift + Glow */
.hover-lift-glow {
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.hover-lift-glow:hover {
    transform: translateY(-3px);
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 35px rgba(231, 121, 25, 0.4), 
                0 5px 15px rgba(0, 0, 0, 0.1),
                0 0 20px rgba(231, 121, 25, 0.2);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-fade {
    transition: opacity 0.3s ease;
}

.hover-fade:hover {
    opacity: 0.8;
}

/* Global Card Styles */
.card {
    background-color: #ffffff22;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-solid {
    background-color: var(--secondary-color);
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-dark {
    background-color: var(--tertiary-color);
    color: var(--secondary-color);
    border: 1px solid #555;
}

/* Fallback for browsers that don't support backdrop-filter (e.g., Firefox) */
.no-backdrop-filter .card {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Global Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Transition utilities */
.transition-all {
    transition: all 0.3s ease;
}

.transition-fast {
    transition: all 0.2s ease;
}

.transition-slow {
    transition: all 0.5s ease;
}

/* Border utilities */
.border-primary {
    border-color: var(--primary-color);
}

.border-left-primary {
    border-left: 5px solid var(--primary-color);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-left.animate-left {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-right.animate-right {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-bottom.animate-bottom {
    opacity: 1;
    transform: translateY(0);
}

/* Global Section Styles */
.section-hero {
    padding: 80px 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 60vh;
}

.section-standard {
    padding: 80px 20px;
    margin: 0 auto;
}

.section-content {
    max-width: 1500px;
    margin: 0 auto;
}

/* Global Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1108px) {
        * {
        background-attachment: scroll !important;
    }
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .section-hero {
        padding: 60px 20px;
        min-height: 50vh;
    }
    
    .section-standard {
        padding: 60px 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }

    h4{
        font-size: 1.3rem;
    }
}


@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .section-hero {
        padding: 40px 15px;
        min-height: 40vh;
    }
    
    .section-standard {
        padding: 40px 15px;
    }
}

