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

:root {
    --primary-red: #e21e26;
    --dark-bg:#102447;
    --light-text: #ffffff;
    --gray-text: #a0aec0;
    --nav-bg: #102447;
    --card-bg: #212f45; /* Slightly lighter navy for cards */
    --card-border: rgba(255, 255, 255, 0.05);
}


@font-face {
    font-family: 'Montserrat-Regular';
    src: url(../fonts/Montserrat-Regular.otf) format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat-Bold';
    src: url(../fonts/Montserrat-Bold.otf) format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat-Black';
    src: url(../fonts/Montserrat-Black.otf) format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url(../fonts/Montserrat-SemiBold.otf) format('opentype');
    font-weight: 900;
    font-style: normal;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.container {
    max-width: 1200px;
    margin: 40px;
    margin-top: -17px;
    margin-left: 85px;
}

/* Navbar Styles */
.navbar {
    background-color: var(--nav-bg);
    padding: 0 0;
    position: relative;
    width: 100%;
    height: 88px;
    top: -2px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .container {
      display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0px;
    gap: 20%;
    padding-left: 67px;

}

.logo {
    display: flex;
    align-items: center;
    gap: 0px;

}

.logo img {
    height: 86px;
    width: auto;
}
.logo-text {
    
    font-size: 1.03rem;
    line-height: 1.4;
    font-family: 'Montserrat-SemiBold', sans-serif;
}

.logo-text span {
      display: block;
    font-size: 9px;
    color: var(--gray-text);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 28px
}

nav ul li a {
    text-decoration: none;
    color: var(--light-text);
    font-size: 13px;
    transition: 0.3s;
}

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

.btn-red-sm {
    background-color: var(--primary-red);
    color: white;
    padding: 12px 18px;
    text-decoration: none;
    border-radius: 4px;
    margin-left: 20px;
}
/* Hero Section */
/* Hero Section Fix */
.hero {
    min-height: 108vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 20px; 
    /* Added center/cover and fixed semicolon */
    background: url('../images/pg1-background.avif') no-repeat center center/cover;
    
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0; /* Added to ensure full width */
    bottom: 0; /* Added to ensure full height */
    /* Adjusting opacity: 0.9 might be too dark to see the image. Try 0.8 */
 
}

.hero-content {
    position: relative;
    z-index: 2; /* Keeps text above the overlay */
}

.badge {
    
    display: inline-flex;
    align-items: center;
    background-color: rgba(230, 35, 43, 0.08);
    border: 1px solid rgba(230, 35, 43, 0.3);
    box-shadow: inset 0 0 12px 2px rgba(230, 35, 43, 0.2);
    padding: 9px 17px;
    border-radius: 50px;
    margin-bottom: 36px;
    color: var(--primary-red);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

}

.dot {
    height: 6px;
    width: 6px;
    background-color: var(--primary-red);
    border-radius: 50%;
    margin-right: 5px;
    /* Optional: Small outer glow for the dot itself */
    box-shadow: 0 0 8px rgba(230, 35, 43, 0.6);
}
h1 {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    font-family: 'Montserrat-SemiBold', sans-serif;

}

.text-red {
    color: var(--primary-red);
}

.hero p {
    font-size: 1.4rem;
    color: var(--gray-text);
    max-width: 600px;
    margin-bottom: 34px;
}

/* Buttons */
.btn-red {
    background-color: var(--primary-red);
    color: white;
    padding: 16px 37px;
    text-decoration: none;
    font-weight: 200;
    border-radius: 4px;
    margin-right: 15px;
    display: inline-block;
    font-size: 14px;
}

.btn-red-sm {
    background-color: var(--primary-red);
    color: white;
    
    padding: 8px 17px;
    text-decoration: none;
    border-radius: 4px;
}

.btn-outline {
    border: 1px solidrgba(22, 32, 65, 0.07);
    color: white;
       padding: 17px 28px;
    text-decoration: none;
    font-weight: 200;
    border-radius: 4px;
    background: rgb(50 53 62 / 95%);
    font-size: 14px;
}
.hero-contact {   
    margin-top: 42px;
    display: flex;
    align-items: center; /* Vertically centers icon with text */
    gap: 12px;           /* Space between icon and text group */
}

.hero-contact i {
    color: var(--primary-red);
    font-size: 16px;
}

.contact-text {
    display: flex;
    align-items: center; /* Keeps label and number on the same line */
    gap: 8px;           /* Space between label and number */
}

.contact-text .label {
    color: var(--gray-text); /* The grey color you requested */
    font-size: 11px;         /* Smaller font size */
    font-weight: 200;
    letter-spacing: 0.5px;
}

.contact-text .number {
    color: #ffffff;          /* Pure white */
    font-size: 13px;        
}


/* pAGE 02 */

/* Services Section Container */
.services-section {
    background-color: var(--dark-bg);
}
.pg2-container {
    max-width: 1200px;
    margin: 75px;
    margin-top: -18px;
    margin-left: 85px;
}

.page2-img img{
    height: 50px;
    width: 50px;
}

.section-intro {
    text-align: center;
    margin-bottom: 28px;
    margin-left: 43px;
}

.badge-center {
    margin-top: 69px;
    font-size: 10px;
    padding: 9px;
}

.section-intro h2 {
    margin-top: -33px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat-SemiBold', sans-serif;
}

.section-intro p {
    color: var(--gray-text);
    max-width: 720px;
    margin: 3px auto;
    font-size: 1.05rem;
    line-height: 1.2;
    font-family: 'montserrat-regular', sans-serif;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-left: 23px;
    column-gap: 31px;
    row-gap: 21px;
}

/* Card Individual Style */
.service-card {
   
   
    background-color: #162948;
    border: 1.6px solid var(--card-border);
    padding: 22px;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 102%;
    width: 103%;
}


.service-icon {
     color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 13px;
    height: 50px;
    width: 50px;
    border-radius: 6px;
    background-color: rgba(230, 35, 43, 0.1);
    display: flex;
   
    justify-content: center;
    align-items: center;
}


.service-card h3 {
    font-size: 1.0rem;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.service-card p {
    color: var(--gray-text);
    font-size: 0.78rem;
    line-height: 1.6;
    margin-bottom: 13px;
    max-width: 80%;
}

.service-card a{
    font-size: 12px;
}
.service-link {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.service-link:hover {
    gap: 12px; /* Moves the arrow slightly on hover */
}




/* Page 03 */

.trust-section {
    background-color: var(--dark-bg);
    margin: 50px;
}
.pg3-container {
    max-width: 1200px;
    margin: 20px;
    margin-top: -18px;
    margin-left: 85px;
}

.pg3-section-intro {
    text-align: center;
    margin-bottom: 28px;
    MARGIN: 0.6%;
    MARGIN-LEFT: 0px;
    margin-top: -40px;
}


.pg3-section-intro h2 {
    margin-top: -25px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    font-family: 'Montserrat-SemiBold', sans-serif;
}

.pg3-section-intro p{
    
    color: var(--gray-text);
    max-width: 48%;
    margin: 1% 26.6%;
    font-size: 1.05rem;
    line-height: 1.2;
    font-family: 'montserrat-regular', sans-serif;
}
/* Grid Layout: 3 Columns */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 35px 22px;
    margin-top: 2.8%;
    margin-left: -4px;
}

.trust-item {
    display: flex;
    align-items: flex-start; /* Aligns icon box with the first line of text */
    gap: 20px;
}

/* The Smaller Red Icon Box */
.page3-img img{
    
    width: 32px;
    height: 40px;
    background-color: rgba(226, 30, 38, 0.1);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-red);
    font-size: 18px;
    flex-shrink: 0; /* Prevents box from squishing */
}

.trust-content h4 {
    font-size: 1.1rem;
    font-weight:unset;
    margin-bottom: 8px;
    color: #ffffff;
}

.trust-content p {
    font-size: 0.8rem;
    color: var(--gray-text);
    line-height: 1.5;
}
.text-dot {
    display: inline-block;
    width: 10px;   /* Small size like a period */
    height: 10px;
    background-color: white;
    border-radius: 50%; /* Makes it a circle */
    margin-right: 10px;    /* Spacing between the words */
    position: relative;
    top: 13px; /* Slight adjustment to center it with capital letters */
}






/* PAGE 04*/

.pg4-container{
   max-width: 1200px;
    margin: 20px;
    margin-top: 13.5%;
    margin-left: -5%;
    MARGIN-RIGHT: 4%;
}

.pg4-badge{
    
    display: inline-flex;
    align-items: center;
    background-color: rgba(230, 35, 43, 0.08);
    border: 1px solid rgba(230, 35, 43, 0.3);
    box-shadow: inset 0 0 12px 2px rgba(230, 35, 43, 0.2);
    padding: 10px 12px;
    border-radius: 50px;
    margin-bottom: 22px;
    color: var(--primary-red);
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
/* Excellence Section Styling */
.excellence-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.excellence-content{
    margin-left: 132px;
    margin-top: 0px;
}
.excellence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal two-column split */
    gap: 20px;
    align-items: center;
}

.excellence-content h2 {
    
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 15px;
    color: #ffffff;
    max-width: 90%;
    font-family: 'Montserrat-semibold';
    
    margin-left: 2px;
    
    margin-top: -6px;
    letter-spacing: 0.2px;
}

.excellence-content p {
    color: var(--gray-text);
    font-size: 1.14rem;
    line-height: 1.2;
    margin-bottom: 10px;
    max-width: 520px;
}

.excellence-content .btn-red {

    
}

/* Image Styling */
.excellence-image img {
    width: 100%;
    height: auto;
    border-radius: 12px; /* Matches the rounded look in the screenshot */
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.pg4-btn-red {
   background-color: var(--primary-red);
    color: white;
    padding: 15px 23px;
    text-decoration: none;
    font-weight: 200;
    border-radius: 4px;
    display: inline-block;
    font-size: 15px;
}

/* PAGE 05 */

/* Case Studies Section */

.pg5-container {
    
    max-width: 1200px;
    margin: 20px;
    margin-top: 6.5%;
    margin-left: 6%;

}
.section-header h2{
    font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
    margin-top: -21px;
    margin-left: 0px;
    letter-spacing: 0.5px;
    font-family: 'montserrat-semiBold', sans-serif;
}
.bg5-badge{
    margin-bottom: 2px;
}
.section-header p{
    
    color: var(--gray-text);
    font-size: 1.14rem;
    line-height: 0.2;
    max-width: 500px;
    margin: 23px auto;

}

.center {
    text-align: center;
    margin-bottom: 60px;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -21px;
}

/* Card Styling */
.case-card {
    background: #242535;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.3s ease;
}


.book-container {
    text-align: center;
    margin-bottom: 10px;
    margin-left: 10px;
}

.book-img {
    max-width: 180px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.category-badge.red {
     color: #ff3b30;
    font-size: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    border: 1px solid rgba(255, 59, 48, 0.3);
    padding: 3px 3px;
    border-radius: 4px;
}

.location {
    color: white;
    font-size: 0.5rem;
    font-weight: 600;
}

.case-card h3 { 
    font-size: 0.7rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: 'montserrat-regular', sans-serif;
    margin-left: 7px;
    margin-top: -3px;
}

.case-card p {
    color: #8a8f98;
    font-size: 0.6rem;
    margin-bottom: 15px;
    margin-top: 12px;
    margin-left: 6px;
    line-height: 13px;
}

/* Checklist Styles */
.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 8px;
}

.check-list li {
    color: #8a8f98;
    font-size: 0.6rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    line-height: 13px;
    letter-spacing: 0.5px;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #ff3b30;
    font-weight: bold;
}

.read-more {
    color: #ff3b30;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    
    margin-left: 7px;
}





/* Page 06 */

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #050a14; /* Slightly darker than previous section */
}

.pg6-badge{
    margin-top: 4%;
    padding: 9px 7px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: -22px;
    row-gap: 8px;
    column-gap: 6px;
    margin-left: -8px;
}

.section-header h2 {
 font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;

}
.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    background-color: #0d1a31;
}

.quote-icon {
    margin-bottom: 15px;
    opacity: 0.4;
}

.testimonial-text {
    font-family: 'montserrat-regular', sans-serif;
    font-size: 0.89rem;
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 27px;
    margin-left: 5px;
    margin-top: -7px;

}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 59, 48, 0.2);
}

