/*******************************/
/********* General CSS *********/
/*******************************/
:root {
    --primary: #4F84C4;
    --secondary: #00539C;
    --dark: #213546;
    --light: #f8f9fa;
    --gray: #6c757d;
    --border: #e9ecef;
    --white: #ffffff;
    --section-padding: 60px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--dark);
    background: var(--white);
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

a:hover,
a:active,
a:focus {
    color: var(--secondary);
    outline: none;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 992px) {
    .container-fluid {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1200px) {
    .container-fluid {
        padding-left: 3%;
        padding-right: 3%;
    }
}

@media (min-width: 1600px) {
    .container-fluid {
        padding-left: 5%;
        padding-right: 5%;
        max-width: 1920px;
        margin: 0 auto;
    }
}

section {
    padding: var(--section-padding) 0;
}

section:nth-child(even) {
    background-color: var(--light);
}

section:nth-child(odd) {
    background-color: var(--white);
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

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

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

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    padding: 12px 25px;
    font-weight: 500;
    border-radius: 30px;
    transition: .5s;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--secondary), var(--primary));
}

.section-title {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--primary);
}

/*******************************/
/******** Branding CSS ********/
/*******************************/
.header .brand {
    position: relative;
}

.header .brand a {
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.header .brand img {
    width: 100%;
    max-width: 150px;
    height: 100%;
    max-height: 70px;
    transition: all 0.3s ease;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-fallback {
    padding: 10px 15px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.logo-fallback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
}

.logo-text-primary {
    font-size: 24px;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 2px;
    position: relative;
    z-index: 2;
}

.logo-text-secondary {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .header .brand img {
        max-width: 130px;
        max-height: 65px;
    }
    
    .logo-text-primary {
        font-size: 20px;
    }
    
    .logo-text-secondary {
        font-size: 9px;
    }
}


/*******************************/
/********** Header CSS *********/
/*******************************/
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .header .container-fluid {
        max-width: 1400px;
        margin: 0 auto;
    }
}

.header .topbar {
    position: relative;
    text-align: right;
    margin-bottom: 5px;
}

.header .topbar .topbar-col {
    display: inline-block;
    padding: 0 15px;
    margin-bottom: 10px;
}

.header .topbar-col a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
}

.header .topbar-col a i {
    margin-right: 8px;
    color: var(--primary);
}

.header .topbar-hours {
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
}

.header .topbar-hours i {
    margin-right: 8px;
    color: var(--primary);
}

.header .topbar-social {
    position: relative;
}

.header .topbar-social a {
    display: inline-block;
}

.header .topbar-social a i {
    margin-right: 10px;
    font-size: 18px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.header .topbar-social a:last-child i {
    margin: 0;
}

.header .topbar-social a:hover i {
    color: var(--primary);
}

.header .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header .dropdown-menu a.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .header .navbar {
        background: var(--white) !important;
        border-radius: 50px;
        padding: 0 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        margin-top: 10px;
    }
    
    .header .navbar-brand {
        display: none;
    }
    
    .header .navbar-light a.nav-link {
        position: relative;
        padding: 18px 20px;
        color: var(--dark);
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
        border-radius: 50px;
        margin: 0 2px;
    }
    
    .header .navbar-light a.nav-link:hover,
    .header .navbar-light a.nav-link.active {
        color: var(--primary);
        background-color: rgba(79, 132, 196, 0.08);
    }
    
    .header .navbar-light a.nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 10px;
        left: 50%;
        background: var(--primary);
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }
    
    .header .navbar-light a.nav-link:hover::after,
    .header .navbar-light a.nav-link.active::after {
        width: 30px;
    }
}

