@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Qwigley&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

html,
body {
    overflow-x: hidden;
    font-family: "Rubik", sans-serif;
}

.Container {
    max-width: 1200px;
    padding: 0;
    margin: 0;
}

/* Top_header */

.fixed-header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.top-header {
    background-color: #1a1676;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
}

.top-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.top-header-left span,
.top-header-right span {
    display: inline-block;
    margin: 5px 0;
}

.top-header i {
    margin-right: 6px;
    color: #fff;
}

@media(max-width:450px) {
    .top-header {
        display: none;
    }
}

@media(max-width:576px) {
    .top-header {
        display: none;
    }
}

@media(max-width:992px) {
    .top-header {
        display: none;
    }
}

/* Responsive: stack items on small screens */
@media (max-width: 600px) {
    .top-header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-header-left,
    .top-header-right {
        width: 100%;
    }
}

/* 
Top_header_exit */
/* header_start */
.nav-link {
    position: relative;
    color: #000;
    margin-right: 15px;
    transition: 0.3s;
}

.nav-link:hover {
    color: rgb(230, 12, 12) !important;
    font-weight: 600;
}

.nav-link.active {
    color: red !important;
    font-weight: 700;
    font-size: 18px;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: red;
    bottom: -5px;
    left: 0;
}


.navbar-nav {
    align-items: center;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: #000 !important;
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;

}

.dropdown-menu li .dropdown-item {
    color: #000;
    transition: 0.3s;
}

.dropdown-menu li .dropdown-item:hover {
    color: rgb(230, 12, 12);
    font-weight: 600;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #444;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        text-align: left;
        padding: 15px 25px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        color: white;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f8f9fa;
        /* Match your navbar color */
        z-index: 1000;
    }

    .dropdown-menu {
        position: static;
        float: none;
    }
}


/* header_End */

/* carosal */
.carousel-item {
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* Black with 45% opacity */
    z-index: 1;
}

.carousel-caption {
    position: relative;
    z-index: 2;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 8.25rem !important;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: var(--bs-carousel-caption-color);
    text-align: center;
}


.carousel-caption h5 {
    font-size: 25px;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 18px;
}

.carousel-item .carousel_img  {
    height: 600px;
}

@media(max-width:400) {
    .carousel_img  {
        max-height: 400px !important;
    }
}

@media(max-width:451px) {
    .carousel-item .carousel_img   {
        max-height: 700px !important;
    }
}

@media(max-width:676px) {
    .carousel-item .carousel_img {
       max-height: 700px !important;
    }
}

@media(max-width:991px) {
    .carousel-item .carousel_img {
        height: 800px !important;
    }

    .carousel-caption {
        position: absolute;
        right: 15%;
        bottom: 8.25rem !important;
        left: 15%;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        color: var(--bs-carousel-caption-color);
        text-align: center;
    }
}

/* header_nevigation */



/* Video_section */
.video-container {
    position: relative;
    height: 500px;
    /* Set fixed height instead of padding-bottom */
    overflow: hidden;
    max-width: 900px;
    margin: 140px auto 0;
    border: 5px solid #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@media(max-width:451px) {
    .video-container {
        margin-top: 210px;
    }
}

@media(max-width:400px) {
    .video-container {
        margin-top: 210px;
    }
}

@media(max-width:992px) {
    .video-container {
        margin-top: 300px;
    }
}

@media(max-width:676px) {
    .video-container {
        margin-top: 200px;
    }
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width:450px) {
    .video-container {
        height: 250px;
    }
}

/* conut_down_section */

.stats-section {
    background-color: #00266a;
    /* Navy Blue */
    color: white;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    margin: 100px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-box {
    flex: 1 1 200px;
    margin: 20px;
}

.stat-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
}

/* Conut_down_section_exit */

/* About_entry */

.about-section {
    padding: 50px 20px;
    background-color: #fff;

}

.about-section h2 {
    font-size: 68px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    font-family: "Qwigley", cursive;
}