.author-info h4 {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 2px;
        margin-left: -6px;
    margin-top: -1px;
}

.author-info p {
    color: #8a8f98;
    font-size: 0.8rem;
    margin-bottom: 2px;
    margin-left: -4px;
}

.author-info span {
    color: #5a5f68;
    font-size: 0.6rem;
    
    margin-left: -5px;
}

.pg6-section-header h2{
    margin-top: -27px;

}

.pg6-section-header p{
        margin: -2px auto;
}




/* Page 07 */
.page7-container{
    max-width: 1200px;
    margin: 40px;
    padding: 0 20px;
    margin-top: 50px;
}
.cta-banner-section{
    height: 100vh;
    display: flex;
    background-color: #001b32;
}
/* Updated Red CTA Banner */
.cta-card {
    background-color: #bc0010 !important;
    border-radius: 20px;
    text-align: center;
    height: 64vh;
    width: 102%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    margin-left: 10px;
}

.cta-card h2 {    
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 60%;
    font-family: 'Montserrat-SemiBold', sans-serif;
    margin-top: -7px;
    letter-spacing: 0.2px;
}

.cta-card p{    
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 33px;
    max-width: 45%;
    opacity: 0.8;
    margin-left: 0px;
    letter-spacing: 0.2px;
    margin-top: -2px;
}

