@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');

:root {

    --clr-primary-1: hsl(240, 100%, 50%);
    --clr-primary-2: hsl(205, 77%, 27%);
    --clr-primary-3: hsl(205, 72%, 37%);
    --clr-primary-4: hsl(205, 63%, 48%);
    --clr-primary-99: hsl(240, 100%, 65%);
    /* primary/main color */
    --clr-primary-5: hsl(205, 78%, 60%);
    /* lighter shades of primary color */
    --clr-primary-6: hsl(205, 89%, 70%);
    --clr-primary-7: hsl(205, 90%, 76%);
    --clr-primary-8: hsl(205, 86%, 81%);
    --clr-primary-9: hsl(205, 90%, 88%);
    --clr-primary-10: hsl(205, 100%, 96%);
    --dark: #000000;
    --body: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--body);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-weight: 700;
    color: var(--dark);
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

img {
    width: 100%;
}

a {
    color: var(--dark);
    transition: all 0.4s ease;
    font-weight: 500;
}

a:hover {
    color: var(--clr-primary-1);
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

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



/*STARTS HERE**************TOP HEADER****************************************************************/


/* Top Navigation Styling */
.top-navbar {
    background-color: var(--clr-primary-1);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Contact Info (Email & Phone) */
.contact-links {
    display: flex;
    gap: 20px;
}

.contact-links p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-text {
    white-space: nowrap;
}

/* Social Icons */
.nav-social-icons {
    display: flex;
    gap: 15px;
}

.nav-social-icons a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-social-icons a:hover {
    background-color: var(--clr-primary-5);
    color: var(--clr-primary-1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .top-nav-container {
        flex-direction: column;
        gap: 10px;
    }

    .contact-links {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }



    .contact-email i,
    .contact-phone i {
        font-size: 18px;
        /* Make icons larger for mobile */
    }

    .nav-social-icons {
        order: 2;
        /* Move social icons to center */
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    .contact-links {
        justify-content: space-between;
    }

    .contact-email {
        margin-right: auto;
        /* Push email to far left */
    }

    .contact-phone {
        margin-left: auto;
        /* Push phone to far right */
    }
}






/*ENDS HERE*****************TOP HEADER****************************************************************/
/*ENDS HERE*****************TOP HEADER****************************************************************/



/*STARTS HERE*****************NAVBAR****************************************************************/
/*STARTS HERE*****************NAVBAR****************************************************************/

/* MAIN NAVIGATION STYLES */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* Logo Styles */
.logo-container {
    width: 150px;
    height: 50px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .logo {
        max-height: 40px;
    }
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin: 0 5px;
    position: relative;

}


.navbar-nav .nav-item .nav-link {
    color: black !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--clr-primary-1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--clr-primary-1);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Contact Button */
.btn-brand {
    background-color: var(--clr-primary-1);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-left: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--clr-primary-1);
}

.btn-brand:hover {
    background-color: var(--clr-primary-3);
    border-color: var(--clr-primary-2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Active State */
.navbar-nav .nav-item .nav-link.active {
    color: var(--clr-primary-1) !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Mobile Toggle Button */
.navbar-toggler {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.navbar-toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .nav-item {
        margin: 0 8px;
    }

    .nav-link {
        font-size: 15px;
    }

    .btn-brand {
        padding: 8px 20px;
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding: 20px;
        z-index: 1000;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        font-size: 16px;
    }

    .btn-brand {
        margin: 20px 0 0 0;
        width: 100%;
        text-align: center;
    }

    /* Animate toggle icon when active */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 120px;
        height: 40px;
    }

    .navbar-collapse {
        width: 85%;
    }
}

/*STARTS HERE*****************NAVBAR****************************************************************/
/*STARTS HERE*****************NAVBAR****************************************************************/


/*STARTS HERE*****************SLIDER****************************************************************/
/*STARTS HERE*****************SLIDER****************************************************************/

/* Hero Slider - Complete Enhanced Styling */
.main-hero-slider {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.main-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 2rem;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}

.main-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.main-slide > .container {
    position: relative;
    z-index: 2;
}

.slide1 {
    background-image: url(../img/door.jpg);
}

.slide2 {
    background-image: url(../img/officepartition.jpg);
}

.slide3 {
    background-image: url(../img/banimg.jpg);
}

.main-slide .display-3 {
    text-transform: uppercase;
    color: #fff;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    animation: slideInUp 1s ease-out;
}

.main-slide h6 {
    font-size: 1.4rem;
    color: var(--clr-primary-6);
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.2s ease-out;
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeIn 1.4s ease-out;
}

.btn-brand {
    background: linear-gradient(135deg, var(--clr-primary-1) 0%, var(--clr-primary-2) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline-light {
    border: 2px solid white;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--clr-primary-2);
    transform: translateY(-3px);
}

/* Navigation Arrows - Properly Positioned */
.main-hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.main-hero-slider .owl-prev,
.main-hero-slider .owl-next {
    background-color: rgba(255, 255, 255, 0.2) !important;
    width: 60px;
    height: 60px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 0.5rem !important;
    transition: all 0.4s ease;
    pointer-events: auto;
    margin: 0;
    position: static !important;
    transform: none !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-hero-slider .owl-prev {
    margin-left: 1rem !important;
}

.main-hero-slider .owl-next {
    margin-right: 1rem !important;
}

.main-hero-slider .owl-prev:hover,
.main-hero-slider .owl-next:hover {
    background-color: var(--clr-primary-4) !important;
    transform: scale(1.1) !important;
}

/* Dots Navigation */
.owl-dots {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease;
}

.owl-dot.active span {
    background-color: var(--clr-primary-5) !important;
    width: 30px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .main-slide .display-3 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .main-slide .display-3 {
        font-size: 3rem;
    }

    .main-slide h6 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .main-slide .display-3 {
        font-size: 2.5rem;
    }

    .btn-brand,
    .btn-outline-light {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .main-hero-slider .owl-prev,
    .main-hero-slider .owl-next {
        width: 50px;
        height: 50px;
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }
}

@media (max-width: 576px) {
    .main-slide .display-3 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .main-slide h6 {
        font-size: 1rem;
    }

    .main-btn-container {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-brand,
    .btn-outline-light {
        width: 100%;
        max-width: 250px;
    }

    .main-hero-slider .owl-nav {
        display: none;
    }
}

/* Animation Keyframes */
@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/*ENDS HERE*****************SLIDER****************************************************************/
/*ENDS HERE*****************SLIDER****************************************************************/


/**STARTS HERE************MAIN-ABOUT SECTION**********************************************************/
/**STARTS HERE************MAIN-ABOUT SECTION**********************************************************/

/* ===== About Section Styles ===== */
.about-main-section {
    background: linear-gradient(135deg, var(--clr-primary-10) 0%, var(--body) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Header Section */
.about-main-section .section-badge {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--clr-primary-5);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.about-main-section .display-4 {
    font-weight: 700;
    color: var(--clr-primary-2);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.about-main-section .divider {
    width: 80px;
    height: 4px;
    background: var(--clr-primary-5);
    margin: 0 auto 2rem;
    border-radius: 2px;
    animation: scaleIn 0.8s ease-out 0.4s both;
}

/* Lead Paragraph */
.about-main-section .about-lead {
    font-size: 1.25rem;
    color: var(--clr-primary-3);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-main-section .text-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-main-section .text-primary {
    font-weight: 600;
}

/* Feature Cards */
.about-main-section .feature-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--clr-primary-5);
}

.about-main-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-main-section .feature-img {
    width: 120px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.about-main-section .feature-card:hover .feature-img {
    transform: scale(1.05);
}

.about-main-section .feature-list {
    margin-top: 0.5rem;
}

.about-main-section .feature-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
    color: #000000;
}

.about-main-section .feature-list li:hover {
    transform: translateX(5px);
}

.about-main-section .fa-check-circle {
    color: var(--clr-primary-5);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Slideshow */
.about-main-section .modern-slideshow {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
}

.about-main-section .about-slide-item {
    position: relative;
    height: 100%;
}

.about-main-section .about-slide-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 0;
}

.about-main-section .about-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.about-main-section .row.g-4 {
    align-items: stretch;
}

.about-main-section .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.about-main-section .modern-slideshow,
.about-main-section .feature-card,
.about-main-section .about-slide-item {
    flex: 1;
    height: 100%; /* Add this line to ensure full height */
}

.about-main-section .about-slide-caption h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.about-main-section .about-slide-caption p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Owl Carousel Customization */
.about-main-section .owl-theme .owl-dots {
    position: absolute;
    bottom: 1rem;
    width: 100%;
}

.about-main-section .owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.about-main-section .owl-theme .owl-dots .owl-dot.active span {
    background: var(--clr-primary-5);
    width: 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .about-main-section .feature-img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 992px) {
    .about-main-section .about-slide-image {
        min-height: 0;
    }

    .about-main-section {
        padding: 4rem 0;
    }

    .about-main-section .about-slide-image {
        min-height: 400px;
    }

    .about-main-section .feature-card {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 768px) {
    .about-main-section .display-4 {
        font-size: 2.5rem;
    }

    .about-main-section .about-lead {
        font-size: 1.1rem;
    }

    .about-main-section .feature-img {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .about-main-section .feature-card {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .about-main-section .display-4 {
        font-size: 2rem;
    }

    .about-main-section .about-slide-image {
        min-height: 0;
    }

    .about-main-section .feature-img {
        width: 100%;
        height: 150px;
        margin-bottom: 1rem;
    }
}


/**ENDS HERE************MAIN-ABOUT SECTION**********************************************************/
/**ENDS HERE************MAIN-ABOUT SECTION**********************************************************/


/**STRATS HERE***************MILSTONE SECTION********************************************************/
/**STRATS HERE***************MILSTONE SECTION********************************************************/

/* ===== Milestone Section ===== */
#milestone {
    background: linear-gradient(135deg, var(--clr-primary-2) 0%, var(--clr-primary-4) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

#milestone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><pattern id="pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/></pattern><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

#milestone .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--clr-primary-6);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--clr-primary-9);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Milestone Boxes */
.milestone-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.milestone-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--clr-primary-6), var(--clr-primary-5));
    transition: all 0.4s ease;
}

.milestone-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.milestone-box:hover::before {
    height: 100%;
}

.milestone-box i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.milestone-box:hover i {
    color: var(--clr-primary-6);
    transform: scale(1.1);
}

.milestone-box h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.milestone-box:hover h1 {
    color: var(--clr-primary-10);
}

.milestone-box p {
    font-size: 1.1rem;
    color: var(--clr-primary-9);
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.milestone-box:hover p {
    color: white;
}

/* Counter Animation */
.counter {
    display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .milestone-box {
        padding: 2rem 1rem;
    }

    .milestone-box h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    #milestone {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .milestone-box {
        padding: 1.8rem 1rem;
        margin-bottom: 1rem;
    }

    .milestone-box i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .milestone-box h1 {
        font-size: 2.2rem;
    }

    .milestone-box p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .milestone-box {
        padding: 1.5rem 0.5rem;
    }

    .milestone-box h1 {
        font-size: 2rem;
    }
}

/**ENDS HERE*********************MILESTONE****************************************************/
/**ENDS HERE*********************MILESTONE****************************************************/



/**STARTS HERE******************HOME SERVICE SECTION********************************************/
/**STARTS HERE******************HOME SERVICE SECTION********************************************/

/* ===== Services Section ===== */
#services {
    background-color: var(--clr-primary-10);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><pattern id="pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%232196f3" opacity="0.05"/></pattern><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
    z-index: 0;
}

/* Section Header */
.intro h5 {
    color: var(--clr-primary-4);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.intro h1 {
    color: var(--clr-primary-2);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.intro h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--clr-primary-5);
    border-radius: 2px;
}

.intro p {
    color: var(--clr-primary-3);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--clr-primary-5), var(--clr-primary-99));
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h5 {
    font-size: 1.3rem;
    color: var(--clr-primary-2);
    margin-bottom: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card:hover h5 {
    color: var(--clr-primary-4);
}

.service-card ul {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--clr-primary-3);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.service-card:hover ul li {
    color: var(--dark);
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 12px;
    height: 12px;
    background-color: var(--clr-primary-5);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease;
}

.service-card:hover ul li::before {
    transform: scale(1);
}

.btn-primary {
    background: linear-gradient(to right, var(--clr-primary-4), var(--clr-primary-99));
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    align-self: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .intro h1 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    #services {
        padding: 4rem 0;
    }

    .intro h1 {
        font-size: 2rem;
    }

    .intro p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .service-card img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 1.5rem;
    }

    .service-card h5 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .intro h1 {
        font-size: 1.8rem;
    }

    .intro h5 {
        font-size: 1rem;
    }

    .service-card img {
        height: 160px;
    }
}


/**ENDS HERE******************HOME SERVICE SECTION********************************************/
/**ENDS HERE******************HOME SERVICE SECTION********************************************/












/**STARTS HERE******************TEAM EXPERTISE********************************************************/
/**STARTS HERE******************TEAM EXPERTISE********************************************************/

/* Expertise Section Styling */
.expertise-section {
    padding: 5rem 0;
    background-color: var(--clr-primary-10);
    position: relative;
    overflow: hidden;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--clr-primary-1), var(--clr-primary-5));
}

.section-title {
    color: var(--clr-primary-2);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--clr-primary-5);
    border-radius: 2px;
}

.lead {
    color: var(--clr-primary-3);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.expertise-card {
    background: var(--body);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--clr-primary-5);
    transition: height 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);
}

.expertise-card:hover::before {
    height: 100%;
}

.expertise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--clr-primary-8), var(--clr-primary-10));
    border-radius: 50%;
    color: var(--clr-primary-4);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    background: linear-gradient(135deg, var(--clr-primary-5), var(--clr-primary-7));
    color: white;
    transform: scale(1.1);
}

.expertise-title {
    color: var(--clr-primary-2);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.expertise-card:hover .expertise-title {
    color: var(--clr-primary-1);
}

.expertise-desc {
    color: var(--clr-primary-3);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .expertise-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .expertise-section {
        padding: 3rem 0;
    }

    .expertise-card {
        padding: 1.5rem 1rem;
    }

    .expertise-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}


/**ENDS HERE******************TEAM EXPERTISE********************************************************/
/**ENDS HERE******************TEAM EXPERTISE********************************************************/


/**STARTS******************BLOG SECTION********************************************************/
/**STARTS******************BLOG SECTION********************************************************/



/* Blog Section Styling */
#blog {
    padding: 100px 0;
    background-color: var(--clr-primary-10);
    position: relative;
}

#blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--clr-primary-5), var(--clr-primary-1));
}

.intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

.intro h6 {
    color: var(--clr-primary-5);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.intro h1 {
    color: var(--clr-primary-2);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.intro h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--clr-primary-5);
    border-radius: 2px;
}

.intro p {
    color: var(--clr-primary-3);
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post {
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-post:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.1);
}

.blog-post .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--clr-primary-5);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    transition: all 0.3s ease;
}