.about-section h2::after {
    content: '';
    display: block;
    width: 105px;
    height: 3px;
    background-color: rgb(243, 15, 15);
    margin-top: -15px;
    border-radius: 3px;
    margin-left: auto;
    margin-right: auto;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.about-image {
    flex: 1 1 45%;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.about-image:hover img {
    transform: scale(1.08);
}


.about-text {
    flex: 1 1 50%;
    animation: fadeInUp 5s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px;
    border-radius: 10px;
}

.about-text h3 {
    color: #000;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;

}

.about-text p {
    font-size: 14px;
    color: #000;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.about-text p:hover {
    color: #333;
}

.about_btn {
    text-align: center;
    /* This centers the <a> inside */
    margin-top: 20px;
}

.about_btn a {
    display: inline-block;
    padding: 12px 25px;
    background-color: #00266a;
    /* Deep Blue */
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about_btn a:hover {
    background-color: #0144b3;
    /* Brighter Blue on hover */
    transform: translateY(-2px);
}

/* Animation keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        width: 100%;
    }
}

/* team_section */

.team-section {
    padding: 40px 20px;
    background-color: #fff;
}

.team-section h3 {
    font-weight: 600;
    font-size: 35px;
    text-align: center;
    margin-bottom: 50px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
}

.team-card .name {
    color: #003087;
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0 5px;
}

.team-card .title {
    font-size: 14px;
    color: #000;
    margin-bottom: 15px;
}

/* team_section_exit */


/* About_exit */

/* Service */

.services-section {
    background-color: #032a70;
    /* dark blue background */
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.services-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    flex: 1 1 220px;
    background: transparent;
    padding: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service-box h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
}

.service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #006eff;
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 110, 255, 0.4);
    transition: background 0.3s ease, transform 0.2s ease;
}

.service-btn:hover {
    background: #0050c8;
    transform: translateY(-2px);
}

.banner {
    background-image: url('Images/banner/BANNER.avif');
    /* Replace with your image path */
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* dark overlay */
}


.banner-text {
    position: relative;
    z-index: 1;
}

.banner-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin-top: 80%;
}

.banner-text p {
    font-size: 20px;
    margin-top: 10px;
}

.service-section {
    padding: 60px 20px;
    background: linear-gradient(to bottom, #e6effa, #d9e7f5);
    /* Light blue gradient */
    text-align: center;
}

.service-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}

.security-section {
    background: linear-gradient(to bottom, #e6effa, #d9e7f5);
    padding: 60px 20px;
    text-align: center;
}

.security-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.service-section p {
    color: #000;
    width: 100%;
}

.security-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.security-card {
    background-color: #fff;
    color: #01245c;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    max-width: 320px;
    flex: 1 1 calc(33.33% - 40px);
    transition: transform 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
}


.surveillance-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 40px;
    background-color: #fff;
}

.surveillance-image {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.surveillance-image img {
    width: 100%;
    height: 300px;
    border-radius: 4px;
}

.surveillance-text {
    flex: 1;
    min-width: 300px;
}

.surveillance-text h1 {
    font-size: 30px;
    font-weight: bold;
    color: #1e1e1e;
    margin-bottom: 20px;
}

.surveillance-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .surveillance-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .surveillance-image {
        padding-right: 0;
        margin-bottom: 20px;
    }
}

.security-services-section {
    background-color: #f9f9f9;
    /* light background */
    padding: 60px 20px;
    text-align: center;
}

.section-security-title {
    color: #000;
    font-weight: 600;
}

.section-security-description {
    color: #000;
    font-size: 15px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

.section-description {
    font-size: 17px;
    line-height: 1.8;
    color: #fff;
}

.who-can-use-section {
    background-color: #002366;
    /* Dark blue background */
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
}

.who-can-use-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.who-can-use-section .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.who-can-use-section .section-description {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}


/* Service_inner */




/* Why_choose_us */

.content-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #444;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
}

span {
    color: #d88a00;
    font-weight: bold;
    margin-right: 5px;
}



/* Why_choose_us_exit */


