/* Main Variables and Root Styles */
:root {
    --primary-color: #1c6189;
    --secondary-color: #38b6ff;
    --tertiary-color: #e91e63;
    --highlight-color: #ffeb3b;
    --accent-color: #2196f3;
    --success-color: #4caf50;
    --error-color: #f44336;
    --light-color: #f5f5f5;
    --dark-color: #212121;
    --neutral-color: #9e9e9e;
    --white-color: #f3f3f3;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #151515;
    background-color: #fff;
}

/* Typography Classes */
.dmSans {
    font-family: "Raleway", sans-serif;
}

.poppins {
    font-family: 'Poppins', sans-serif;
}

.jost {
    font-family: "Jost", sans-serif;
}

.blue {
    color: #1c6189;
}

.grey {
    color: #646464;
}

.text-white {
    color: #fff;
}

/* Font Weights */
.w100 { font-weight: 100; }
.w300 { font-weight: 300; }
.w400 { font-weight: 400; }
.w500 { font-weight: 500; }
.w600 { font-weight: 600; }
.w700 { font-weight: 700; }
.w800 { font-weight: 800; }

/* Line Heights */
.lh120 { line-height: 120%; }
.lh140 { line-height: 140%; }
.lh150 { line-height: 150%; }
.lh160 { line-height: 160%; }

/* Margins */
.mt1 { margin-top: 1%; }
.mt2 { margin-top: 2%; }
.mt3 { margin-top: 3%; }
.mt5 { margin-top: 5%; }

/* Container */
.mycontainer {
    width: 90%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .mycontainer {
        width: 730px;
    }
}

@media (min-width: 992px) {
    .mycontainer {
        width: 880px;
    }
}

@media (min-width: 1200px) {
    .mycontainer {
        width: 1120px;
    }
}

/* Header Styles */
.header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    border-radius: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    margin: auto;
    padding: 40px 0% 25px 0%;
}

h1 {
    margin: 0;
    font-size: 2.5rem;
    background: linear-gradient(to right, var(--highlight-color), var(--tertiary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

h3 {
    margin: 0;
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--white-color), var(--light-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Navigation Styles */
.navbar {
    background: linear-gradient(to right, #ffffff, #f0f8ff);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    width: 78%;
    z-index: 1000;
    right: 0;
    left: 0;
    margin: auto;
    padding: 8px 20px;
    top: 25px;
}

.navbar.active {
    background: linear-gradient(to right, #f0f8ff, #e0f0ff);
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    padding: 10px 15px;
    margin: 0 5px;
    transition: all 0.3s ease;
    border-radius: 8px;
    color: #290302;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #38b6ff;
    background-color: rgba(56, 182, 255, 0.1);
    transform: translateY(-2px);
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #38b6ff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::after {
    width: 50%;
}

.btnn {
    background: linear-gradient(to right, #38b6ff, #1c6189);
    padding: 8px 20px;
    border-radius: 50px;
    margin: 10px 25px;
    box-shadow: 0 4px 8px rgba(56, 182, 255, 0.3);
    transition: all 0.3s ease;
    color: #fff !important;
    font-weight: 700;
    text-align: center;
    display: inline-block !important;
}

.btnn:hover {
    background: linear-gradient(to right, #1c6189, #38b6ff);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(56, 182, 255, 0.4);
}

.logo-img {
    transition: transform 0.3s ease;
}

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

a.navbar-brand {
    max-width: 19%;
    margin: 0;
}

/* Contact Form Styles */
.section4 {
    background-color: #fff;
    padding: 5% 0 5% 0;
}

.frm-main-Box {
    position: relative;
    z-index: 1;
    padding: 8% 6% 0% 6%;
}

.talkBox {
    padding: 8% 7% 8% 7%;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0.436px -4.981px 28.5px 1.5px rgb(228 228 228 / 29%);
}

input[type="text"], input[type="tel"], input[type="email"], select {
    padding: 10px 12px;
    border: 0;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    width: 100%;
    font-weight: 300;
    box-shadow: 0.261px -2.989px 22.8px 1.2px rgb(126 126 126 / 11%);
    margin-bottom: 15px;
    background-color: white;
    color: #646464;
}

input[type="submit"] {
    padding: 14px 60px;
    background: #38b6ff;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    transition-duration: 0.3s;
    border: 0;
    width: 100%;
    font-family: "Raleway", sans-serif;
    cursor: pointer;
}

input[type="submit"]:hover {
    transition-duration: 0.3s;
    background-color: #1c6189;
}

/* Captcha Styling */
.captcha-container {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.captcha-question {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

/* Status Message */
.status-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.status-success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer Styles */
.footer-section {
    padding: 3% 0 3% 0;
    background: #eff9ff;
}

.copyright-section {
    border-top: 1px solid #e4e4e4;
    padding: .8% 0;
    background: #eff9ff;
}

/* Responsive Styles */
@media only screen and (max-width: 992px) {
    .navbar {
        width: 90%;
    }
    
    a.navbar-brand {
        max-width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    a.navbar-brand {
        width: 50%;
    }
    
    div#navbarSupportedContent {
        background: #f6f6f6;
        padding: 5% 10px;
        border-radius: 8px;
        text-align: center;
    }
    
    .btnn {
        text-align: center;
        margin: 0;
        margin-top: 1%;
    }
    
    .frm-main-Box {
        padding: 0;
    }
    
    .talkBox {
        padding: 6% 5%;
    }
}