.blog-post .tag:hover {
    background-color: var(--clr-primary-1);
    transform: translateY(-2px);
}

.blog-post .content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post small {
    color: var(--clr-primary-4);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.blog-post h5 {
    color: var(--clr-primary-2);
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-post:hover h5 {
    color: var(--clr-primary-5);
}

.blog-post p {
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-post .read-more {
    color: var(--clr-primary-5);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-post .read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-post .read-more:hover {
    color: var(--clr-primary-1);
}

.blog-post .read-more:hover::after {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .intro h1 {
        font-size: 2.2rem;
    }

    .blog-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    #blog {
        padding: 70px 0;
    }

    .intro {
        margin-bottom: 40px;
    }

    .intro h1 {
        font-size: 1.8rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .blog-post {
        margin-bottom: 30px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-post h5 {
        font-size: 1.1rem;
    }
}




/**ENDS HERE******************BLOG SECTION********************************************************/
/**ENDS HERE******************BLOG SECTION********************************************************/



/**STARTS HERE******************PROJECT SECTION********************************************************/
/**STARTS HERE******************PROJECT SECTION********************************************************/



/**ENDS HERE******************PROJECT SECTION********************************************************/
/**ENDS HERE******************PROJECT SECTION********************************************************/

/* ===== Vertex Portfolio Section ===== */
.vertex-portfolio-section {
    background-color: var(--clr-primary-10);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.vertex-portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><pattern id="pattern" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%232196f3" opacity="0.05"/></pattern><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
    z-index: 0;
}

/* Section Header */
.vertex-portfolio-badge {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--clr-primary-4), var(--clr-primary-99));
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    display: inline-block;
}

.vertex-portfolio-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--clr-primary-2);
}

.vertex-text-gradient {
    background: linear-gradient(90deg, var(--clr-primary-2), var(--clr-primary-4));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vertex-portfolio-description {
    font-size: 1.2rem;
    color: var(--clr-primary-3);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Portfolio Carousel */
.vertex-portfolio-carousel {
    position: relative;
    padding: 2rem 0;
}

.vertex-project-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vertex-project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.vertex-project-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.vertex-project-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vertex-project-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 200px;
    /* Adjust as needed */
}

.vertex-project-item:hover .vertex-project-img-wrapper img {
    transform: scale(1.1);
}

.vertex-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 50%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.vertex-project-item:hover .vertex-project-overlay {
    opacity: 0.9;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%);
}

.vertex-project-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
}