/* Gallery_section */
.gallery-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.gallery-section h2 {
    text-align: center;
    color: #444;
    margin-bottom: 30px;
    font-size: 26px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

@media (max-width: 450px) {
    .gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }

    .gallery img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        margin-bottom: 20px;
    }
}


/* Gallery_section_exit */

/* blog_section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-section {
    padding: 60px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
    color: #000;
    font-weight: 600;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #fafafa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.card-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
}

.blog_inner_section {
    padding: 50px 0;
}

.blog_inne_img img {
    height: 500px;
    width: 800px;
    margin: auto;
}

.blog_inner_section p {
    font-size: 14px;
    width: 100%;
}

/* blog_section_exit */

.Service_inner {
    display: flex;
    flex-wrap: wrap;
    background-color: #0d2a61;
    color: #333;
}

.text-content {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 60px 40px;
    position: relative;
}

.text-content h1 {
    font-size: 2em;
    font-weight: bold;
    color: #1e1e1e;
    margin-bottom: 20px;
}
@media(max-width:450px) {
    .text-content h1 {
        font-size: 22px;
    }
    .surveillance-text h1 {
        font-size: 22px;
    }
}
@media(max-width:576px) {
    .text-content h1 {
        font-size: 25px;
    }
    .surveillance-text h1 {
        font-size: 25px;
    }
}
@media(max-width:768px) {
    .text-content h1 {
        font-size: 30px;
    }
    .surveillance-text h1 {
        font-size: 30px;
    }
}
@media(max-width:992px) {
    .text-content h1 {
        font-size: 27px;
    }
    .surveillance-text h1 {
        font-size: 27px;
    }
}

.text-content p {
    line-height: 1.6;
    font-size: 16px;
    color: #444;
}

.image-content {
    flex: 1;
    min-width: 300px;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative angled lines */
.text-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 60px solid #0d2a61;
    border-right: 100vw solid transparent;
}

.text-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 60px solid #0d2a61;
    border-right: 100vw solid transparent;
}



/* Service_exit */

