:root {
    --primary-color: #0056b3;
    --secondary-color: #00a8e8;
    --accent-color: #002a4d;
    --text-color: #333333;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

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

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

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

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

/* Header */
#main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-color);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
}

/* Hero Section */
#hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* About Section */
#about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.placeholder-box {
    width: 100%;
    height: 400px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    color: #adb5bd;
    font-weight: 700;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}
/* Simple pattern for placeholder */
.placeholder-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(45deg, #e9ecef 0, #e9ecef 10px, #dee2e6 10px, #dee2e6 20px);
    opacity: 0.5;
}

/* Services Section */
#services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-main); /* More technical feel */
    font-weight: 700;
}

/* Success Stories */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.story-card {
    background-color: var(--white);
    border: 1px solid #e1e4e8;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.story-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.story-content {
    padding: 40px;
}

.story-metric {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: inline-block;
    background-color: rgba(0, 86, 179, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Team Section */
#team {
    background-color: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.member-photo {
    width: 120px;
    height: 120px;
    background-color: #dee2e6;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.team-member h3 {
    margin-bottom: 5px;
    font-family: var(--font-main);
}

.role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.bio {
    font-size: 0.9rem;
    color: #666;
}

/* Testimonials */
#testimonials {
    background-color: var(--accent-color);
    color: var(--white);
    text-align: center;
}

#testimonials .section-header h2 {
    color: var(--white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial p {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.4;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.8;
}

/* Contact Section */
#contact {
    padding-bottom: 100px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 60px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.info-list {
    margin: 40px 0;
}

.info-list li {
    margin-bottom: 20px;
}

.info-list a {
    color: var(--primary-color);
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background-color: #e9ecef;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.full-width {
    width: 100%;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    :root {
        --container-width: 100%;
    }

    #hero .container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        height: 300px;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none; /* Basic mobile hide, needs JS toggle */
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    nav.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    nav.active ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}
/ *   A d d   t h e s e   s t y l e s   t o   t h e   e n d   o f   s t y l e . c s s   * /  
  
 / *   W h y   C h o o s e   U s   * /  
 # w h y - u s   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - b g - l i g h t ) ;  
 }  
  
 . w h y - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 5 0 p x ,   1 f r ) ) ;  
         g a p :   3 0 p x ;  
 }  
  
 . w h y - c a r d   {  
         b a c k g r o u n d :   v a r ( - - w h i t e ) ;  
         p a d d i n g :   3 0 p x ;  
         b o r d e r - r a d i u s :   v a r ( - - b o r d e r - r a d i u s ) ;  
         b o r d e r - l e f t :   4 p x   s o l i d   v a r ( - - s e c o n d a r y - c o l o r ) ;  
         t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ;  
 }  
  
 . w h y - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e X ( 5 p x ) ;  
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ;  
 }  
  
 . w h y - i c o n   {  
         f o n t - s i z e :   2 r e m ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
 }  
  
 . w h y - c a r d   h 4   {  
         f o n t - f a m i l y :   v a r ( - - f o n t - m a i n ) ;  
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
         m a r g i n - b o t t o m :   1 0 p x ;  
 }  
  
 / *   P r o c e s s   S e c t i o n   * /  
 # p r o c e s s   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - w h i t e ) ;  
         p o s i t i o n :   r e l a t i v e ;  
 }  
  
 . p r o c e s s - s t e p s   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 2 0 p x ,   1 f r ) ) ;  
         g a p :   3 0 p x ;  
         c o u n t e r - r e s e t :   p r o c e s s - c o u n t e r ;  
 }  
  
 . p r o c e s s - s t e p   {  
         t e x t - a l i g n :   c e n t e r ;  
         p o s i t i o n :   r e l a t i v e ;  
         p a d d i n g :   2 0 p x ;  
 }  
  
 . s t e p - n u m b e r   {  
         f o n t - s i z e :   3 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   r g b a ( 0 ,   8 6 ,   1 7 9 ,   0 . 1 ) ;  
         l i n e - h e i g h t :   1 ;  
         m a r g i n - b o t t o m :   1 0 p x ;  
         f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ;  
 }  
  
 . p r o c e s s - s t e p   h 3   {  
         f o n t - s i z e :   1 . 3 r e m ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
 }  
  
 / *   I n s i g h t s   S e c t i o n   * /  
 # i n s i g h t s   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - b g - l i g h t ) ;  
 }  
  
 . i n s i g h t s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ;  
         g a p :   3 0 p x ;  
 }  
  
 . i n s i g h t - c a r d   {  
         b a c k g r o u n d :   v a r ( - - w h i t e ) ;  
         p a d d i n g :   3 0 p x ;  
         b o r d e r - r a d i u s :   v a r ( - - b o r d e r - r a d i u s ) ;  
         b o x - s h a d o w :   0   3 p x   1 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 3 ) ;  
         t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ;  
         d i s p l a y :   f l e x ;  
         f l e x - d i r e c t i o n :   c o l u m n ;  
 }  
  
 . i n s i g h t - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;  
         b o x - s h a d o w :   0   1 0 p x   2 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ;  
 }  
  
 . i n s i g h t - d a t e   {  
         f o n t - s i z e :   0 . 8 5 r e m ;  
         c o l o r :   # 8 8 8 ;  
         m a r g i n - b o t t o m :   1 0 p x ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         l e t t e r - s p a c i n g :   1 p x ;  
 }  
  
 . i n s i g h t - c a r d   h 3   {  
         f o n t - s i z e :   1 . 2 r e m ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
         f o n t - f a m i l y :   v a r ( - - f o n t - m a i n ) ;  
         l i n e - h e i g h t :   1 . 4 ;  
 }  
  
 . i n s i g h t - c a r d   p   {  
         f l e x - g r o w :   1 ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
         c o l o r :   # 6 6 6 ;  
 }  
  
 . r e a d - m o r e - l i n k   {  
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ;  
         f o n t - w e i g h t :   6 0 0 ;  
         f o n t - s i z e :   0 . 9 r e m ;  
 }  
  
 / *   F A Q   S e c t i o n   * /  
 # f a q   {  
         b a c k g r o u n d - c o l o r :   v a r ( - - w h i t e ) ;  
 }  
  
 . f a q - c o n t a i n e r   {  
         m a x - w i d t h :   8 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
 }  
  
 . f a q - i t e m   {  
         b o r d e r - b o t t o m :   1 p x   s o l i d   # e 9 e c e f ;  
         p a d d i n g :   3 0 p x   0 ;  
 }  
  
 . f a q - i t e m : l a s t - c h i l d   {  
         b o r d e r - b o t t o m :   n o n e ;  
 }  
  
 . f a q - i t e m   h 3   {  
         f o n t - s i z e :   1 . 3 r e m ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
         c o l o r :   v a r ( - - a c c e n t - c o l o r ) ;  
         f o n t - f a m i l y :   v a r ( - - f o n t - m a i n ) ;  
 }  
  
 . f a q - i t e m   p   {  
         c o l o r :   # 6 6 6 ;  
 }  
  
 / *   M a p   O v e r r i d e   * /  
 . m a p - p l a c e h o l d e r   {  
         o v e r f l o w :   h i d d e n ;   / *   E n s u r e   S V G   d o e s n ' t   s p i l l   * /  
         b o r d e r :   1 p x   s o l i d   # d e e 2 e 6 ;  
 }  
  
 / *   U p d a t e   m o b i l e   n a v   z - i n d e x   t o   b e   h i g h e r   t h a n   s t i c k y   h e a d e r s   i f   a n y   * /  
 # m a i n - h e a d e r   {  
         z - i n d e x :   1 0 0 0 ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . w h y - g r i d ,   . p r o c e s s - s t e p s ,   . i n s i g h t s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
          
         . w h y - c a r d   {  
                 b o r d e r - l e f t :   n o n e ;  
                 b o r d e r - t o p :   4 p x   s o l i d   v a r ( - - s e c o n d a r y - c o l o r ) ;  
         }  
 }  
 