.vertex-project-category {
    font-size: 0.9rem;
    color: var(--clr-primary-6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.vertex-project-title {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.vertex-project-hover-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.vertex-project-item:hover .vertex-project-hover-content {
    max-height: 200px;
    opacity: 1;
}

.vertex-project-hover-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Owl Carousel Navigation */
.vertex-portfolio-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.vertex-portfolio-carousel .owl-prev,
.vertex-portfolio-carousel .owl-next {
    background: rgba(255, 255, 255, 0.2) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.5rem !important;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(5px);
    margin: 0 1rem;
}

.vertex-portfolio-carousel .owl-prev:hover,
.vertex-portfolio-carousel .owl-next:hover {
    background: var(--clr-primary-5) !important;
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .vertex-portfolio-title {
        font-size: 2.5rem;
    }

    .vertex-project-img-wrapper {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .vertex-portfolio-section {
        padding: 4rem 0;
    }

    .vertex-portfolio-title {
        font-size: 2.2rem;
    }

    .vertex-portfolio-description {
        font-size: 1.1rem;
    }

    .vertex-project-img-wrapper {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .vertex-portfolio-title {
        font-size: 2rem;
    }

    .vertex-project-title {
        font-size: 1.3rem;
    }

    .vertex-portfolio-carousel .owl-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .vertex-portfolio-title {
        font-size: 1.8rem;
    }

    .vertex-project-img-wrapper {
        height: 200px;
    }

    .vertex-project-content {
        padding: 1.5rem;
    }
}


/**STARS HERE******************REVIEWS SECTION********************************************************/
/**STARS HERE******************REVIEWS SECTION********************************************************/

/* Modern Reviews Section CSS with Equal Height Cards */
.reviews-section {
    background: linear-gradient(-90deg, rgba(8, 32, 50, 0.9), rgba(8, 32, 50, 0.95)),
        url(../img/banner1.jpg), #082032;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--clr-primary-5), var(--clr-primary-1));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--clr-primary-5);
    margin: 0 auto;
}

/* Equal Height Card Styles */
.reviews-carousel {
    display: flex;
}

.review-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-media {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex: 0 0 auto;
}

.review-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.client-info,
blockquote,
.review-stats {
    flex: 0 0 auto;
}

/* Rest of your existing styles remain the same */
.client-image {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--clr-primary-5);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid white;
}

.project-image {
    width: 100%;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.review-card:hover .project-image img {
    transform: scale(1.1);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.client-info h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.client-title {
    color: var(--clr-primary-4);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rating {
    color: var(--clr-primary-5);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.rating i {
    margin-right: 3px;
}

blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

blockquote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -1rem;
    font-size: 4rem;
    color: rgba(13, 110, 253, 0.1);
    font-family: serif;
    line-height: 1;
}

.review-stats {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.stat-item {
    display: flex;
    align-items: center;
    background: rgba(13, 110, 253, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--clr-primary-4);
}

.stat-item i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.review-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.trustpilot-widget {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.trustpilot-widget img {
    height: 40px;
}

/* Owl Carousel Customizations */
.owl-stage {
    display: flex;
}

.owl-item {
    display: flex;
    height: auto;
}

.owl-theme .owl-dots {
    margin-top: 3rem;
}

.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--clr-primary-5) !important;
    transform: scale(1.2);
}

.owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.owl-theme .owl-nav [class*='owl-'] {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--clr-primary-5) !important;
    font-size: 1rem !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--clr-primary-5) !important;
    color: white !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .review-media {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .review-card {
        margin: 0.5rem;
        height: auto;
    }

    .owl-theme .owl-nav {
        display: none;
    }

    .review-cta {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    blockquote {
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }

    .review-content {
        padding: 1.5rem;
    }

    blockquote {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .review-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}


/**ENDS HERE******************REVIEWS SECTION********************************************************/
/**ENDS HERE******************REVIEWS SECTION********************************************************/























/* WHATSAPP BUTTON */

/* Whatsapp button front page */

:root {
    --whatsapp-green: #25d366;
    --whatsapp-dark: #075e54;
    --gradient-blue-1: #4f46e5;
    --gradient-blue-2: #3b82f6;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.whatsapp-button__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
}

.whatsapp-button__icon {
    width: 30px;
    height: 30px;
    fill: white;
    transition: all 0.3s ease;
}

.whatsapp-button__text {
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-button__link:hover {
    width: 200px;
    border-radius: 30px;
    background: linear-gradient(135deg,
            var(--gradient-blue-1),
            var(--gradient-blue-2));
}

.whatsapp-button__link:hover .whatsapp-button__icon {
    transform: translateX(-60px);
}

.whatsapp-button__link:hover .whatsapp-button__text {
    opacity: 1;
    transform: translateX(10px);
}

.whatsapp-button__pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/**PAGES STARTS HERE*****************PAGES STARTS *******************************************************/
/**PAGES STATRS HERE*****************PAGES STARTS ******************************************************/
/**PAGES STARTS HERE*****************PAGES STARTS *******************************************************/
/**PAGES STATRS HERE*****************PAGES STARTS ******************************************************/
/**PAGES STARTS HERE*****************PAGES STARTS *******************************************************/
/**PAGES STATRS HERE*****************PAGES STARTS ******************************************************/

/**PAGES STARTS HERE*****************PAGES STARTS *******************************************************/
/**PAGES STATRS HERE*****************PAGES STARTS ******************************************************/
/**PAGES STARTS HERE*****************PAGES STARTS *******************************************************/
/**PAGES STATRS HERE*****************PAGES STARTS ******************************************************/
/**PAGES STARTS HERE*****************PAGES STARTS *******************************************************/
/**PAGES STATRS HERE*****************PAGES STARTS ******************************************************/








/**STARTS HERE********************SERVICE PAGE***************************************************/
/**STARTS HERE********************SERVICE PAGE***************************************************/


/* Hero Section Styles */
.hero-section1 {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--clr-primary-10) 0%, var(--body) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section1::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Q50,80 0,100 Z" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat;
    background-size: cover;
    z-index: 0;
}

.product-image {
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: perspective(1500px) rotateY(-10deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 10px solid var(--body);
    position: relative;
    z-index: 2;
}

.product-image:hover {
    transform: perspective(1500px) rotateY(-5deg) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.product-title {
    font-size: 3rem;
    color: var(--clr-primary-2);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary-5), var(--clr-primary-99));
    border-radius: 2px;
}

.lead {
    font-size: 1.25rem;
    color: var(--clr-primary-3);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    background: var(--body);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.highlight-item span {
    display: inline-block;
    /* Ensures span is visible */
    color: var(--clr-primary-2);
    /* Uses your primary dark blue color */
    font-weight: 500;
    /* Medium weight for better readability */
    font-size: 1rem;
    /* Appropriate text size */
    margin-left: 0.5rem;
    /* Space between icon and text */
    transition: all 0.3s ease;
    /* Smooth hover transition */
}

.highlight-icon {
    font-size: 1.5rem;
    color: var(--clr-primary-5);
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-primary-10);
    border-radius: 50%;
}

.highlight-item:hover .highlight-icon {
    background: var(--clr-primary-5);
    color: white;
    transform: rotate(10deg);
    /* Subtle animation on hover */
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.product-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    line-height: 1.6;
}

.product-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--clr-primary-5);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary1 {
    background: linear-gradient(135deg, var(--clr-primary-5) 0%, var(--clr-primary-99) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    display: inline-flex;
    align-items: center;
}

.btn-primary1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
    color: white;
}

.btn-outline-brand {
    background: transparent;
    color: var(--clr-primary-5);
    border: 2px solid var(--clr-primary-5);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-outline-brand:hover {
    background: var(--clr-primary-5);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .product-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-section1 {
        padding: 4rem 0;
    }

    .product-image {
        transform: none;
        margin-bottom: 3rem;
    }

    .product-image:hover {
        transform: scale(1.02);
    }

    .product-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 2.2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary1,
    .btn-outline-brand {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section1 {
        padding: 3rem 0;
    }

    .product-title {
        font-size: 2rem;
    }
}










/**ENDS HERE***********************SERVICE PAGE********************************************************/
/**ENDS HERE***********************SERVICE PAGE********************************************************/







/**STARTS HERE****************SERVICE QOUTE*********************************************************/
/**STARTS HERE****************SERVICE QOUTE*******************************************************/


/* Quote Section Styles */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--clr-primary-9) 0%, var(--body) 100%);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Q50,80 0,100 Z" fill="%23ffffff" opacity="0.05"/></svg>') no-repeat;
    background-size: cover;
    z-index: 0;
}

.quote-title {
    font-size: 2.5rem;
    color: var(--clr-primary-2);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    line-height: 1.3;
}

.quote-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary-5), var(--clr-primary-99));
    border-radius: 2px;
}

.quote-subtitle {
    font-size: 1.2rem;
    color: var(--clr-primary-3);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.call-text {
    font-size: 1.1rem;
    color: var(--dark);
}

.call-text a {
    color: var(--clr-primary-4);
    font-weight: 500;
    transition: all 0.3s ease;
}

.call-text a:hover {
    color: var(--clr-primary-2);
    text-decoration: underline;
}

.fa-phone-alt {
    color: var(--clr-primary-5) !important;
    background: var(--clr-primary-10);
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.d-flex:hover .fa-phone-alt {
    transform: rotate(15deg);
    background: var(--clr-primary-5);
    color: white !important;
}

/* Form Styles */
#quotationForm {
    background: var(--body);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

/* Form Grid Alignment Fixes */


/* Form Grid Alignment */
#quotationForm .row.g-3 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#quotationForm .col-md-6 {
    padding: 0 12px;
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 88px;
    margin-bottom: 1rem;
}

.form-label1 {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--clr-primary-2);
    font-size: 1rem;
    flex-shrink: 0;
}

.form-control1 {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--clr-primary-9);
    border-radius: 8px;
    font-size: 1rem;
    height: 48px;
    flex-shrink: 0;
    box-sizing: border-box;
}



/* Textarea specific styles */
#quotationForm .form-control {
    min-height: 120px;
    resize: vertical;
}

.form-control1:focus,
#quotationForm .form-control:focus {
    outline: none;
    border-color: var(--clr-primary-5);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
    background-color: var(--body);
}

