* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

html,
body {
    height: 100%;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

:root {
    --blue: #005b99;
    --yellow: #f4c300;
    --dark: #2b2b2b;
    --white: #ffffff;
}

.call-button {
    position: fixed;
    right: 20px;
    top: 60%;
    transform: translateY(-50%);
    background-color: #005b99;
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    animation: phone-ring 2.5s infinite;
    transition: background 0.3s;
    max-width: calc(100vw - 40px);
    cursor: pointer;
}

@keyframes phone-ring {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    25% {
        transform: translateY(-50%) rotate(15deg);
    }

    50% {
        transform: translateY(-50%) rotate(-15deg);
    }

    75% {
        transform: translateY(-50%) rotate(15deg);
    }

    100% {
        transform: translateY(-50%) rotate(0deg);
    }
}

@keyframes phone-ring-mobile {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.call-button:hover {
    background-color: #003f6b;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: white;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #005b99;
}

header .logo {
    font-size: 28px;
    font-weight: bold;
    color: #005b99;
}

header .logo .sapte {
    font-size: 32px;
    font-style: italic;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #555;
    font-size: 18px;
}

nav a.active {
    color: #005b99;
    font-size: 20px;
    font-weight: bold;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.sapte {
    color: #005b99;
    font-size: 40px;
    font-style: italic;
    margin-left: 6px;
}

.home_link {
    color: #005b99;
    font-size: 20px;
    font-weight: bold;
}

.contact-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 60px 50px;
    gap: 50px;
}

.contact-left {
    background: #005b99;
    color: white;
    padding: 30px 40px;
    border-radius: 10px;
    max-width: 400px;
    animation: pulse 2s infinite ease-in-out;
}

.contact-left h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-left p {
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-left a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

.contact-right {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.contact-right h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #005b99;
}

.contact-right label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-right input,
.contact-right textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-right button {
    margin-top: 20px;
    background: #005b99;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-right button:hover {
    background: #003f6b;
}

.sapte_footer {
    color: #005b99;
    font-size: 40px;
    font-style: italic;
    margin-left: 26px;
}

.footer-box {
    background: linear-gradient(180deg, #0a2239, #081b2f);
    color: #ffffff;
    padding: 60px 0 40px;
}

.footer-container {
    display: grid;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.logo small {
    font-size: 12px;
    letter-spacing: 2px;
    margin-left: 30px
}

.footer-col p,
.footer-col ul li {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}



.footer-col ul a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul a:hover {
    color: #f4c300;
}

.footer-col .logo {
    font-size: 24px;
}

.green {
    color: #f4c300;
    margin-top: 15px;
}

.phone {
    font-size: 20px;
    font-weight: bold;
    margin: 8px 0 10px;
}

.border_link {
    color: #f4c300;
}

.menu-toggle {
    display: none;
}

@keyframes pulse {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
    }

    .contact-left,
    .contact-right {
        max-width: 90%;
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .contact-nonstop h2 {
        font-size: 24px;
    }

    .contact-nonstop .phone {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        padding: 0 15px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col h3 {
        font-size: 16px;
    }

    .footer-col p,
    .footer-col ul li,
    .footer-col a {
        font-size: 14px;
    }

    .footer-col .logo {
        font-size: 20px;
    }

    .footer-col .logo small {
        font-size: 10px;
        margin-top: 3px;
    }
}

@media (max-width: 500px) {

    .contact-section {
        flex-direction: column;
        align-items: center;
        padding: 30px 15px;
        gap: 20px;
    }

    .contact-left,
    .contact-right {
        max-width: 100%;
        width: 100%;
        padding: 20px;
        border-radius: 8px;
    }

    .contact-left h2,
    .contact-right h2 {
        font-size: 20px;
        text-align: center;
    }

    .contact-left p,
    .contact-right label,
    .contact-right input,
    .contact-right textarea {
        font-size: 16px;
        text-align: center;
    }

    .contact-right button {
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
    }

    .call-button {
        top: auto;
        bottom: 60%;
        right: 20px;
        transform: none;
        font-size: 16px;
        padding: 12px 18px;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 230px) {
    .footer-container {
        gap: 12px;
        padding: 0 8px;
    }

    .footer-col h3 {
        font-size: 11px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 9px;
    }
}