/* Fix the button to be white-outlined instead of red-bordered */
.btn-outline {

    padding: 17px 16px    
}


/* Page 08 */

/* Footer Styling */

.pg8-container {
    max-width: 1200px;
    margin: 40px;
    padding: 0 20px;
    margin-top: 50px;
}
.site-footer {
    background-color: var(--dark-bg);
    padding: 0 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #8a8f98;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    font-weight: 100;
    font-size: 0.9rem;
    margin-bottom: 25px;

}

.footer-col ul {
    list-style: none;
    
    padding: 0;
    font-size: 0.8rem;
    color: var(--gray-text);
}

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

.footer-col ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ff3b30;
}

/* Brand Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
   
}
.footer-logo img {
    height: 30px;
    width: auto;
}
.logo-text strong {
    display: block;
    color: #ffffff;
    
    font-size: 1rem;
    font-weight: 100;
}

.brand-col p {   
     font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 20px;
    width: 70%;
    color: var(--gray-text);
}

.certified-tag {
    color: var(--gray-text);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Contact Column */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: #ff3b30;
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 100;
}
.cn-inf {
    color: var(--gray-text);
    font-size: 0.75rem;
    line-height: 1.4;
}
/* Bottom Bar */
.footer-bottom {
   /* Vertical padding on both top and bottom ensures text sits in the middle */
    padding: 10px 0; 
    border: 2px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    /* This is the key to vertical centering in the box */
    align-items: center;
    }

.footer-bottom p{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-content: center;
}
.footer-legal {
   display: flex;
    gap: 20px;
    /* Ensures the links also stay vertically centered */
    align-items: center;
}
.footer-legal a {
    color: #8a8f98;
    text-decoration: none;
}