/* Submit Button */
.submit-btn1 {
    background: linear-gradient(135deg, var(--clr-primary-5) 0%, var(--clr-primary-99) 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.submit-btn1:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.submit-btn1:hover::before {
    left: 100%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .quote-section {
        padding: 4rem 0;
    }

    .quote-title {
        font-size: 2.2rem;
    }

    #quotationForm {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .quote-title {
        font-size: 2rem;
    }

    .quote-subtitle {
        font-size: 1.1rem;
    }

    .submit-btn1 {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    /* Stack form elements on mobile */
    #quotationForm .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .quote-section {
        padding: 3rem 0;
    }

    .quote-title {
        font-size: 1.8rem;
    }

    .d-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .me-4 {
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }

    #quotationForm {
        padding: 1.5rem;
    }
}


/**ENDS HERE***********************SERVICE QOUTE********************************************************/
/**ENDS HERE***********************SERVICE QOUTE********************************************************/







/*******************************CONtACT***********************************/
/*******************************CONtACT***********************************/
/*******************************CONtACT***********************************/

/* =============================================
   COMPLETE Contact Page Styles (Updated)
   ============================================= */

/* Base Styles */
.contact-section {
    color: #000000;
    line-height: 1.6;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 40px 0 60px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1605106702734-205df224ecce?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    opacity: 0.15;
    z-index: 0;
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 25px;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    border-radius: 2px;
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.contact-image-col {
    position: relative;
}

.contact-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.contact-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 60, 114, 0.7) 0%, rgba(42, 82, 152, 0.8) 100%);
}

