﻿/* ------------------------------
   GLOBAL TYPOGRAPHY
------------------------------ */
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Roboto:wght@400;500&display=swap" rel="stylesheet" >

.justifycenterssss {
    justify-content: center !important;
}
h1, h2, h3, h4, h5, h6 {
    color: #6BA0E8 !important;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Roboto Slab', serif;
    font-size: 28px;
}

p {
    color: #000 !important;
    line-height: 1.6;
    font-size: 16px;
}

strong {
    font-weight: 700;
    color: #111;
}

/* ------------------------------
   MODAL STYLING
------------------------------ */
.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    border-bottom: none;
    padding: 20px;
    background: #f4f6ff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header-logo1,
.modal-header-logo2 {
    height: 45px;
}

.modal-body h2 {
    font-size: 26px;
    margin-top: 10px;
}

.image-area img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

    .image-area img:hover {
        transform: scale(1.05);
    }

/* ------------------------------
   SOCIAL ICONS
------------------------------ */
.social-area ul {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 15px;
}

    .social-area ul li a {
        font-size: 22px;
        color: #576DC3;
        transition: 0.3s;
    }

        .social-area ul li a:hover {
            color: #33449c;
        }

/* ------------------------------
   CONTACT INFO BOXES
------------------------------ */
.contact-info-item {
    background: #000;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
    margin-bottom: 25px;
}

    .contact-info-item i {
        font-size: 40px;
        color: #576DC3;
        margin-bottom: 10px;
    }

    .contact-info-item h3 {
        font-size: 28px;
    }

    .contact-info-item a {
        display: block;
        margin-top: 5px;
        color: white;
        font-weight: 500;
        text-decoration: none;
        font-family: 'Roboto Slab', serif;
    }

        .contact-info-item a:hover {
            color: #6BA0E8  !important;
        }

/* ------------------------------
   FORM STYLING
------------------------------ */
#contactForm h3 {
    font-size: 51px;
    margin-bottom: 20px;
    color: #0A2E55 !important;
    text-align: center;
}

#contactForm .form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ccc;
    transition: 0.3s;
    margin-bottom: 12px;
}

    #contactForm .form-control:focus {
        border-color: #576DC3;
        box-shadow: 0 0 4px rgba(87, 109, 195, 0.4);
    }

#contactForm button.common-btn {
    background: #3A6FCA !important;
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    transition: 0.3s;
}

    #contactForm button.common-btn:hover {
        background: #0A2E55;
        color: white !important;
    }

/* MAP */
.map-item iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    border: none;
}

/* ------------------------------
   RESPONSIVE BREAKPOINTS
------------------------------ */

/* 📱 Mobile (0px–576px) */
@media (max-width: 576px) {

    .modal-header {
        flex-direction: column;
        text-align: center;
    }

    .modal-header-logo1,
    .modal-header-logo2 {
        height: 35px;
    }

    h2 {
        font-size: 45px !important;
    }

    p {
        font-size: 14px;
    }

    .contact-info-item {
        padding: 20px;
    }

    #contactForm h3 {
        font-size: 22px;
        text-align: center;
    }

    #contactForm button {
        width: 100%;
        margin-top: 10px;
    }

    .map-item iframe {
        height: 300px;
    }
}

/* 📱 Tablets (576px–768px) */
@media (max-width: 768px) {

    .modal-body h2 {
        text-align: center;
    }

    .image-area .col-lg-4 {
        margin-bottom: 15px;
    }

    .contact-info-item {
        padding: 25px;
    }

    #contactForm .form-control {
        padding: 10px;
    }

    .map-item iframe {
        height: 350px;
    }
}

/* 💻 Medium screens (768px–992px) */
@media (max-width: 992px) {

    .modal-body h2 {
        font-size: 24px;
    }

    #contactForm h3 {
        font-size: 24px;
    }

    .map-item iframe {
        height: 380px;
    }
}

.section {
    padding: 11em 2em;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.bg-attach-fixed {
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100%;
}



.page-title {
    text-align: center;
    font-size: 61px;
    font-weight: 700;
    color: #0A2E55 !important;
    margin-bottom: 30px;
}

.page-subtitle {
    text-align: center;
    font-size: 18px;
    color: black;
    font-weight: 800;
}