@media (max-width: 992px) {
    .header .brand {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .header .topbar {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .header .topbar .topbar-col {
        margin: 0;
    }
    
    .header .topbar .topbar-social {
        margin-top: 5px;
    }
    
    .header .navbar {
        background: var(--white) !important;
        border: 1px solid var(--border);
        border-radius: 10px;
        z-index: 1;
        padding: 15px 20px;
    }
    
    .header a.nav-link {
        padding: 12px 15px;
        border-radius: 5px;
        margin: 2px 0;
    }
    
    .header .dropdown-menu {
        box-shadow: none;
    }
}

.header .navbar .btn {
    position: relative;
    margin-left: 15px;
    padding: 12px 25px 10px 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: .5s;
    box-shadow: 0 4px 10px rgba(79, 132, 196, 0.2);
}

.header .navbar .btn:hover {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.header .navbar .btn i {
    font-size: 16px;
    margin-right: 8px;
}

@media (max-width: 992px) {
    .header .navbar .btn {
        margin: 15px 0 10px 0;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to right, #00539C, #4F84C4 50%);
}

.page-header h2 {
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    top: 6.5px;
    right: -6px;
    border-radius: 7px;
    background: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}


/*******************************/
/*********** Hero CSS **********/
/*******************************/
.hero {
    position: relative;
    width: 100%;
    padding: 80px 0 40px;
    overflow: hidden;
    background-color: var(--white);
    background-image: url('../img/Oliver-Images/15.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 83, 156, 0.9), rgba(79, 132, 196, 0.8));
    z-index: 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
}

@media (min-width: 992px) {
    .hero {
        padding: 160px 0 100px;
    }
    
    .hero .container-fluid {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.hero-content {
    position: relative;
    padding-left: 15px;
    z-index: 1;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    height: 85%;
    width: 3px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 15px;
    margin-bottom: 20px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-title {
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    color: white;
}

.hero-title .text-gradient {
    display: block;
    margin-top: 5px;
    font-size: 90%;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
}

.hero-description {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    max-width: 90%;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 18px;
        max-width: 80%;
    }
}

.hero a.btn {
    position: relative;
    margin-top: 10px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary);
    border: none;
    border-radius: 30px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.hero a.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: 0.5s;
    z-index: -1;
}

.hero a.btn:hover::before {
    left: 100%;
}

.hero a.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: white;
}

.hero a.btn i {
    color: var(--primary);
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    z-index: -1;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.hero-image {
    position: relative;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: all 0.5s ease;
    border: 5px solid rgba(255, 255, 255, 0.2);
}

.hero-image.animate-float {
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .hero-image {
        margin-top: 40px;
    }
    
    .hero::before, 
    .hero::after {
        opacity: 0.5;
    }
}

@media (max-width: 767px) {
    .hero-image {
        margin-top: 30px;
        margin-bottom: 0;
    }
    
    .hero .col-lg-6 {
        text-align: center;
    }
    
    .hero-content {
        padding-left: 0;
    }
    
    .hero-content::before {
        display: none;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* For scroll reveal animations */
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal {
    visibility: hidden;
}


/*******************************/
/********* Section Header ******/
/*******************************/
.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.section-header::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    border-radius: 3px;
}

.section-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 34px;
    }
}

.section-header p {
    margin: 10px 0 0 0;
    font-size: 16px;
    color: var(--gray);
}

@media (min-width: 768px) {
    .section-header p {
        font-size: 18px;
    }
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
}

.service .service-item {
    position: relative;
    padding: 25px;
    margin-bottom: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service .service-item:hover {
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service .service-item i {
    margin-bottom: 20px;
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.service .service-item h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .service .service-item h3 {
        font-size: 22px;
    }
}

.service .service-item p {
    margin: 0;
    font-size: 16px;
    color: var(--gray);
}

.service .video-player {
    position: relative;
    padding-bottom: 41.7%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #ffffff;
    margin: 30px 0 0 0;
    border-radius: 8px;
}

.service .video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #000000;
    z-index: -1;
}

.service .video-player img {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    border: none;
    height: auto;
    border-radius: 8px;
    filter: opacity(75%);
    -webkit-filter: opacity(75%);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
    z-index: 1;
}

.service .video-player:hover img {
    filter: opacity(100%);
    -webkit-filter: opacity(100%);
}

.service .video-player .play {
    height: 100px;
    width: 100px;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    position: absolute;
    background: url("../img/play.png") no-repeat;
    cursor: pointer;
    z-index: 2;
}

.service .video-player .play:hover {
    background: url("../img/play-hover.png") no-repeat;
}

@media (max-width: 575.98px) {   
    .service .video-player .play {
        height: 60px;
        width: 60px;
        left: 50%;
        top: 50%;
        margin-left: -30px;
        margin-top: -30px;
        background: url("../img/play-60.png") no-repeat;
    }
    
    .service .video-player .play:hover {
        background: url("../img/play-hover-60.png") no-repeat;
    }
}


/*******************************/
/******* Service Row CSS *******/
/*******************************/
.service-row {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.service-row .service-row-img {
    position: relative;
    width: 100%;
    padding: 0 30px;
    overflow: hidden;
}

.service-row .service-row-img img {
    max-width: 100%;
}

@media(max-width: 767.98px) {
    .service-row .service-row-img {
        margin-bottom: 30px;
    }
}

.service-row .service-row-text {
    position: relative;
    width: 100%;
    padding: 0 30px;
}

.service-row h2.section-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.service-row h2.section-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #4F84C4, #00539C, #4F84C4);
    border-radius: 0 100% 100% 0; 
}

.service-row p {
    font-size: 16px;
}

.service-row a.btn {
    margin-top: 15px;
    padding: 10px 35px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    background: linear-gradient(#4F84C4, #00539C);
    transition: .5s;
}

.service-row a.btn:hover {
    background: linear-gradient(#00539C, #4F84C4);
}

.service-row .service-row-col .col-sm-6 {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 15px;
}

.service-row .service-row-col-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    padding: 8px 0;
    text-align: center;
    color: #ffffff;
    background: #4F84C4;
}

.service-row .service-row-col-text {
    width: calc(100% - 55px);
}

.service-row .service-row-col-text h3 {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 3px;
}

.service-row .service-row-col-text p {
    margin: 0;
    font-size: 10px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .service-row .service-row-img,
    .service-row .service-row-text {
        padding: 0;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
}

.about .row {
    align-items: center;
}

.about h2.section-title {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .about h2.section-title {
        font-size: 28px;
    }
}

.about h2.section-title::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--primary);
}

.about p {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
}

.about a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: all 0.3s ease;
}

.about a.btn:hover {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

@media(max-width: 991px) {
    .about-image {
        margin-bottom: 30px;
    }
    
    .about .row:nth-child(even) .col-lg-6:first-child {
        order: 2;
    }
    
    .about .row:nth-child(even) .col-lg-6:last-child {
        order: 1;
        margin-bottom: 30px;
    }
}

.service-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.service-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    font-size: 16px;
    color: var(--gray);
}

.service-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary);
}

.about .youtube-player {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #ffffff;
    margin: 0;
    border-radius: 0 30px 30px 0;
}

@media (max-width: 991.98px) {
    .about .youtube-player {
        padding-bottom: 50%;
    }
}

@media (max-width: 767.98px) {
    .about .youtube-player {
        padding-bottom: 56.23%;
        margin-bottom: 30px;
        border-radius: 30px 30px 0 0;
    }
}

.about .youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
}

.about .youtube-player img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-filter: brightness(100%);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}

.about .youtube-player img:hover {
    -webkit-filter: brightness(90%);
}

.about .youtube-player .play {
    height: 100px;
    width: 100px;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    position: absolute;
    background: url("../img/play.png") no-repeat;
    cursor: pointer;
}

.about .youtube-player .play:hover {
    background: url("../img/play-hover.png") no-repeat;
}

@media (max-width: 575.98px) {   
    .about .youtube-player .play {
        height: 60px;
        width: 60px;
        left: 50%;
        top: 50%;
        margin-left: -30px;
        margin-top: -30px;
        background: url("../img/play-60.png") no-repeat;
    }
    
    .about .youtube-player .play:hover {
        background: url("../img/play-hover-60.png") no-repeat;
    }
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
}

.faqs .row {
    align-items: center;
}

.faqs h2.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
}