.contact-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: white;
    z-index: 2;
}

.info-box {
    margin-bottom: 30px;
    padding-left: 40px;
    position: relative;
}

.info-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-box p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Form Styles */
.contact-form-col {
    padding: 50px;
}

.contact-form-wrapper {
    max-width: 100%;
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.modern-form {
    margin-top: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

/* ========== UPDATED DIMENSION INPUT STYLES ========== */
.row.dimension-inputs {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.row.dimension-inputs .col-md-6 {
    flex: 1;
    min-width: 0;
}

.row.dimension-inputs .form-group {
    height: 100%;
    margin-bottom: 0;
}

.row.dimension-inputs .floating-label {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.row.dimension-inputs .form-control {
    height: 56px;
    flex-grow: 1;
}

.row.dimension-inputs .form-icon {
    top: 18px;
}

/* Floating Label Styles */
.floating-label {
    position: relative;
}

.floating-label label {
    position: absolute;
    top: 18px;
    left: 45px;
    color: #666;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
    transform-origin: left center;
}

.floating-label .form-control:focus + label,
.floating-label .form-control:not(:placeholder-shown) + label {
    transform: translateY(-28px) scale(0.85);
    color: #1e3c72;
    left: 40px;
}

.floating-label .form-control {
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f9f9f9;
    width: 100%;
}

.floating-label .form-control:focus {
    border-color: #1e3c72;
    box-shadow: 0 0 0 2px rgba(30, 60, 114, 0.2);
    background-color: white;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 16px;
    color: #666;
    font-size: 1.1rem;
}

.floating-label .form-control:focus ~ .form-icon {
    color: #1e3c72;
}

/* Select Styles */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 1em;
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
    margin-top: 10px;
}

.form-control-file {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
    transition: all 0.3s;
}

.form-control-file:focus {
    border-color: #1e3c72;
    box-shadow: 0 0 0 2px rgba(30, 60, 114, 0.2);
    background-color: white;
    outline: none;
}

.file-requirements {
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

.file-selected {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #1e3c72;
    font-weight: 500;
}

input[type="file"]::file-selector-button {
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: #f1f1f1;
    color: #333;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s;
}

input[type="file"]::file-selector-button:hover {
    background-color: #e9e9e9;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(to right, #2a5298, #1e3c72);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4);
}

.btn-text {
    margin-right: 10px;
}

.btn-icon {
    transition: transform 0.3s;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f9fafc;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2a5298;
    border-radius: 3px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .contact-image-col {
        min-height: 400px;
    }

    .contact-form-col {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-card {
        margin-top: 0;
    }

    .contact-info-overlay {
        padding: 25px;
    }

    .info-box {
        margin-bottom: 20px;
    }

    /* Stack dimension inputs on mobile */
    .row.dimension-inputs {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-wrapper,
.contact-info-overlay {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Show/Hide Other Product Field */
#product:valid ~ #otherProductContainer {
    display: block !important;
}


/*******************************CONtACT***********************************/
/*******************************CONtACT***********************************/
/*******************************CONtACT***********************************/
/*******************************CONtACT***********************************/






/**STARTS HERE********************ABOUT PAGE****************************************************/
/**STARTS HERE********************ABOUT PAGE****************************************************/


/* About Page Styles */
.about-page {
    padding: 1rem 0;
    background-color: var(--clr-primary-10);
    position: relative;
    overflow: hidden;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-primary-10) 0%, var(--body) 100%);
    z-index: -1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-page-img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    border: 8px solid var(--body);
}

.about-page-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-page-content {
    padding: 2rem;
    position: relative;
}

.about-page-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--clr-primary-2);
    position: relative;
    display: inline-block;
}

.about-page-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--clr-primary-5);
    border-radius: 2px;
}

.lead2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--clr-primary-3);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.lead3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
}