/* Mission_section */
.advisory-section {
    padding: 50px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.advisory-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.advisory-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.advisory-card {
    border: 1px solid #333;
    padding: 30px 20px;
    width: 300px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.advisory-card:hover {
    transform: translateY(-5px);
}

.advisory-card h4 {
    font-size: 18px;
    font-weight: 600;
}

.advisory-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* Mission_section exit */

/* Industry_Solutions */
.industry-section {
    background-color: #00266a;
    /* Deep Blue */
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
}

.industry-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.industry-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.industry-box {
    background-color: #fff;
    color: #000;
    padding: 30px 20px;
    width: 200px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.industry-box:hover {
    transform: translateY(-5px);
}

.industry-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.industry-box p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Industry_Solutions-exit */

/* Conversation_section */
.conversation-section {
    background-color: whitesmoke;
    /* White background */
    padding: 70px 20px;
    font-family: Arial, sans-serif;
}

.conversation-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .conversation-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .whatsapp-btn {
        margin: 0 auto;
    }
}


.conversation-content h2 {
    color: #00266a;
    /* Navy blue text */
    font-size: 28px;
    font-weight: 600;
    margin: 10px 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1ebd5b;
}

.whatsapp-btn i {
    font-size: 20px;
}

/* Blog */
.blog-section {
    padding: 40px 20px;
    background: #f9f9f9;
    max-width: 1200px;
    margin: auto;
    margin: 50px 0;
}

.blog-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-content a {
    color: #0033cc;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.blog-content a:hover {
    text-decoration: underline;
}



/* Blog_exit */
/* Contact_entry */

.contact-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.contact-section h3 {
    font-size: 70px;
    font-weight: 500;
    text-align: center;
    margin: 50px 0 80px 0;
    font-family: "Qwigley", cursive;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.contact-map {
    flex: 1 1 50%;
    min-height: 400px;
}

.contact-info {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    margin-bottom: 15px;
    color: #333;
}

.contact-info p {
    margin: 10px 0;
    color: #555;
    font-size: 14px;
}

.contact-form {
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 18px;
    border: none;
}

.our_branches h3 {
    font-size: 30px;
    color: #fff;
    text-align: center;
    font-family: Rubik;
    font-weight: 500;
    background-color: #1A1676;
    padding: 20px;
}

@media (max-width:450px) {
    .our_branches h3 {
        font-size: 20px;
        font-weight: 500;
    }
}

/* contact_exit */

/* portfolio_section */
.portfolio-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    /* Light background */
}

.portfolio-section h2 {
    color: #083A6B;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-section ul {
    padding-left: 20px;
}

.portfolio-section ul li {
    margin-bottom: 10px;
}

.portfolio-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.btn-primary {
    margin: auto;
}





/* portfolio_section_exit */



/* footer_start */
.footer {
    background-color: #222;
    color: #fff;
    /* padding: 40px 20px; */
    padding: 50px 20px 0 20px;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1 1 220px;
    margin: 10px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #555;
    padding-bottom: 5px;
}

.footer-column ul,
.footer-column a {
    font-size: 14px;
    color: #fff;
}

.footer-column p {
    font-size: 14px;
    color: #fff;
    width: 250px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #e4e952;
    font-weight: 600;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
}

.social-icons img {
    width: 18px;
    height: 18px;
    filter: brightness(1) invert(1);
    /* makes icons white */
    transition: transform 0.3s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin: 20px 0;
    }
}


/* footer_End */
/* copyright */
.footer-container .copyright-section {
    padding: 1rem 0 1rem;
    text-align: center;
    border-top: 1px solid #fff;
    font-size: 14px;
}

.footer-container .copyright-section a {
    color: #b2e3ff;
    font-weight: 600;
    text-decoration: none;

}

@media(max-width:450px) {
    .navbar-brand img {
        display: none;
    }
}


/* logo_mobile */


/* General Mobile Styling */
@media (max-width: 575.98px) {
    .navbar .text-danger {
        font-size: 20px !important;
        font-weight: 600 !important;
    }

    .navbar .text-primary {
        font-size: 16px !important;
        margin-top: -30px;
        margin-left: 27px;
    }

    .navbar .badge {
        font-size: 11px !important;
        white-space: normal;
        line-height: 1.2;
    }

    .navbar .btn-danger {
        padding: 10px 10px !important;
        font-size: 12px;
    }

    .navbar .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }

    .navbar .d-flex.justify-content-center.align-items-center.mb-2 h6 {
        font-size: 20px !important;
        text-align: left;
    }

    .navbar .d-flex.justify-content-between.align-items-center.px-2 {
        gap: 10px;
        justify-content: space-around !important;
        flex-wrap: wrap;
    }

    .navbar img[alt="Indian Flag"] {
        height: 100px !important;
    }
}



/* Specific tighter layout for 380px */
@media (max-width: 401px) {
    .navbar .text-danger {
        font-size: 15px !important;
    }

    .navbar .text-primary {
        font-size: 14px !important;
    }

    .navbar .badge {
        font-size: 10px !important;
    }

    .navbar .btn-danger {
        font-size: 11px !important;
        padding: 10px 10px !important;
    }

    .navbar .navbar-toggler-icon {
        width: 18px;
        height: 18px;
    }
}

/* Fixed_whatsapp */

.Whatsapp_fixed_icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.Whatsapp_fixed_icon:hover {
    transform: scale(1.1);
}

.Whatsapp_fixed_icon i {
    color: white;
    font-size: 24px;
}

/* Tap_aarrow */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 80px;
    /* adjust to avoid overlap with WhatsApp */
    background-color: #dc3545;
    color: white;
    padding: 12px 14px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: none;
    /* Hidden initially */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top:hover {
    transform: scale(1.1);
}

.scroll-to-top i {
    font-size: 18px;
}

/* Tap_aarrow */


.carousel-caption h5 {
    font-size: 2rem;
}

.carousel-caption p {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}