.faqs h2.section-title::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--primary);
}

.faqs .accordion {
    padding: 15px 0;
}

.faqs .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faqs .accordion-item:last-child {
    margin-bottom: 0;
}

.faqs .accordion-header {
    margin: 0;
}

.faqs .accordion-button {
    padding: 20px 25px;
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    border: none;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.faqs .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(79, 132, 196, 0.05);
    box-shadow: none;
}

.faqs .accordion-button:focus {
    box-shadow: none;
}

.faqs .accordion-button::after {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    background-image: none;
    font-size: 16px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faqs .accordion-button:not(.collapsed)::after {
    content: '\f068';
    transform: rotate(0deg);
    color: var(--primary);
}

.faqs .accordion-body {
    padding: 0 25px 20px;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

.faqs a.btn {
    position: relative;
    margin-top: 30px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: all 0.3s ease;
}

.faqs a.btn:hover {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faqs img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
    .faqs img {
        margin-top: 30px;
    }
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
    text-align: center;
}

.testimonial .container {
    max-width: 960px;
}

.about-page .testimonial {
    padding-bottom: 90px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    transition: .5s;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: 1;
    transform: scale(1.3);
}

.testimonial .testimonial-slider-nav .slick-center {
    transform: scale(2);
    z-index: 1;
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 37px;
    width: 100%;
    height: auto;
    border-radius: 100px;
}

.testimonial .testimonial-slider-nav .slick-center img {
    border: 5px solid #ffffff;
}

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 15px;
    padding-top: 50px;
}

.testimonial .testimonial-slider::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 50px;
    top: 0;
    left: calc(50% - 30px);
    background: url(../img/quote.png) top center no-repeat;
}