.about-page-contact {
    background: var(--body);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--clr-primary-5);
}

.about-page-contact h5 {
    color: var(--clr-primary-2);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-page-contact p {
    margin-bottom: 0.8rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.about-page-contact i {
    color: var(--clr-primary-5);
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-page-content {
        padding: 2rem 0;
    }

    .about-page-img {
        margin-bottom: 2rem;
        transform: none;
    }

    .about-page-img:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 3rem 0;
    }

    .about-page-content h2 {
        font-size: 2rem;
    }

    .lead2 {
        font-size: 1.2rem;
    }

    .lead3 {
        font-size: 1rem;
    }
}








/**ENDS HERE********************ABOUT PAGE****************************************************/
/**ENDS HERE********************ABOUT PAGE****************************************************/






/* MAIN NAVIGATION STYLES */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* Logo Styles */
.logo-container {
    width: 150px;
    height: 50px;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .logo {
        max-height: 40px;
    }
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin: 0 5px;
    position: relative;

}


.navbar-nav .nav-item .nav-link {
    color: black !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--clr-primary-1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--clr-primary-1);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Contact Button */
.btn-brand {
    background-color: var(--clr-primary-1);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-left: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--clr-primary-1);
}

.btn-brand:hover {
    background-color: var(--clr-primary-3);
    border-color: var(--clr-primary-2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Active State */
.navbar-nav .nav-item .nav-link.active {
    color: var(--clr-primary-1) !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Mobile Toggle Button */
.navbar-toggler {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.navbar-toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .nav-item {
        margin: 0 8px;
    }

    .nav-link {
        font-size: 15px;
    }

    .btn-brand {
        padding: 8px 20px;
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        justify-content: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding: 20px;
        z-index: 1000;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        margin: 10px 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        font-size: 16px;
    }

    .btn-brand {
        margin: 20px 0 0 0;
        width: 100%;
        text-align: center;
    }

    /* Animate toggle icon when active */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .logo-container {
        width: 120px;
        height: 40px;
    }

    .navbar-collapse {
        width: 85%;
    }
}

/*ENDS HERE*****************NAVBAR****************************************************************/
/*ENDS HERE*****************NAVBAR****************************************************************/





/**STARTS HERE********************ABOUT PAGE****************************************************/
/**STARTS HERE********************ABOUT PAGE****************************************************/


/* About Page Styles */
.about-page {
    padding: 1rem 0;
    background-color: var(--clr-primary-10);
    position: relative;
    overflow: hidden;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-primary-10) 0%, var(--body) 100%);
    z-index: -1;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-page-img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    border: 8px solid var(--body);
}

.about-page-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-page-content {
    padding: 2rem;
    position: relative;
}

.about-page-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--clr-primary-2);
    position: relative;
    display: inline-block;
}

.about-page-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--clr-primary-5);
    border-radius: 2px;
}

.lead2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--clr-primary-3);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.lead3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
}

.about-page-contact {
    background: var(--body);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--clr-primary-5);
}

.about-page-contact h5 {
    color: var(--clr-primary-2);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-page-contact p {
    margin-bottom: 0.8rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.about-page-contact i {
    color: var(--clr-primary-5);
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-page-content {
        padding: 2rem 0;
    }

    .about-page-img {
        margin-bottom: 2rem;
        transform: none;
    }

    .about-page-img:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 3rem 0;
    }

    .about-page-content h2 {
        font-size: 2rem;
    }

    .lead2 {
        font-size: 1.2rem;
    }

    .lead3 {
        font-size: 1rem;
    }
}








/**ENDS HERE********************ABOUT PAGE****************************************************/
/**ENDS HERE********************ABOUT PAGE****************************************************/






/**STARTS HERE********************ABOUT SERVICE****************************************************/
/**STARTS HERE********************ABOUT SERVICE****************************************************/


/* Vertex Services Section */
.vertex-services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--body) 0%, var(--clr-primary-10) 100%);
    position: relative;
    overflow: hidden;
}

.vertex-services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%232196f3"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%232196f3"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%232196f3"></path></svg>') no-repeat;
    background-size: cover;
    z-index: 0;
    opacity: 0.1;
}

.vertex-services-section h2 {
    font-size: 2.8rem;
    color: var(--clr-primary-2);
    position: relative;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vertex-services-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary-5), var(--clr-primary-99));
    border-radius: 4px;
}

.vertex-lead {
    font-size: 1.4rem;
    color: var(--clr-primary-3);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.vertex-service-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--body);
    position: relative;
    z-index: 1;
    border-top: 4px solid var(--clr-primary-5);
}

.vertex-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertex-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.2);
}

.vertex-service-card:hover::before {
    opacity: 1;
}

.vertex-service-img {
    height: 240px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.95);
}

.vertex-service-card:hover .vertex-service-img {
    transform: scale(1.03);
    filter: brightness(1);
}

.vertex-service-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.vertex-service-title {
    font-size: 1.4rem;
    color: var(--clr-primary-2);
    margin-bottom: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.vertex-service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--clr-primary-5);
    transition: width 0.3s ease;
}

.vertex-service-card:hover .vertex-service-title::after {
    width: 80px;
}

.vertex-service-body .card-text {
    color: var(--dark);
    margin-bottom: 1.8rem;
    line-height: 1.7;
    opacity: 0.9;
    flex-grow: 1;
}

.btn-vertex {
    background: linear-gradient(135deg, var(--clr-primary-5) 0%, var(--clr-primary-99) 100%);
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-vertex:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.btn-vertex:hover::before {
    left: 100%;
}

/* Spacing Utilities */
.vertex-mb-3 {
    margin-bottom: 1.5rem !important;
}

.vertex-mb-5 {
    margin-bottom: 3rem !important;
}

.vertex-mt-4 {
    margin-top: 2rem !important;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .vertex-service-img {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .vertex-services-section {
        padding: 4rem 0;
    }

    .vertex-services-section h2 {
        font-size: 2.4rem;
    }

    .vertex-lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .vertex-services-section h2 {
        font-size: 2rem;
    }

    .vertex-service-title {
        font-size: 1.3rem;
    }

    .vertex-service-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .vertex-services-section {
        padding: 3rem 0;
    }

    .vertex-service-img {
        height: 200px;
    }

    .vertex-service-card {
        margin-bottom: 1.5rem;
    }
}




/**ENDS HERE***********************ABOUT SERVICE********************************************************/
/**ENDS HERE***********************ABOUT SERVICE********************************************************/



/**STARTS HERE*********************ABOUT CONTACT******************************************************/
/**STARTS HERE*********************ABOUT CONTACT******************************************************/

/* Contact Section Styles */
.container.mt-5 {
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.container.mt-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-primary-10) 0%, var(--body) 100%);
    z-index: -1;
    opacity: 0.7;
}

.text-center.mb-5 h1 {
    font-size: 2.8rem;
    color: var(--clr-primary-2);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.text-center.mb-5 h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary-5), var(--clr-primary-99));
    border-radius: 2px;
}

.text-center.mb-5 p {
    font-size: 1.2rem;
    color: var(--clr-primary-3);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.col-md-6:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
}

.contact-banner {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    border: 8px solid var(--body);
}

.contact-banner:hover {
    transform: scale(1.02);
}

#contactForm2 {
    background: var(--body);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-label2 {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--clr-primary-2);
    font-size: 1.1rem;
}

.form-control2,
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--clr-primary-9);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    background-color: var(--clr-primary-10);
}

.form-control2:focus,
.form-control:focus {
    outline: none;
    border-color: var(--clr-primary-5);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
    background-color: var(--body);
}

.btn-primary2 {
    background: linear-gradient(135deg, var(--clr-primary-5) 0%, var(--clr-primary-99) 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-primary2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.btn-primary2:hover::before {
    left: 100%;
}

/* Product Select Styling */
#product {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232196f3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-banner {
        margin-bottom: 2rem;
        transform: none;
    }

    .contact-banner:hover {
        transform: none;
    }

    #contactForm2 {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .container.mt-5 {
        padding: 3rem 0;
    }

    .text-center.mb-5 h1 {
        font-size: 2.2rem;
    }

    .text-center.mb-5 p {
        font-size: 1rem;
    }

    .form-label2 {
        font-size: 1rem;
    }

    .btn-primary2 {
        width: 100%;
    }
}

/* Animation for form elements */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#contactForm2 > * {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

#contactForm2 > *:nth-child(1) {
    animation-delay: 0.1s;
}

#contactForm2 > *:nth-child(2) {
    animation-delay: 0.2s;
}

#contactForm2 > *:nth-child(3) {
    animation-delay: 0.3s;
}

#contactForm2 > *:nth-child(4) {
    animation-delay: 0.4s;
}

#contactForm2 > *:nth-child(5) {
    animation-delay: 0.5s;
}

#contactForm2 > *:nth-child(6) {
    animation-delay: 0.6s;
}

#contactForm2 > *:nth-child(7) {
    animation-delay: 0.7s;
}

#contactForm2 > *:nth-child(8) {
    animation-delay: 0.8s;
}

/**ENDS HERE***********************ABOUT CONTACT********************************************************/
/**ENDS HERE***********************ABOUT CONTACT********************************************************/




/**STARTS HERE*********************ABOUT CONTACT******************************************************/
/**STARTS HERE*********************ABOUT CONTACT******************************************************/

/* Contact Section Styles */
.container.mt-5 {
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.container.mt-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-primary-10) 0%, var(--body) 100%);
    z-index: -1;
    opacity: 0.7;
}

.text-center.mb-5 h1 {
    font-size: 2.8rem;
    color: var(--clr-primary-2);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.text-center.mb-5 h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary-5), var(--clr-primary-99));
    border-radius: 2px;
}

.text-center.mb-5 p {
    font-size: 1.2rem;
    color: var(--clr-primary-3);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.col-md-6:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1rem;
}

.contact-banner {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    border: 8px solid var(--body);
}