.testimonial .testimonial-slider h3 {
    font-size: 20px;
    font-weight: 700;
}

.testimonial .testimonial-slider h4 {
    font-size: 14px;
}

.testimonial .testimonial-slider p {
    font-size: 18px;
    font-style: italic;
    margin: 0;
}


/*******************************/
/*********** News CSS **********/
/*******************************/
.news {
    position: relative;
    width: 100%;
    padding: 45px 0 60px 0;
}

@media (min-width: 768px) {
    .news .container-fluid {
        padding: 0;
    }
    
    .news .row {
        margin: 0;
    }
    
    .news .col-md-6:first-child {
        padding: 0;
    }
    
    .news .col-md-6:last-child {
        padding: 0 60px;
    }
}

.news h2.section-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.news h2.section-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #4F84C4, #00539C, #4F84C4);
    border-radius: 0 100% 100% 0; 
}

.news p {
    font-size: 16px;
    margin-bottom: 30px;
}

.news a.btn {
    padding: 10px 35px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    background: linear-gradient(#4F84C4, #00539C);
    transition: .5s;
}

.news a.btn:hover {
    background: linear-gradient(#00539C, #4F84C4);
}

.news img {
    max-width: 100%;
    border-radius: 0 30px 30px 0;
}

@media (max-width: 767.98px) {
    .news img {
        margin-bottom: 30px;
        border-radius: 30px 30px 0 0;
    }
}


/*******************************/
/******* Call to Action ********/
/*******************************/
.call-to-action {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(to right, #00539C, #4F84C4 50%);
}

.service-page .call-to-action {
    margin-top: 45px;
}

.call-to-action h2 {
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
}

.call-to-action p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.call-to-action a {
    float: right;
    padding: 10px 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2c3035;
    background: #ffffff;
    border-radius: 30px;
}

@media (max-width: 768px) {
    .call-to-action a {
        float: left;
        margin-top: 30px;
    }
}


/*******************************/
/********** Story CSS **********/
/*******************************/
.story {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

@media(min-width: 768px) {
    .story {
        padding: 45px 60px 15px 60px;
    }
}

.story .story-container {
    position: relative;
    width: 100%;
}

.story .story-end,
.story .story-start,
.story .story-year {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.story .story-end p,
.story .story-start p,
.story .story-year p {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin: 0;
    padding: 30px 0;
    text-align: center;
    background: linear-gradient(#4F84C4, #00539C);
    border-radius: 100px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .4);
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
}

.story .story-year {
    margin: 30px 0;
}

.story .story-continue {
    position: relative;
    width: 100%;
    padding: 60px 0;
}

.story .story-continue::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -1px;
    background: #4F84C4;
}

.story .row.story-left,
.story .row.story-right .story-date {
    text-align: right;
}

.story .row.story-right,
.story .row.story-left .story-date {
    text-align: left;
}

.story .story-date {
    font-size: 14px;
    font-weight: 600;
    margin: 41px 0 0 0;
}

.story .story-date::after {
    content: '';
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    top: 45px;
    background: linear-gradient(#4F84C4, #00539C);
    box-shadow: 0 0 5px rgba(0, 0, 0, .4);
    border-radius: 15px;
    z-index: 1;
}

.story .row.story-left .story-date::after {
    left: -7px;
}

.story .row.story-right .story-date::after {
    right: -7px;
}

.story .story-box,
.story .story-launch {
    position: relative;
    display: inline-block;
    margin: 15px;
    padding: 20px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    background: #ffffff;
}

.story .story-launch {
    width: 100%;
    margin: 15px 0;
    padding: 0;
    border: none;
    text-align: center;
    background: transparent;
}

.story .story-box::after,
.story .story-box::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.story .row.story-left .story-box::after,
.story .row.story-left .story-box::before {
    left: 100%;
}

.story .row.story-right .story-box::after,
.story .row.story-right .story-box::before {
    right: 100%;
}

.story .story-launch .story-box::after,
.story .story-launch .story-box::before {
    left: 50%;
    margin-left: -10px;
}

.story .story-box::after {
    top: 26px;
    border-color: transparent transparent transparent #ffffff;
    border-width: 10px;
}

.story .story-box::before {
    top: 25px;
    border-color: transparent transparent transparent #dddddd;
    border-width: 11px;
}

.story .row.story-right .story-box::after {
    border-color: transparent #ffffff transparent transparent;
}

.story .row.story-right .story-box::before {
    border-color: transparent #dddddd transparent transparent;
}

.story .story-launch .story-box::after {
    top: -20px;
    border-color: transparent transparent #dddddd transparent;
}

.story .story-launch .story-box::before {
    top: -19px;
    border-color: transparent transparent #ffffff transparent;
    border-width: 10px;
    z-index: 1;
}

.story .story-box .story-icon {
    position: relative;
    width: 40px;
    height: auto;
    float: left;
}

.story .story-icon i {
    font-size: 25px;
    color: #4F84C4;
}

.story .story-icon img {
    width: 25px;
}

.story .story-box .story-text {
    position: relative;
    width: calc(100% - 40px);
    float: left;
}

.story .story-launch .story-text {
    width: 100%;
}

.story .story-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.story .story-text p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .story .story-continue::after {
        left: 40px;
    }
    
    .story .story-end,
    .story .story-start,
    .story .story-year,
    .story .row.story-left,
    .story .row.story-right .story-date,
    .story .row.story-right,
    .story .row.story-left .story-date,
    .story .story-launch {
        text-align: left;
    }
    
    .story .row.story-left .story-date::after,
    .story .row.story-right .story-date::after {
        left: 47px;
    }
    
    .story .story-box,
    .story .row.story-right .story-date,
    .story .row.story-left .story-date {
        margin-left: 55px;
    }
    
    .story .story-launch .story-box {
        margin-left: 0;
    }
    
    .story .row.story-left .story-box::after {
        left: -20px;
        border-color: transparent #ffffff transparent transparent;
    }

    .story .row.story-left .story-box::before {
        left: -22px;
        border-color: transparent #dddddd transparent transparent;
    }
    
    .story .story-launch .story-box::after,
    .story .story-launch .story-box::before {
        left: 30px;
        margin-left: 0;
    }
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 60px 0;
}

@media (min-width: 768px) {
    .team {
        padding: 45px 60px 60px 60px;
    }
}


.team .team-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(0, 0, 0, .05);
    border-radius: 300px 300px 5px 5px;
}

.team .team-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.team .team-img img {
    width: 100%;
    border-radius: 300px;
}

.team .team-text {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.team .team-text h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.team .team-text p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(79, 132, 196, .92);
    border-radius: 300px 300px 5px 5px;
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social {
    opacity: 1;
}

.team .team-social a {
    color: #ffffff;
    font-size: 22px;
    padding: 0 10px;
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 10px 25px;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 30px;
    background: linear-gradient(#4F84C4, #00539C);
    border: 1px solid #4F84C4;
    transition: .5s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #ffffff;
    color: #213546;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    margin: 25px 0;
    padding: 15px 40px;
    transition: .5s;
}

.portfolio .load-more .btn:hover {
    background: linear-gradient(#00539C, #4F84C4);
}

.portfolio .portfolio-item {
    position: relative;
    height: 280px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.portfolio .portfolio-item figure {
    background: #ffffff;
    overflow: hidden;
    height: 280px;
    position: relative;
    border-radius: 30px 30px 0 0;
    margin: 0; 
}

.portfolio .portfolio-item figure img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    border-radius: 8px;
}

.portfolio .portfolio-item figure:hover img {
    opacity: 0.3;
    transition: 0.3s;
}

.portfolio .portfolio-item figure .link-preview,
.portfolio .portfolio-item figure .link-details {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 45px;
    height: 35px;
    border-radius: 6px;
    background: linear-gradient(#4F84C4, #00539C);
    transition: 0.5s;
}

.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
    color: #ffffff;
    padding-top: 9px;
    font-size: 16px;
}

.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
    background: linear-gradient(#00539C, #4F84C4);
}

.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
    color: #ffffff;
}

.portfolio .portfolio-item figure .link-preview {
    top: 50%;
    left: calc(50% - 61px);
}

.portfolio .portfolio-item figure .link-details {
    top: 50%;
    right: calc(50% - 61px);
}

.portfolio .portfolio-item figure:hover .link-preview {
    opacity: 1;
    top: calc(50% - 50px);
}

.portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    top: calc(50% - 50px);
}

.portfolio .portfolio-item figure .portfolio-title {
    position: absolute;
    margin: 0;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    background: rgba(79, 132, 196, .8);
    border-radius: 0;
}

.portfolio .portfolio-item figure .portfolio-title:hover {
    text-decoration: none;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 80px 0;
}

.contact h2.section-title {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
}

.contact h2.section-title::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--primary);
}

.contact .contact-info {
    position: relative;
    width: 100%;
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info iframe {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.contact .contact-info h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.contact .contact-info h3 span {
    color: var(--primary);
}

.contact .contact-info p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--gray);
}

.contact .contact-form {
    position: relative;
    width: 100%;
    margin-top: 30px;
}

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

.contact .contact-form .form-control {
    height: 50px;
    padding: 0 15px;
    border-radius: 30px;
    border: 1px solid var(--border);
    box-shadow: none;
    transition: all 0.3s ease;
}

.contact .contact-form .form-control:focus {
    border-color: var(--primary);
}

.contact .contact-form textarea.form-control {
    height: 150px;
    padding: 15px;
    border-radius: 15px;
}

.contact .contact-form .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: all 0.3s ease;
}

.contact .contact-form .btn:hover {
    background: linear-gradient(to right, var(--secondary), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact .editor-info {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

@media (min-width: 992px) {
    .contact .editor-info {
        padding-left: 30px;
    }
}

.contact .editor-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dddddd;
}

.contact .editor-item:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.contact .editor-img {
    width: 120px;
    height: 120px;
    margin-right: 20px;
}

.contact .editor-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.contact .editor-text {
    width: auto;
}

.contact .editor-text h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact .editor-text a {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 65px 0;
}

.single h2.section-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 45px;
    padding-bottom: 15px;
}

.single h2.section-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #4F84C4, #00539C, #4F84C4);
    border-radius: 0 100% 100% 0; 
}

.single h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.single p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}