.contact-banner:hover {
    transform: scale(1.02);
}

#contactForm2 {
    background: var(--body);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-label2 {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--clr-primary-2);
    font-size: 1.1rem;
}

.form-control2,
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--clr-primary-9);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    background-color: var(--clr-primary-10);
}

.form-control2:focus,
.form-control:focus {
    outline: none;
    border-color: var(--clr-primary-5);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
    background-color: var(--body);
}

.btn-primary2 {
    background: linear-gradient(135deg, var(--clr-primary-5) 0%, var(--clr-primary-99) 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-primary2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.btn-primary2:hover::before {
    left: 100%;
}

/* Product Select Styling */
#product {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232196f3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-banner {
        margin-bottom: 2rem;
        transform: none;
    }

    .contact-banner:hover {
        transform: none;
    }

    #contactForm2 {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .container.mt-5 {
        padding: 3rem 0;
    }

    .text-center.mb-5 h1 {
        font-size: 2.2rem;
    }

    .text-center.mb-5 p {
        font-size: 1rem;
    }

    .form-label2 {
        font-size: 1rem;
    }

    .btn-primary2 {
        width: 100%;
    }
}

/* Animation for form elements */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#contactForm2 > * {
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

#contactForm2 > *:nth-child(1) {
    animation-delay: 0.1s;
}

#contactForm2 > *:nth-child(2) {
    animation-delay: 0.2s;
}

#contactForm2 > *:nth-child(3) {
    animation-delay: 0.3s;
}

#contactForm2 > *:nth-child(4) {
    animation-delay: 0.4s;
}

#contactForm2 > *:nth-child(5) {
    animation-delay: 0.5s;
}

#contactForm2 > *:nth-child(6) {
    animation-delay: 0.6s;
}

#contactForm2 > *:nth-child(7) {
    animation-delay: 0.7s;
}

#contactForm2 > *:nth-child(8) {
    animation-delay: 0.8s;
}

/**ENDS HERE***********************ABOUT CONTACT********************************************************/
/**ENDS HERE***********************ABOUT CONTACT********************************************************/




/**STARTS HERE********************ABOUT SERVICE****************************************************/
/**STARTS HERE********************ABOUT SERVICE****************************************************/


/* Vertex Services Section */
.vertex-services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--body) 0%, var(--clr-primary-10) 100%);
    position: relative;
    overflow: hidden;
}

.vertex-services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%232196f3"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%232196f3"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%232196f3"></path></svg>') no-repeat;
    background-size: cover;
    z-index: 0;
    opacity: 0.1;
}

.vertex-services-section h2 {
    font-size: 2.8rem;
    color: var(--clr-primary-2);
    position: relative;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vertex-services-section h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary-5), var(--clr-primary-99));
    border-radius: 4px;
}

.vertex-lead {
    font-size: 1.4rem;
    color: var(--clr-primary-3);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.vertex-service-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--body);
    position: relative;
    z-index: 1;
    border-top: 4px solid var(--clr-primary-5);
}

.vertex-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertex-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.2);
}

.vertex-service-card:hover::before {
    opacity: 1;
}

.vertex-service-img {
    height: 240px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.95);
}

.vertex-service-card:hover .vertex-service-img {
    transform: scale(1.03);
    filter: brightness(1);
}

.vertex-service-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.vertex-service-title {
    font-size: 1.4rem;
    color: var(--clr-primary-2);
    margin-bottom: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

.vertex-service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--clr-primary-5);
    transition: width 0.3s ease;
}

.vertex-service-card:hover .vertex-service-title::after {
    width: 80px;
}

.vertex-service-body .card-text {
    color: var(--dark);
    margin-bottom: 1.8rem;
    line-height: 1.7;
    opacity: 0.9;
    flex-grow: 1;
}

.btn-vertex {
    background: linear-gradient(135deg, var(--clr-primary-5) 0%, var(--clr-primary-99) 100%);
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-vertex:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

.btn-vertex:hover::before {
    left: 100%;
}

/* Spacing Utilities */
.vertex-mb-3 {
    margin-bottom: 1.5rem !important;
}

.vertex-mb-5 {
    margin-bottom: 3rem !important;
}

.vertex-mt-4 {
    margin-top: 2rem !important;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .vertex-service-img {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .vertex-services-section {
        padding: 4rem 0;
    }

    .vertex-services-section h2 {
        font-size: 2.4rem;
    }

    .vertex-lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .vertex-services-section h2 {
        font-size: 2rem;
    }

    .vertex-service-title {
        font-size: 1.3rem;
    }

    .vertex-service-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .vertex-services-section {
        padding: 3rem 0;
    }

    .vertex-service-img {
        height: 200px;
    }

    .vertex-service-card {
        margin-bottom: 1.5rem;
    }
}




/**ENDS HERE***********************ABOUT SERVICE********************************************************/
/**ENDS HERE***********************ABOUT SERVICE********************************************************/





























/**STARTS HERE****************FOOTER STARS *******************************************************/
/**STARS HERE*****************FOOTER STARTS ******************************************************/

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

/* Existing styles with improvements */
:root {
    --clr-primary-1: #0056b3;
    --clr-primary-7: rgba(0, 86, 179, 0.1);
    --footer-bg: #082032;
}

footer {
    background: linear-gradient(0deg, rgba(8, 32, 50, 0.9), rgba(8, 32, 50, 0.9)),
        url(../img/banner1.jpg), var(--footer-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-size: 0.9rem;
}

.footer-top {
    padding: 3rem 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-col {
    margin-bottom: 2rem;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--clr-primary-1);
}

footer p,
footer a {
    color: #adb3b9;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

footer a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons-footer {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons-footer a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icons-footer a:hover {
    background: var(--clr-primary-1);
    transform: translateY(-3px);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--clr-primary-1);
    width: 20px;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-top {
        padding: 2rem 0;
    }
}

@media (max-width: 768px) {
    .footer-title {
        font-size: 1rem;
    }

    .footer-col {
        text-align: center;
        align-items: center;
    }

    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons-footer {
        justify-content: center;
    }
}


/**ENDS HERE***************FOOTER**************************************************************/
/**EBDS HERE***************FOOTER**************************************************************/