/*******************************/
/********** Footer CSS *********/
/*******************************/
.footer {
    position: relative;
    padding: 60px 0 0 0;
    background: var(--dark);
}

.footer .footer-about,
.footer .footer-link {
    position: relative;
    margin-bottom: 40px;
}

.footer .footer-about h2,
.footer .footer-link h2 {
    position: relative;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

@media (min-width: 768px) {
    .footer .footer-about h2,
    .footer .footer-link h2 {
        font-size: 22px;
    }
}

.footer .footer-about h2::after,
.footer .footer-link h2::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    bottom: -15px;
    left: 0;
    background: var(--primary);
}

.footer .footer-about p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer .footer-about p i {
    margin-right: 5px;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #cccccc;
    font-size: 16px;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: var(--primary);
}

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

.footer .copyright {
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright p {
    margin: 0;
    color: #cccccc;
    font-size: 16px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .footer .copyright .col-md-6:last-child p {
        text-align: right;
    }
}

.footer .copyright p a {
    color: var(--primary);
}

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

@media (max-width: 767px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/*******************************/
/******** Animations CSS *******/
/*******************************/
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Header Scroll Behavior */
.header-scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-scrolled .brand img {
    max-height: 60px;
}

.header-scrolled .topbar {
    margin-bottom: 0;
}

/*******************************/
/******** Utility Classes ******/
/*******************************/
.mt-0 { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-30 { padding-top: 30px !important; padding-bottom: 30px !important; }
.py-50 { padding-top: 50px !important; padding-bottom: 50px !important; }
.py-60 { padding-top: 60px !important; padding-bottom: 60px !important; }
.py-80 { padding-top: 80px !important; padding-bottom: 80px !important; }
.py-100 { padding-top: 100px !important; padding-bottom: 100px !important; }

.pt-0 { padding-top: 0 !important; }
.pt-30 { padding-top: 30px !important; }
.pt-50 { padding-top: 50px !important; }
.pt-70 { padding-top: 70px !important; }
.pt-100 { padding-top: 100px !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pb-70 { padding-bottom: 70px !important; }
.pb-100 { padding-bottom: 100px !important; }

@media (max-width: 991px) {
    .py-md-50 { padding-top: 50px !important; padding-bottom: 50px !important; }
    .pt-md-50 { padding-top: 50px !important; }
    .pb-md-50 { padding-bottom: 50px !important; }
}

@media (max-width: 767px) {
    .py-sm-30 { padding-top: 30px !important; padding-bottom: 30px !important; }
    .pt-sm-30 { padding-top: 30px !important; }
    .pb-sm-30 { padding-bottom: 30px !important; }
}

/* Fix for column gaps */
.row.g-4 > [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

/* Section dividers */
.section-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border);
    margin: 0;
}

/* Responsive fixes */
@media (max-width: 991px) {
    :root {
        --section-padding: 50px;
    }

    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 40px;
    }

    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}
