/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dark-blue: #0a2463;
            --medium-blue: #1e3a8a;
            --light-blue: #3b82f6;
            --accent-blue: #60a5fa;
            --light-gray: #f8fafc;
            --medium-gray: #e2e8f0;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }

        h1 {
            font-size: 2.8rem;
            font-weight: 800;
        }

        h2 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--light-blue), var(--accent-blue));
            border-radius: 2px;
        }

        h3 {
            font-size: 1.6rem;
        }

        p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            color: var(--text-dark);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: linear-gradient(to right, var(--light-blue), var(--medium-blue));
            color: var(--white);
            border: none;
            border-radius: var(--border-radius);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
            background: linear-gradient(to right, var(--medium-blue), var(--dark-blue));
        }

        .btn-secondary {
            background: var(--white);
            color: var(--dark-blue);
            border: 2px solid var(--light-blue);
        }

        .btn-secondary:hover {
            background: var(--light-blue);
            color: var(--white);
        }

        section {
            padding: 80px 0;
        }

        .section-light {
            background-color: var(--light-gray);
        }

        /* Header & Navigation */
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--dark-blue);
        }

        .logo-text span {
            color: var(--light-blue);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--light-blue);
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--light-blue);
            transition: var(--transition);
        }

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark-blue);
            cursor: pointer;
        }

        /* Hero Section with Form */
        .hero {
            background: linear-gradient(rgba(10, 36, 99, 0.85), rgba(10, 36, 99, 0.9)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 60px 0;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
            align-items: center;
        }

        .hero-text h1 {
            color: var(--white);
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
        }

        .hero-text p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        /* Consultation Form */
        .consultation-form {
            background-color: var(--white);
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .consultation-form p{
            color: #3b3b3b !important;
        }

        .form-title {
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .expo-faq-section .accordion-button {
    background-color: #415a77;
    color: #fff;
    font-weight: 600;
    box-shadow: none;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
            font-family: 'Montserrat', sans-serif;
        }

        .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid var(--medium-gray);
            border-radius: var(--border-radius);
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--light-blue);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e293b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
        }

        .form-btn {
            width: 100%;
            margin-top: 10px;
            padding: 16px;
            font-size: 1.1rem;
        }

        /* Banner Sections */
        .banner-section {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
        }

        .banner-content h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .banner-content h2:after {
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(to right, var(--accent-blue), var(--white));
        }

        .banner-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }

        .banner-image {
            margin-top: 40px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .banner-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Why Choose Section */
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        #why-choose ul li {
            list-style: circle;
            padding-bottom: 10px;
        }

        .choose-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--light-blue);
        }

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

        .choose-icon {
            font-size: 2.5rem;
            color: var(--light-blue);
            margin-bottom: 20px;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            padding: 20px;
            background-color: var(--white);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: var(--light-gray);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: var(--light-gray);
        }

        .faq-answer.open {
            padding: 20px;
            max-height: 500px;
        }

        .faq-toggle {
            transition: var(--transition);
        }

        .faq-toggle.open {
            transform: rotate(180deg);
        }

        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 70px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: var(--accent-blue);
        }

        .footer-heading {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-blue);
            padding-left: 5px;
        }

        .contact-info {
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-info p {
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-info i {
            color: var(--accent-blue);
            margin-right: 10px;
            width: 20px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }


        /* Form Styling - Add this to your CSS file */



.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=30') center/cover;
    opacity: 0.1;
}

.lead-form {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.form-container {
    background: white;
    border-radius: 15px;
        padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.formInfo {
    transition: all 0.3s ease;
}

.frm-input .row {
    margin: 0 -15px;
}

.frm-input .col-md-6 {
    padding: 0 15px;
    margin-bottom: 10px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group select,
.input-group input {
    width: 100%;
    padding: 8px 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    appearance: none;
}

.input-group>.form-control, .input-group>.form-floating, .input-group>.form-select {
    font-size: 14px !important;
}

.input-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e293b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
    cursor: pointer;
}

.input-group input::placeholder,
.input-group select:invalid {
    color: #94a3b8;
}

.input-group select:focus,
.input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.input-group select:hover,
.input-group input:hover {
    border-color: #cbd5e1;
}

.input-group > div {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-group > div i {
    color: #64748b;
    font-size: 16px;
}

/* Form Labels (Optional - if you want to add floating labels) */
.input-group label {
    position: absolute;
    left: 20px;
    top: -10px;
    background: white;
    padding: 0 8px;
    font-size: 12px;
    color: #3b82f6;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
}

.input-group select:focus + div + label,
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
    opacity: 1;
    top: -8px;
}

.btnclinks.cta-btn-dark {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    margin-top: 10px;
}

.btnclinks.cta-btn-dark:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #0a2463 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
}

.btnclinks.cta-btn-dark:active {
    transform: translateY(-1px);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 30px !important;
}



.input-group input:invalid:not(:placeholder-shown),
.input-group select:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

/* Responsive design */
@media (max-width: 768px) {
    .counter-section {
        padding: 60px 0;
    }
    
    .heading {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .form-container {
        padding: 25px;
        margin: 0 15px;
    }
    
    .frm-input .col-md-6 {
        margin-bottom: 20px;
    }
    
    .input-group select,
    .input-group input {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .btnclinks.cta-btn-dark {
        padding: 16px 35px;
        font-size: 16px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .heading {
        font-size: 1.7rem;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .frm-input .col-md-6 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Animation for form submission */
@keyframes formSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.formInfo:focus-within {
    animation: formSuccess 0.5s ease;
}

.input-group {
    margin-bottom: 5px;
}

/* Custom select dropdown styling */
.input-group select option {
    padding: 10px;
    font-size: 16px;
}

.input-group select option:first-child {
    color: #94a3b8;
    font-style: italic;
}

/* Placeholder styling */
::placeholder {
    color: #94a3b8;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #94a3b8;
}

::-ms-input-placeholder {
    color: #94a3b8;
}

/* Form focus effects */
.input-group {
    position: relative;
}

.input-group:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.3s ease;
}

.input-group:focus-within:after {
    width: 100%;
}

/* Form container animation */
.form-container {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    .d-none.d-md-flex {
        display: none !important;
    }
    
    .heading {
        padding: 0 15px;
    }
}










        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-text h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            section {
                padding: 60px 0;
            }
            
            .hero {
                padding: 80px 0;
                min-height: auto;
            }
            
            .consultation-form {
                padding: 30px;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero-text h1 {
                font-size: 2.3rem;
            }
            
            .btn {
                padding: 12px 24px;
            }
        }


        *{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}
a{text-decoration:none; color:#333;}
a:hover{text-decoration:none;}
ul, ol{list-style-type:none;}
img{border:none;}
body{font-family: 'Poppins', sans-serif; overflow-x: hidden;}
/******************Section Animation *****************/ 
.come-in {
  transform: translateY(150px);
  animation: come-in 0.8s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 0.6s;
}
.already-visible {
transform: translateY(0);
  animation: none;
}

@keyframes come-in {
  to { transform: translateY(0); }
}

/*=====css for scroll=====*/
.clr{clear:both;}
#main-wrapr{width:100%;margin:0 auto;padding:0;}
.fullwid {width:100%;margin:0 auto;padding:0; text-align:center;}
.comaamain{width:1200px; margin:0 auto;padding:0; clear:both;}

/**/

* { margin: 0; padding: 0; }
.formsection .form-control{height:auto;padding:13px 12px;background:#fff;}
.backbg { position:absolute; top:0; }
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus{outline:none;}
.slides, .flex-control-nav,
.flex-direction-nav{margin:0;padding:0;list-style:none;}
.flexslider a img{outline:none;border:none;}
.flexslider .slides > li{display:none;-webkit-backface-visibility:hidden;}
.flexslider .slides img{width:1600px;height:349px;position:relative;left:-260px;display:block;}
.slides:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}
html[xmlns] .slides{display:block;}
* html .slides{height:1%;}
.flexslider{position:relative;background:#ffffff; width:1200px; margin:0 auto;}
.flex-container{max-width:100%;overflow:hidden; clear:both;    margin-top: -7px;}
.flexslider .slides{}
.flexslider .flex-control-nav{position:absolute;width:100%;bottom:20px;text-align:center;margin:0 0 0 -10px; display:none;}
.flex-control-nav li{display:inline-block;}
.flex-control-paging li a{display:block;cursor:pointer;text-indent:-9999px;width:12px;height:12px;margin:0 3px;background-color:#e7e7e7;-webkit-border-radius:12px;-moz-border-radius:12px;border-radius:12px;-webkit-box-shadow:inset 0 0 0 2px #b6b6b6;-moz-box-shadow:inset 0 0 0 2px #b6b6b6;box-shadow:inset 0 0 0 2px #b6b6b6;}
.flex-control-paging li a.flex-active{background-color:#fff;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
/* n*/
.flexslidernew a:active,

.flexslidernew a:focus{outline:none;}
.slides, .flex-control-nav,
.flex-direction-nav{margin:0;padding:0;list-style:none;}
.flexslidernew a img{outline:none;border:none;}
.flexslidernew .slides > li{display:none;-webkit-backface-visibility:hidden;}

.flexslidernew{position:relative;background:#ffffff; width:440px; margin:0 auto;}

/* bbvc */

.sexbox { position:absolute; z-index:3; top:0; width:100%;}
ul.catlist li { text-align: center; display:inline-block; width:50%; vertical-align:top; min-height:250px; margin-bottom:20px; }
ul.catlist li .tsu { width:100%; height:auto; display:table-cell;transition: all 0.5s ease; background:#f4f4f2;vertical-align:middle; text-align:center;display: flex;justify-content: center;align-items: center; padding: 25px 0; }
.fs-20{font-size: 20px; padding: 20px 0;}
ul.catlist li:hover .tsu { background:#053476;}
ul.catlist li:hover img{
/*-webkit-filter: grayscale(100%);
filter: brightness(50%);*/
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
h2.cathead { text-transform:uppercase; color:#000000; font-size:20px; font-family:'Poppins'; margin-bottom:20px; }
ul.catlist li  p.txt{ color:#666666;  font-size:14px; margin-top:20px; width:230px;}
.graybgblk { background:#f4f4f2; padding:40px 0; margin:40px 0;}
.frmhead {font-size:20px; font-family:'Poppins'; color:#000000; line-height:20px; margin-top:20px; text-transform:uppercase; margin-bottom:20px;}
.frmhead span {   font-family: 'Poppins Semibold';  color:#00adef; display:block; }
.frmblk { padding:30px 25px; background:#fff; min-height:200px;}

.catfrmblk  .col-md-9.mdfiy { width:74.5%; padding-right:5px;}
.catfrmblk  .col-md-3.mdfiy {width:25.5%; padding-left:0px; padding-right:0px; }


.graybgblk .col-md-6.mdfiy {width:48.5%; padding-left:0px; padding-right:0px; }
.graybgblk .col-md-3.mdfiyt { text-align:right; }

.reportsection  .col-md-9.mdfiy { width:73.5%; padding-right:1px;}
.reportsection .col-md-3.mdfiyt { text-align:right; }

.bannersection{width:100%;padding:40px 0; overflow:hidden;}


.frmblk .frm-input{padding:0px;}
.frmblk .frm-input .input-group{padding-bottom:7px;}
.height80{height:80px !important; vertical-align:top;}
.frmblk .formsection .form-control{padding:9px 12px;}
.frmblk .formsection .input-group-addon{padding:5px 7px;     background: #fff;}
.frmblk .rm-prop{margin-top:0px;}


.frm-input .col-md-6 {margin-bottom: 15px;}

.btn-default.btn-blue{color:#00adef; border-color:#00adef;font-size:14px;font-family:"Poppins Regular";padding:5px 15px;background:transparent; margin:2px auto 0; display:block;}
.btn-default.btn-blue:hover{color:#fff;background-color:#00adef;}
.posl { position:relative;}
.newsletterblk { padding:26px; background:#f4f4f2; margin-top:20px;}
.newhead { font-size:20px; line-height:20px;font-family:"Poppins Regular"; text-transform:uppercase;    margin-bottom: 7px;}
.newhead span{ font-family:"Poppins Semibold"; text-transform:uppercase;}
.addoncb{display:block;float:left;position:absolute;right:2px;top:2px;width:60px;border:none;background:#00adef;font-size:12px;font-weight:normal;font-style:normal;color:#fff;padding:5px 0;border-top-left-radius:0px!important;border-bottom-left-radius:0px!important;}
.newsletterblk .form-control { height:31px;  font-size:13px;}
.newsletterblk p { color:#666666; font-size:13px; line-height:14px;font-family:"Poppins"; margin-bottom:0px; margin-top:10px; }
.comhead {font-size:20px; line-height:20px; font-family:"Poppins"; text-transform:uppercase;  }
.comhead  .morelin { float:right; font-size:11px;}
.comhead  .morelin  span{  border-bottom:1px solid #c4c4c2;}
.comhead  .morelin  .fa-chevron-right {color:#00adef;}
.trs { margin-top:15px; margin-bottom:15px;}
.txtfix15 { margin-left:15px;}
.trs img  { border:1px solid #dfdfdf;}
.simtxt { font-size:14px;font-family:"Poppins Regular"; line-height:18px; }
.fixalign {    margin-left: 15px;    margin-right: -15px;}
.profilehead {font-family:"Poppins Semibold"; font-size:17px; line-height:20px;}
.profilehead span { font-size:14px; font-family:"Poppins"; display:block;}
/*.reportsection {    margin-bottom: 40px;}*/

.newcontentlist.text_left li {text-align: left;}


.contentlist.free_consult{
  display: flex;
      justify-content: space-evenly;
      align-items: center;
      margin-top: 30px;
      padding-left: 0;
}

.contentlist.free_consult li a{
  display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      color: #fff;
}

.contentlist.free_consult li a img {
  filter: invert(1);
}

.fulltxtimhblk.li_left li{
  text-align: left;
}

.contentlist.free_consult li{
  background:#87ceeb;
  padding: 20px 10px;
  width: 33%;
  text-align: center;
  font-size: 18px;
}


.dsblk1 { width:35%; float:left;}
.dsblk2 { width:62%; float:right; border-left:1px dotted #dfdfdf; margin-left:20px; padding-left:20px; min-height:320px; }
ul.intlist { margin-top:20px;}
ul.intlist li { font-size:14px; color:#333333; line-height:17px; display:block; margin-bottom:20px;}
ul.intlist li a{color:#333333;}
ul.intlist li span  { display:block; color:#999999; font-size:11px;	}
ul.intlist li a:hover{color:#00adef;}

.clientblk { float:none; clear:both; border-top:1px dotted #dfdfdf;  padding-top:20px; }
.clientblk p {font-family:"Poppins"; font-size:18px; line-height:18px; color:#000; font-weight: 500; }
.comname { text-align:right;font-family:"Poppins"; font-size:12px; font-style:italic;}
.clislider { clear:both; float:none;     overflow: hidden; margin-bottom:20px;     padding-top: 20px;}
.clislider .clientimg{ float:left; }
.clislider .clientimg  img { border:1px solid #dfdfdf;}
.clislider .clienttxt{font-size:14px; line-height:17px; font-family:"Poppins Regular"; color:#666666; padding-left:15px; float:left; width:47%; height:135px;}
.clislider .clienttxt span{ display:block; font-size:14px; font-family:"Poppins Semibold"; margin-bottom:15px;} 
.clislider .clienttxt a { color:#00adef;}
.footerbg{ margin-top:0px; padding-top:40px;background-image: linear-gradient(359deg, #003371 0%, #43b0f1 100%);}

.content-table 		{ width: 100%; display: table; border-collapse: separate;}
.content-row 		{ display: table-row;}
.column 			{ display: table-cell; }
.content1 			{ border-right: 1px dotted red;}
.paddingleft20{ padding-left:20px}
.paddingright20{ padding-right:20px}
.footbigtxt { font-size:30px; font-family:"Poppins"; line-height:30px; color:#fff; margin-bottom:20px;	 }
.footbigtxt span {color:#ababa5; font-size:14px; display:block; line-height:14px;}
ul.footlink { margin-bottom:0px;}

.headeblk { padding:30px 0 0; clear:both;}

.headeblk .logosection { float:left; width:20%;}
.headeblk .lineri{ height:50px; border-right:1px dotted #dfdfdf; margin-top:7px; float:left; width:1px;}


.headeblk .rightsection { width:79.5%; float:left;}
.headeblk .rightsection .navbar-default { border-radius:0px; background:transparent; border:0px; margin-bottom:0px; clear:both;}


.headeblk .rightsection .navbar-default .navbar-collapse, .headeblk .rightsection .navbar-default .navbar-form {padding-right: 0px;}

.card-body .col-grey {
    color: #333333 !important;
}

.card-body .card-text {
  font-size: 16px;
}

.btn-blue {
  background-color: #003371;
  color: #fff;
}

.col-grey li {
  list-style: circle;
}






.headeblk .rightsection .navbar-default .navbar-nav>li { margin-right:18px;}
.headeblk .rightsection .navbar-default .navbar-nav > li:last-child { margin-right:0px;}
.headeblk .rightsection .navbar-default .navbar-nav>li>a {  padding:5px 8px; font-size:12px; background: transparent; text-transform:uppercase; color:#fff; }
.headeblk .rightsection .navbar-default .navbar-nav>.active>a, .headeblk .rightsection .navbar-default .navbar-nav>.active>a:focus, .headeblk .rightsection  .navbar-default .navbar-nav>.active>a:hover { border-bottom:3px solid #00adef; background:transparent;}
.headeblk .rightsection .navbar-default .navbar-nav > li > a:hover {  background:transparent;}
.headeblk .rightsection .navbar-default .navbar-nav > li > a.active{ background:transparent;}
/*.headeblk .rightsection .navbar-default .navbar-nav > li > a.dropdown-toggle:hover + .dropdown-menu{ display:block;}*/
/*
.headeblk .rightsection .navbar-default .navbar-nav > li.dropdown  + .dropdown-menu{ display:block;}*/

.headeblk .rightsection .navbar-default .navbar-nav > li .dropdown-menu > li > a { padding: 10px 20px;} 

.headeblk .rightsection .headerinfoblk { clear:both;}
.headeblk .rightsection .headerinfoblk .contblk{ float:left;    margin-top: 7px;}
.headeblk .rightsection .headerinfoblk ul.rightsocial{ float:right;  overflow:hidden; margin-bottom:0px; }
.headeblk .rightsection .headerinfoblk ul.rightsocial li { display:block;  float:left;       margin-right:7px; text-align:center; cursor:pointer;}
.headeblk .rightsection .headerinfoblk ul.rightsocial li a{ color:#666; width:35px; height:35px;  border: 1px solid #dfdfdf; padding:6px; border-radius: 50%; display:block; cursor:pointer;}
.headeblk .rightsection .headerinfoblk ul.rightsocial li a:hover, .headeblk .rightsection .headerinfoblk ul.rightsocial li a:focus{border: 1px solid #00adef; color:#00adef;}
/*.headeblk .rightsection .headerinfoblk ul.rightsocial li a:hover .fa{ color:#00adef;}
.headeblk .rightsection .headerinfoblk ul.rightsocial li:hover a{ color:#00adef; border: 1px solid #00adef;}
.headeblk .rightsection .headerinfoblk ul.rightsocial li:hover a .fa {color:#00adef;}*/

.headeblk .rightsection .headerinfoblk  ul.conblk { margin-bottom:0px;} 
.headeblk .rightsection .headerinfoblk  ul.conblk  li{ display:block; float:left; font-size:16px; line-height:15px; text-transform:uppercase; padding:4px 10px; margin-right:-2px;}
.headeblk .rightsection .headerinfoblk  ul.conblk  li.fi{ background:#00adef; color:#fff; font-size:14px; margin-right:1px;}
.headeblk .rightsection .headerinfoblk  ul.conblk  li.se{ background:#053476; color:#fff;}
.headeblk .rightsection .headerinfoblk  ul.conblk  li.see{ background:#053476; color:#fff; font-size:13px;border-left: 1px solid #fff; text-transform:lowercase;}
.headeblk .rightsection .headerinfoblk  ul.conblk  li.see a{text-decoration:none; color:#fff;}
.headeblk .rightsection .headerinfoblk  ul.conblk  li.see span{ text-transform:capitalize;}
.headeblk .rightsection .headerinfoblk  ul.conblk  li.la{ width:0px; height:0px; border-top:23px solid #053476; border-right:15px solid transparent; padding:2px 2px 2px 10px;}

/*inner page code start here */
/* .fullmainconent { min-height:700px; margin-top:-13px;} */
.innerheadbg{background-image:url('../images/innerheadbg.jpg');background-repeat:no-repeat;width:100%;height:154px; background-position:center center;  padding-top:40px;}
.hdrblk { clear:both; width:100%; padding-top:30px;}
div.innerhead { font-size:45px; line-height:25px; font-family:"Poppins"; color:#ced6e0; float:left; display:block; margin-top:0px;  }
.stahead { float:left; border-left:1px dotted #ced6e0; padding-left:20px; margin-left:20px;}
.stahead .hdk { font-size:15px; line-height:15px;  font-family:"Poppins"; color:#ced6e0;}
.stahead .hdk span{ display:block; font-size:23px; line-height:23px;}
ul.runner{ clear:both; padding-top:7px; }
ul.runner li{ font-size:14px; line-height:12px; margin-right:7px; display:inline-block; color:#fff;font-family:"Poppins Bold";}
ul.runner li a { color:#fff;font-family:"Poppins Regular"; }
p.innerbigtxt { font-family:"Poppins"; color:#333333; line-height:25px; font-size:22px; }
.text-light{color: #fff;}
h1.mainheading { font-size:50px; line-height:50px; font-family:"Poppins"; color:#00adef; border-bottom:1px solid #dfdfdf; padding-bottom:20px; margin-bottom:20px; }
h1.mainheading  span { color:#333333; font-family:"Poppins"; font-size:34px; }

h1.mainheading.bordenone{ border-bottom:0px; margin-bottom:0px; padding-bottom:0px;}

.topbor{    border-top: 1px solid #dfdfdf;
    padding-top: 30px;}
.subheading {font-size:34px;font-family:"Poppins"; line-height:34px; color:#333333;}
.innblk .fulltxtimhblk { margin-top:30px; width:100%; clear:both;  overflow:hidden;     border-bottom: 1px solid #dfdfdf;    padding-bottom: 30px;}
.innblk .fulltxtimhblk:last-child  { border-bottom:none;}
.textblk { width:66%; float:left;}
.textblk.mdfys { width:72%; float:left;}

.fulltxtimhblk{text-align: center; margin-top: 50px;}

.textblk p.simpetxt{ font-family:"Poppins Regular"; line-height:21px; font-size:14px; color:#666666;     text-align: left;}
.textblk p.simpetxt span {font-size:15px; color:#000; font-family:"Poppins Bold";}
.innerbigtxt.deter-fran{color: #133A6F; font-weight: 600; text-align: left;}


.textblk p.simpetxt > strong{ text-transform:uppercase; display:block; padding-bottom:5px;}
.textblk ul.contentlist { margin-top:20px; margin-bottom:10px; overflow:hidden;}
.bullet-text ul.contentlist li{ background-image:url(../images/bullet.png); margin-bottom:5px; color:#666666;     padding-left: 18px; background-repeat:no-repeat; background-position:0px 7px; margin-left:15px; }
.textblk ul.contentlist li { color:#333333;}
.textblk ul.contentlist li a { color:#00adef; font-size:15px; font-family:"Poppins Bold"; }
.textblk ul.contentlist li a:hover{ text-decoration:underline;} 

.subhead { font-size:22px; line-height:22px; color:#333; margin-bottom:10px; font-family:"Poppins"; margin-top:0px;}
.txtimg { width:320px; float:right;}
.txtimg.mdfys { width:280px; float:right;}
.txtimg.mdfys img {width: 100%;}
.w-100{width: 100%;}
.pt-5{padding-top: 5rem;}
.txtimg.mdfysleft { width:250px; float:left;}
.txtimg img{   float:right;}
.txtimg.mdfysleft img{ border:1px solid #dfdfdf;  float:left;}
.txtimg.mdfys.fleft { float:left;}
.txtimg.mdfys.fleft img{ border:1px solid #dfdfdf;  float:left;}
.profilename { font-size:17px; line-height:20px;font-family:"Poppins Semibold"; color:#333333; clear:both; padding-top:10px;}  
.profilename span{ font-size:14px; line-height:20px;font-family:"Poppins";  color:#333333; display:block; }  
.txtimg.leftpos { float:left; width:320px;}
.txtimg.leftpos img{  float:left;}
.textblk.rightpos { width:66%; float:right;}
.txtimg.leftposwidth { float:left; width:280px;}
.txtimg.leftposwidth img{  float:left;}
.textblk.rightposwidth { width:70%; float:right;}

ul.newcontentlist { margin-top:20px; margin-bottom:10px; overflow:hidden;}
 ul.newcontentlist li{ background-image:url(../images/bullet.png); margin-bottom:5px; color:#666666;     padding-left: 18px; background-repeat:no-repeat; background-position:0px 7px; margin-left:15px; width:31.5%;  display:inline-block; vertical-align:top; }
  ul.newcontentlist li { color:#333333;}
ul.newcontentlist li a { color:#00adef; font-size:15px; font-family:"Poppins Bold"; }
 ul.newcontentlist li a:hover{ text-decoration:underline;} 
 .contentlist.custome__ul{text-align: left;}
 .contentlist.custome__ul li {padding-bottom: 16px;}

.clr { clear:both; float:none;}
.innerfooter { background:#f4f4f2; padding:40px 0; margin-top:40px;}
ul.innblk {}
ul.innblk li{ width:240px; margin-left:20px; float:left; margin-bottom:0px;}
ul.innblk li.sts {    width: 340px;}
ul.innblk li:first-child { margin-left:0px; width:220px;}
.newbg { background:#fff; padding:19px;}
.contentlist.size-text {text-align: left;}
.contentlist.size-text li {padding-bottom: 20px;}
.custome-pr-5 {padding-right: 30px;}

.newbg .newhead { font-size:20px;font-family:"Poppins"; line-height:20px; color:#000000;}
.newbg .form-control { height:31px; font-size:13px;}
.newbg .newhead span{font-family:"Poppins Semibold";}
.newbg  p {font-family:"Poppins"; font-size:13px; line-height:14px; color:#666666; margin-top:10px;}
/*inner page code end here */

.contentlist.ul-img li {
  background-image: url(../images/bullet.png);
  margin-bottom: 5px;
  color: #666666;
  padding-left: 18px;
  background-repeat: no-repeat;
  background-position: 0px 7px;
  margin-left: 15px;
  padding-bottom: 20px;
}

.think-you {background:#133A6F; color: #ffff; padding: 20px 10px;}

.anticipate{background:#133A6F; color: #ffff; padding: 20px 30px;}

h2.cathead.custom_hover a{color: #053476; font-weight: 600;}


.reglink { background:#053476; font-size:18px; font-family:"Poppins Regular"; color:#fff; padding:7px 5px 7px; text-align:center; line-height:18px; text-transform:uppercase; margin-top:21px;}
.reglink span{ display:block; font-family:"Poppins Bold";  }
.reglink  a {color:#fff;}
ul.innblk li ul.intlist li { margin-left:0px; margin-bottom:10px; margin-right:0px; width:100%;}

ul.comtablist { margin-top:30px; padding-bottom:10px; padding-left: 0; display: flex;    flex-wrap: wrap;
    gap: 10px;}
ul.comtablist.martop10{ margin-top:10px;}
ul.comtablist li{ text-align:center; float:left; display:block; margin: 0 10px 0 0; background: #c7dbff;}
ul.comtablist li a{
      border-radius: 0px;
    padding: 4px 10px 6px;
    font-size: 16px;
        color: #0a0b0c;
    text-transform: capitalize;
    margin-right: 1px;
    font-weight: 500;
    font-style: italic;
}

ul.comtablist li a:hover, ul.comtablist li.active a{
  background: #c7dbff;
    color: #022b73;
    text-decoration: none;
}

.comtablist .breadcrumb {
  
}





/* ul.comtablist li a:hover::after, ul.comtablist li.active a::after{     content: '';
position: absolute; left: 5%; top: 100%; width: 0; text-decoration:none; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 10px solid #00adef; clear: both;} */

.fblk ul.catlist { margin-left:-15px; margin-right:-15px;}
.fblk h2.cathead { margin-bottom:5px;}
.fblk ul.catlist li  { height:auto;}
/* .fblk ul.catlist li .tsu { width:330px;}  */
.fblk  ul.catlist li p.txt { width:100%;    font-size: 13px; margin-top:10px;}
.fblk ul.catlist li img{
/*-webkit-filter: grayscale(100%);
filter: brightness(50%);*/
  -webkit-filter: brightness(100) invert(1);
  filter: brightness(100) invert(1);
}

.fblk ul.catlist li:hover img{
/*-webkit-filter: grayscale(100%);
filter: brightness(50%);*/
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);

}
ul.toprlist{ margin-left:0px; margin-right:-30px; padding: 30px;}
ul.toprlist li { width:33%; display:inline-block; vertical-align:top; }
ul.toprlist li img { border:1px solid #dfdfdf; border-radius: 10px;}
ul.toprlist li h3 { font-size:24px; line-height:22px; font-family:"Poppins"; color:#133A6F; font-weight: 600;}
ul.toprlist li p{ font-size:14px; line-height:18px; color:#333333; padding-right:20px;}
.textblk ul.contentlist.martop0{ margin-top:0px;}

h3.subHead { font-size:25px; line-height:20px; font-family:"Poppins Regular"; color:#333333; margin-top:0px; margin-bottom:20px; font-weight: 600;}
.cllist { width:100%; float:left; border-right:1px solid #dfdfdf; padding-right:10px; margin-right:20px;}
.cllist:last-child {  border-right:0px solid #dfdfdf;}

.cllist ul.listsec_withbg { margin-top:0px; margin-bottom:30px; overflow:hidden;}
.cllist ul.listsec_withbg li{ background-image:url(../images/bullet.png); margin-bottom:5px; color:#666666;     padding-left: 18px; background-repeat:no-repeat; background-position:0px 7px; margin-left:8px; }
.cllist ul.listsec_withbg li { color:#333333; font-family:"Poppins"; line-height:17px;}
.cllist ul.listsec_withbg li a { color:#333333; font-size:14px;    }
.cllist ul.listsec_withbg li a:hover{ text-decoration:underline;} 

h1.mainheadingoption2 { font-size:50px; line-height:40px; font-family:"Poppins"; color:#00adef; margin-bottom:10px; margin-top:20px; }
h1.mainheadingoption2 span { color:#333333; font-family:"Poppins"; font-size:34px; display:block; }
.innblk .fulltxtimhblknew { margin-top:30px; width:100%; clear:both;  overflow:hidden;     border-bottom: 1px solid #dfdfdf;    padding-bottom: 0px;}
.innblk .fulltxtimhblk:last-child  { border-bottom:none; text-align: center;}
.textblk { width:100%; float:left;}

.txtimgnoborder { width:320px; float:right;}
.txtimgnoborder img{ border:0px solid #dfdfdf;  float:right;}

.address-table 		{ width: 100%; display: table; border-collapse: separate;}
.address-row 		{ display: flex;flex-wrap: wrap; background: #133A6F;}
.address-row .addresscolumn 			{ display: table-cell;  vertical-align:top;  border-left: 1px solid #dfdfdf; margin-left:20px; padding-left:20px; padding-right:20px; padding-bottom:20px; margin-bottom:20px; padding-top: 20px;}
.address-row .addresscolumn:first-child { border-left:0px; margin-left:0px; padding: 20px;} 	
/*.column.sidebar1 	{ width: 23%; vertical-align:top;}*/
/*.column.sidebar2 	{ width: 56%;  border-right: 1px dotted #7c91ad; border-left: 1px dotted #7c91ad; margin-left:20px; margin-right:20px; padding-left:20px; padding-right:20px; vertical-align:top;}*/
.conthead {font-family:"Poppins"; line-height:22px; font-size:22px; text-transform:uppercase; color:#fff; margin-bottom:10px;}
.contacttxt { font-family:"Poppins"; color:#fff; font-size:14px; line-height:23px;}
.contacttxt a { color:#00adef; }
.contacttxt a:hover { text-decoration:underline;}
.conthead.capti { text-transform:capitalize;}

.mainform .form-control{height:41px; padding:10px 12px;background:#fff;-webkit-box-shadow:inset 0px 5px 5px 0px rgba(0,0,0,0.05);-moz-box-shadow:inset inset 0px 5px 5px 0px rgba(0,0,0,0.05);box-shadow:inset inset 0px 5px 5px 0px rgba(0,0,0,0.05); color:#999999;}
.mainform .input-group-addon{padding:6px 12px;background:#fff;-webkit-box-shadow:inset 3px 5px 5px 0px rgba(0,0,0,0.05);-moz-box-shadow:inset inset 3px 5px 5px 0px rgba(0,0,0,0.05);box-shadow:inset inset 3px 5px 5px 0px rgba(0,0,0,0.05); vertical-align:top;}
.mainform .input-group { margin-bottom:15px;}
label.labpad { font-size:16px; text-align:left; padding:5px 15px; }
label.labpad.mandatory:after{color:#f22406;content:"\f005";position:relative;top:-5px;font:normal normal normal 8px/1 FontAwesome;margin-right:2px;padding-left:5px;}

.sbk { margin-bottom:20px; }
 .commanmodfiy { margin-left:5px; width:31%; text-align: left;}
 .commanmodfiy input[type="checkbox"], .commanmodfiy input[type="radio"] { position:relative; top:2px;}
 
 .btn-default.formbtnlik { border:1px solid #00adef; font-size:16px; text-transform:uppercase; color:#00adef; padding:10px 20px; margin-top:10px; width:auto;}

.btn-default.formbtnlik:hover { background:#00adef; color:#fff;}
 
 .heightmag, .mainform .form-control.heightmag { height:100px; vertical-align:top;}
 
 .fixtop { position: relative;
    top: -12px;
    z-index: -2;}
 
ul.contentlistinds { margin-top:20px; margin-bottom:10px; overflow:hidden;}
ul.contentlistinds li{ background-image:url(../images/bullet.png); margin-bottom:15px; color:#666666;     padding-left: 18px; background-repeat:no-repeat; background-position:0px 7px; margin-left:15px; }
 ul.contentlistinds li { color:#333333;}
  ul.contentlistinds li > strong{ display:block;}
 ul.contentlistinds li a { color:#00adef; font-size:15px; font-family:"Poppins Bold"; }
 ul.contentlistinds li a:hover{ text-decoration:underline;} 

.subhead { font-size:22px; line-height:22px; color:#333; margin-bottom:10px; font-family:"Poppins"; margin-top:0px; padding-bottom: 20px;}
 
 ul.contentlistindscase { margin-top:0px; margin-bottom:10px; overflow:hidden;}
ul.contentlistindscase li{ background-image:url(../images/bullet.png); margin-bottom:15px; color:#666666;     padding-left: 18px; background-repeat:no-repeat; background-position:0px 7px; margin-left:15px; }
 ul.contentlistindscase li { color:#333333;}
 ul.contentlistindscase li strong{font-size:15px;  }
 ul.contentlistindscase li a { color:#00adef; font-size:15px; font-family:"Poppins Bold"; }
 ul.contentlistindscase li a:hover{ text-decoration:underline;} 
 
 p.simpetxtcase{ font-family:"Poppins Regular"; line-height:21px; font-size:14px; color:#666666;}
 
 p.simpetxtcase.stxtimg { margin:20px 0 10px; overflow:hidden; }
 
 p.simpetxtcase span {font-size:15px; color:#000; font-family:"Poppins Bold";}
 .simpetxtcase img { display:block; margin:5px 10px 5px 0px; border:1px solid #dfdfdf; float:left;}
 .modclr { clear:both; padding-top:10px;}
  ul.commancontentlist { margin-top:10px; margin-bottom:10px; overflow:hidden;}
 ul.commancontentlist li{ background-image:url(../images/bullet.png); margin-bottom:5px; color:#666666;     padding-left: 18px; background-repeat:no-repeat; background-position:0px 7px; margin-left:15px; }
ul.commancontentlist li { color:#333333;}
ul.commancontentlist li a { color:#00adef; font-size:15px; font-family:"Poppins Bold"; }
ul.commancontentlist li a:hover{ text-decoration:underline;} 

#myCarousel .carousel-inner>.item>a>img, .bannerimg .carousel-inner>.item>img {}
#myCarousel .carousel-indicators {bottom: 10px; z-index:2;     left:109px;}
#myCarousel .carousel-indicators li { width:50px; height:2px; border-radius:0px;background-color:#dfdfdf; border:0px;}
#myCarousel .carousel-indicators .active { background-color:#00ADEF; position:relative; top:-1px; height:2px;  border:0px;}
.fullfrm .txte { text-align:left;}
.fullfrm .col-md-1.mdfy {width:1%; margin-right:0px;}


.mandatory:after{color:#f22406;content:"\f005";position:relative;top:-5px;font:normal normal normal 8px/1 FontAwesome;margin-right:2px;padding-left:5px;}

.mainform .form-control.height80{ vertical-align:top;}

/*****Team********/
h1.rm-btm-pad{margin-bottom:0px;}
.img-container{/*border:1px solid #ccc;*/ cursor:pointer; overflow: hidden;border-radius: 50%; position: relative;margin-top: 20px;}
.img-container .hvr-area{position:absolute; padding: 10%; width:100%;height: 100%; top:0px;  opacity:0;
  -webkit-transition: opacity 0.7s ease-in-out;
  -moz-transition: opacity 0.7s ease-in-out;
  -o-transition: opacity 0.7s ease-in-out;
  transition: opacity 0.7s ease-in-out;
}
.img-container .hvr-area .bg{position: relative; transition: all 0.5s ease; background-color:#00adef;  width: 100%; display:table;
  height: 100%;
  border-radius: 50%;}  
  .img-container .hvr-area .bg .content{display:table-cell;color:#fff;word-wrap: break-word; text-align: center;  max-width: 180px; vertical-align: middle; text-align: center; font-family: 'Poppins Regular';padding: 15px; font-size:22px; line-height: 25px;}
  .img-container .hvr-area .bg .content .desig{border-top:1px solid #4dc6f4; padding-top: 10px; margin-top: 10px; font-size:14px;line-height: 16px;}
.img-container img{max-width: 100%;}
.innblk .content{text-align: center; margin-top:5px; min-height: 62px;}
.innblk .content .name{font-weight: bold; font-size: 16px;}
.img-container:hover .hvr-area{ opacity:1;}
.team-pop img{border-radius: 50%;max-width: 100%; border: 1px solid #ccc;}
.team-pop .content{font-family: 'Poppins Regular';font-size:30px; line-height: 32px; padding:5px 5px 15px 0px; color: #333;}
.team-pop .content .desig{font-size:14px; line-height:16px; color: #999;}
.team-pop .modal-dialog{width:660px;margin: 130px auto;}
.team-pop .modal-body{padding:30px; padding-top:0px;}
.team-pop .close{clear:both;position: absolute;border-top-right-radius: 6px;right: -15px;top: 0;background-color: #f0f0f0;transition: all 0.5s ease-in-out; color: #666;text-shadow: none; opacity: 1; padding: 8px 12px;     font-size: 24px;}
.team-pop .close:hover{background-color:#00adef; color:#fff;}
.team-pop .mrgn-tp{margin-top:30px;}

.contentlist.bullet-img li{
  background-image: url(../images/bullet.png);
  margin-bottom: 5px;
  color: #666666;
  padding-left: 18px;
  background-repeat: no-repeat;
  background-position: 0px 7px;
  margin-left: 15px;
  text-align: left;
}

.address-row .addresscolumn
 {
    display: table-cell;
    /* width: 33%; */
    vertical-align: top;
    border-left: 1px solid #dfdfdf;
    margin-left: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
}

.fran_thanks .ul.catlist li{
  display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.fran_thanks ul.catlist li p.txt{
  text-align: left;
}

.expansion{
  background: #eef1f7;
    color: #333333;
    padding: 40px 0;
  
}

.expansion h4 {
  text-align: center;
  padding-bottom: 30px;
}

.mx-50 {
  max-width: 50px;
}

.apt-cards{
      display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.apt-cards img {
  margin-bottom: 20px;
}


.key-sectors {
      background: #f9f9f9;
      padding: 60px 20px;
      border-radius: 20px;
      transition: all 0.4s ease;
    }

    .key-sectors h4 {
      font-size: 24px;
      text-align: center;
      margin-bottom: 35px;
    }

    .key-sectors h4 span {
      color: #43b0f1;
      background: rgba(13, 110, 253, 0.1);
      padding: 4px 10px;
      border-radius: 8px;
    }

    .key-sectors ul {
      list-style: none;
      padding: 0;
      height: 100%;
    }

    .key-sectors ul li {
      background: #fff;
      margin: 12px 0;
      padding: 18px 20px;
      border-left: 6px solid #43b0f1;
      border-radius: 10px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
       height: 100%;
    }

    .key-sectors ul li strong {
      color: #43b0f1;
      font-size: 1.1rem;
    }

    .key-sectors ul li:hover {
      background: #43b0f1;
      color: #fff;
      transform: translateY(-5px);
    }
    

    .key-sectors ul li:hover strong {
      color: #fff;
    }

    .key-sectors p {
      margin-top: 25px;
      text-align: center;
      color: #333;
      font-size: 18px;
    }

    .whatsaap-chat-icon{
    position: fixed;
    bottom: 5%;
    right: 2%;
    z-index: 999;
}

.whatsaap-chat-icon img {
    width: 50px;
    height: 50px;
}



     /* CSS Variables */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --success-color: #2ecc71;
            --text-color: #333;
            --text-light: #777;
            --white: #fff;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: #f4f4f4;
        }

        .cta-section {
            background: linear-gradient(to bottom, #f4f4f4, #40abec) !important;
        }

        /* .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        } */
        
        img {
            max-width: 100%;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary-color);
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #000;
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .title-divider {
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            margin: 15px auto;
            border-radius: 2px;
        }
        
 
        .btn-primary {
            background-color: var(--accent-color);
            color: var(--white);
            box-shadow: var(--shadow);
        }
        
        .btn-primary:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
            color: var(--white);
        }
        
        .btn-secondary:hover {
            background-color: #2980b9;
        }
        
        /* Header Styles */
        .webinar-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .webinar-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.1);
            z-index: 1;
        }
        
        .header-content {
            position: relative;
            z-index: 2;
        }
        
        .webinar-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .webinar-tagline {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Intro Section */
        .webinar-intro {
            background-color: var(--white);
        }
        
        .intro-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .intro-content p {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        /* Benefits Section */
        .webinar-benefits {
            background-color: var(--light-color);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .benefit-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .benefit-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 25px;
        }
        
        .benefit-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .benefit-card p {
            color: var(--text-light);
        }
        
        /* Features Section */
        .webinar-features {
            background-color: var(--white);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .feature-icon {
            background-color: var(--light-color);
            color: var(--secondary-color);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            font-size: 1.5rem;
        }
        
        .feature-content h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .feature-content p {
            color: var(--text-light);
        }
        
        .recording-note {
            text-align: center;
            margin-top: 40px;
            font-style: italic;
            color: var(--text-light);
        }
        
        /* Audience Section */
        .webinar-audience {
            background-color: var(--light-color);
        }
        
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .audience-card {
            background-color: var(--white);
            padding: 30px 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            text-align: center;
            transition: var(--transition);
        }
        
        .audience-card:hover {
            transform: translateY(-5px);
        }
        
        .audience-card h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .audience-card p {
            color: var(--text-light);
        }
        
        /* Host Section */
        .webinar-host {
            background-color: var(--white);
        }
        
        .host-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }
        
        .host-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        }
        
        .host-image::before {
            content: 'Gaurav Marya';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 10px;
            background: rgba(0,0,0,0.7);
            color: var(--white);
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .host-info {
            flex: 2;
            min-width: 300px;
        }
        
        .host-info h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .host-info p {
            margin-bottom: 15px;
            color: var(--text-light);
        }
        
        /* Details Section */
        .webinar-details {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
        }
        
        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .detail-card {
            background-color: rgba(255,255,255,0.1);
            padding: 40px 30px;
            border-radius: 10px;
            backdrop-filter: blur(5px);
            text-align: center;
        }
        
        .detail-card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .detail-card p {
            opacity: 0.9;
        }
        
        .register-cta {
            text-align: center;
            margin-top: 50px;
        }
        
        /* Footer */
        .webinar-footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 40px 0;
            text-align: center;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .webinar-header h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .webinar-header {
                padding: 80px 0;
            }
            
            .webinar-header h1 {
                font-size: 2.2rem;
            }
            
            .webinar-tagline {
                font-size: 1.2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .host-container {
                flex-direction: column;
            }
            
            .host-image {
                width: 100%;
                max-width: 400px;
            }
        }
        
        @media (max-width: 576px) {
            .webinar-header h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
           
        }


@media (max-width: 991px) {
  .story-text .for_mobile {
    padding-top: 30px;
  }

  .fi_india .card {
    margin-bottom: 30px;
  }

  .fi_india2 .card {
    margin-top: 30px;
  }

  p.innerbigtxt{
    padding-top: 20px;
  }
  ul.footlink li{
    width: 100%;
  }
  .footlink {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
  }
  .entrepreneur {
    padding-top: 0;
  }
  .leadership_legacy h4 {
    padding-top: 40px;
  }
  .franc_leader h4 {
  padding-top: 40px;
}
.what_franchise {
  padding-top: 0;
}


}

@media only screen and (min-width: 320px) and (max-width:767px)
{
.event_section .nav-tabs{
  display: block !important;
}
.event_section .nav-tabs button{
  width: 100%;
}

.reasons .col-md-4 {
  padding: 0;
}

.container.inner_box.reasons {
  padding: 0;
}
  .footlink{
    grid-template-columns: repeat(1, 1fr);
  }

  .inner_box .text ul {
    padding-left: 0;
  }

.reasons .text p {
  padding-right: 15px;
}

.carousel-caption2.header_text h3{
  font-size: 22px;
}

.carousel-caption2 .contact_btn{
      padding: 7px;
}
.carousel-caption2 h5{
  font-size: 14px;
}
.carousel-caption2{
    transform: translate(0%, 0%);
}

/* .upper-header ul.sociallink{
  justify-content: center !important;
} */

ul.comtablist li:after{
  display: none;
}

.h-contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* 
ul.sociallink li {
    margin-right: 5px;
} */

.h-cta{
  display: none;
}


section{
      padding-top: 25px;
}

.key-sectors h4 span {
  background: 0;
}

/* .swiper-slide {
    position: relative;
    background-size: contain;
}


 */

  .clientLogos{grid-template-columns: repeat(3, 1fr);}
  .clientLogos li {width: auto;}


  .testimonials .headg2::after{display: none;}
  .events .two_headings h4:after{display: none;}
  .team-pop{text-align: center;}
  .team-pop .modal-dialog{margin: 30px auto; width:auto;}
.headeblk .rightsection .navbarCollapse { position:absolute; z-index:1;}

.catfrmblk .col-md-9.mdfiy { width:100%; padding-right:15px;}
.catfrmblk .col-md-3.mdfiy { width:100%; padding-right:15px; padding-left:15px;}
.headeblk .logosection { float:none; width:auto; text-align:center;}
.headeblk .rightsection { float:none; width:100%;}
.headeblk .lineri { display:none;}
.headeblk .rightsection .headerinfoblk .contblk { float:none; margin:5px auto; width: 300px;
overflow: hidden;}
.headeblk .rightsection .headerinfoblk ul.rightsocial { float:none; text-align: center; margin-bottom: 35px; overflow:hidden;}
.headeblk .rightsection .headerinfoblk ul.rightsocial li { display:inline-block; float:none;}

.headeblk .rightsection .navbar-default { position:absolute; top: 10px;left: 0px;}
.headeblk .navbar-default .navbar-toggle { border:0px solid #00adef;}
.headeblk  .navbar-default .navbar-toggle .icon-bar {background-color: #00adef;}
.headeblk  .navbar-default .navbar-toggle:focus, .headeblk .navbar-default .navbar-toggle:hover { background-color:transparent;}

.headeblk .rightsection .navbar-default .navbar-collapse{ position:absolute; z-index:3; width: 320px; background:#fbfbfb; top: 33px;}
.headeblk .rightsection .navbar-default .navbar-nav > li > a {padding: 10px 0px 10px 10px;} 
.headeblk .rightsection .navbar-default .navbar-nav > li { margin-right:auto;}
.column { display:block;}

padding: 0px; margin-bottom:20px; padding-bottom:10px;}
 .footerbg {background-size: cover;height: auto;}
  ul.catlist { text-align:center;}
 ul.catlist li { width:100%; margin:0 auto; text-align:center;}
 ul.catlist li .tsu { max-width: 100%;
width: 100%;
display: block;
padding-top: 20px;}
 ul.catlist li p.txt { width:100%;}
 .reportsection .col-md-9.mdfiy { width:100%;padding-right: 15px;}
 .dsblk1 {width: 100%;float: none;}
.dsblk2 {width: 100%;float: none; margin:0 auto; padding:0px; border-left:0px; min-height: auto;}
.clislider .clientimg { text-align:center; float:none;}


 .clislider .clienttxt { float:none; width:100%; margin-top: 15px;}
 .comname { padding-right:20px;}
 .graybgblk .col-md-3.mdfiyt, .reportsection .col-md-3.mdfiyt { text-align:center; margin:20px auto;}
 .trs { text-align:center;}
 .graybgblk .col-md-6.mdfiy { width:100%; text-align:center; padding:0 15px;}
 .comhead { margin-top:20px;}
 .fixalign { margin-right:auto; margin-left:auto;}
 /* .innerheadbg  {background-size: cover;height: auto; padding-bottom:20px;} */
 .stahead .hdk { display:none;}
 div.innerhead { line-height:40px;}
 .hdrblk { padding-top:0px;}
 ul.comtablist li { float:none; display:block; text-align:center;}
 ul.comtablist li a { display:block; width:100%; padding:7px 10px; margin:0 auto;}
 
 h1.mainheading { font-size:30px; line-height:30px;}
 .textblk { width:100%; float: none;}
 .txtimg { width:100%; float: none; text-align:center;clear: both;
padding-bottom: 20px;}
 .textblk.rightpos { width:100%; float: none;}
 
 
 ul.innblk li:first-child { width:100%;}
 ul.innblk li { float:none; margin:10px auto; width:100%; }
 ul.innblk li img { text-align:center; display:block; margin:0 auto;}
 .txtimg img { text-align:center; display:block; margin:0 auto; float:none;}
 .commanmodfiy {width: 99%; text-align: left;}
 
 ul.footlink li .ftxtblk span  {        font-size: 16px;
        font-weight: 600;}
 ul.footlink li ul.ftxtblklist.listinline li:nth-child(2) { display:none;}
 ul.footlink li ul.ftxtblklist li { font-size:11px;}
 ul.footlink li ul.ftxtblklist.listinline li {display: block;}
 /* a.ftrlogo {text-align: center;
display: block;
margin: 0 auto;} */
/* ul.sociallink { text-align:center;} */
/* ul.sociallink  li { display:inline-block; text-align:center; float:none;} */
.coptxt { text-align:center;}
.rightsection .navbar-nav {margin: 5px 0px ;}
.headeblk .rightsection .navbar-default .navbar-collapse, .headeblk .rightsection .navbar-default .navbar-form  {    padding-right: 0px;
    padding-left: 0px;border-top: 0px;
}
ul.toprlist { margin-right:auto; }
.headeblk .rightsection .navbar-default .navbar-nav > li:last-child > a { border-bottom:0px;}
ul.toprlist li { width:100%; float:none; text-align: center;}
.paddingleft20 { padding:0px;}
.cllist {border-right: 0px solid #dfdfdf; width: 100%;}
.textblk.mdfys {width: 100%;float: none;}
.txtimg.mdfys {width: auto;float: none;}
.txtimg.mdfysleft {width: auto; float: none;}
.subheading  {font-size: 20px;}
ul.newcontentlist li {width: 100%; margin-left:2px;}
 img.fullimg { width:100%;}
 .address-row .addresscolumn { display:block; margin:0px 0 0px;  border-bottom:0px; padding-left: 20px;  }
 .textblk.rightposwidth {width: 100%;
float: none; 
padding-top: 20px;
clear: both;}

.txtimg.leftposwidth {float: none;
width: 100%;
}
.headeblk {padding: 10px 0 0;}
#myCarousel .carousel-indicators {left: 52%; }
#myCarousel .carousel-indicators li {width: 36px;}
.flexslidernew{ width:94%; margin:0 auto;}
.flexslidernew .slides { width:100%; }
.img-container img { display:block; text-align:center; margin:0 auto;}


@media only screen and (min-width: 320px) and (max-width:359px)
{
.txtimg img{ width:100%}
.slides, .flex-control-nav, .flex-direction-nav { width:320px;}
/*.flexslider .slides img {width: 100%; left: auto; height: auto;}*/
.flexslider .slides img {width: 635px; left: -68px; height: auto;}
}

@media only screen and (min-width: 320px) and (max-width:479px)
{
.teamId > .col-xs-12.col-sm-3.col-md-3{ width:280px; float:none; margin:0 auto;}
.bannersection{padding-top:0px;}
.banner-cont .banner250{display:block!important;}
.banner-cont .banner250 img{width:250px; margin:0 auto;}
.banner-cont .banner468{display:none!important;}
.banner-cont .banner728{display:none!important;}
.banner-cont .banner970{display:none!important;}
.innerfooter{margin-top:0px!important;}
.headeblk .rightsection .headerinfoblk ul.conblk li.fi{display:none;}
.headeblk .rightsection .headerinfoblk ul.conblk li.la{display:none;}
}

@media only screen and (min-width: 360px) and (max-width:374px)
{

.slides, .flex-control-nav, .flex-direction-nav { width:360px;}
/*.flexslider .slides img {width: 100%; left: auto; height: auto;}*/
.flexslider .slides img {width: 635px; left: -68px; height: auto;}

}


@media only screen and (min-width: 375px) and (max-width:413px)
{

.slides, .flex-control-nav, .flex-direction-nav { width:375px;}
.flexslider .slides img {width: 100%; left: auto; height: auto;}

}
@media only screen and (min-width: 414px) and (max-width:479px)
{

.slides, .flex-control-nav, .flex-direction-nav { width:414px;}
.flexslider .slides img {width: 100%; left: auto; height: auto;}


}
@media only screen and (min-width: 480px) and (max-width:767px)


{
  .chairman_msg .col-md-8 h3{
    text-align: center;
  }


  
  p.innerbigtxt { padding-top: 20px; }
	.headeblk .rightsection .headerinfoblk ul.conblk li.fi{display:none;}
.headeblk .rightsection .headerinfoblk ul.conblk li.la{display:none;}
	.bannersection{padding-top:20px;}
.innerfooter{margin-top:0px!important;}
ul.toprlist li img {border: 1px solid #dfdfdf; text-align: center;display: block;margin: 0 auto;}
.teamId > .col-xs-12.col-sm-3.col-md-3{ width:280px; float:none; margin:0 auto;}

.banner-cont .banner468{display:block!important; margin:0 auto;}
.banner-cont .banner468 img{width:468px; margin:0 auto;}


.banner-cont .banner728{display:none;}
.banner-cont .banner970{display:none!important;}
}
@media only screen and (min-width: 768px) and (max-width:1023px)

{
	.teamId .col-sm-3 {height: 300px;}
/* .container {width: 100% ;} */
.headeblk .logosection { text-align:center; width:auto; float:none;}
.headeblk .rightsection {width: 100%; float: none;}
.headeblk .lineri { display:none;}
.headeblk { padding-top:15px;}
.headeblk .rightsection .navbar-default .navbar-nav > li > a { font-size:14px; text-transform:capitalize;}
.rightsection .navbar-header {border-top: 1px solid #dfdfdf;
margin-top: 10px;
padding-top: 0px; float:none;}
.fullmainconent {
margin-top: -6px;}
ul.comtablist li a {font-size: 11px; padding: 2px 6px 3px;}

ul.toprlist li img { width:100%}
.fixtop {top: 4px;}
ul.catlist li {width: 49%;}
.catfrmblk .col-md-9.mdfiy {width: 66%; padding-right: 5px;}
.catfrmblk .col-md-3.mdfiy {width: 33.5%; padding-right: 4px;}
.graybgblk .col-md-6.mdfiy {width: 66.5%;}
.graybgblk .col-md-3.mdfiyt { display:none;}
.graybgblk .col-md-3.medfts {width: 33%!important;}
.reportsection .col-md-3.mdfiyt { display:none;}
.reportsection .col-md-9.mdfiy { width:100%;}
.dsblk2 { float:left;}
.textblk { width:55%;}
ul.innblk li:first-child {width: 50%;}
ul.innblk li {width: 50%;}
ul.innblk li { height:255px; text-align: center; margin-left: auto;}
ul.innblk li ul.intlist li { height:auto;}
ul.innblk li:first-child { text-align:left; padding-right: 30px;}
ul.innblk li:first-child  ul.intlist li { text-align:left;}
 img.fullimg { width:100%;}
 
 .cllist {width: 30%;}
 .banner-cont .banner728{display:block!important;}
 .banner-cont .banner728 img{width:728px; margin:0 auto;}
 .banner-cont .banner970{display:none!important;}
 .innerfooter{margin-top:0px!important;}
}

@media only screen and (min-width: 1024px) and (max-width:1199px)
{
/* .container {width: 1000px;} */
.headeblk .logosection {float:left; width:21%;}
.headeblk .rightsection {width: 78.5%;}
.headeblk .rightsection .navbar-default .navbar-nav > li > a {text-transform: capitalize;}
ul.innblk li {width: 230px; margin-left:20px; }
.textblk.mdfys {width: 71%;}
ul.catlist li {width: 32%;}
.clislider .clienttxt {width: 45%;}
/* ul.sociallink li {margin-right: 5px;} */
.innerfooter{margin-top:0px!important;}

}

@media only screen and (min-width: 1400px) and (max-width:25000px) {
.flexslider .slides img { height: auto;  left: 0; width: 100%;}
}

.banner-cont{margin:0 auto; text-align:center;}
.banner-cont .banner970{display:block;}
.banner-cont .banner970 img{width:970px; margin:0 auto;}
.banner-cont .banner728{display:none;}
.banner-cont .banner468{display:none;}
.banner-cont .banner250{display:none;}

.logoHeader{width:100%; clear:both; margin-bottom:50px;overflow:hidden; border-bottom:1px dashed #eee; }
.clientLogos{list-style-type:none; padding-left: 0;display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;}
.clientLogos li{border:1px solid #eee; float:left; width:162px; margin-right:20px; margin-bottom:20px;}


.mrgTp{margin-bottom:20px;}
.bottom-left i {
    position: absolute;
    bottom: 8px;
    left: 30px;
    font-size: 35px;
    color: rgba(0,0,0,0.7);
}
#myModal1, #myModal2, #myModal3, #myModal4, #myModal5, #myModal6, #myModal7, #myModal8,
#myModal9, #myModal10, #myModal11{top:25% !important;}
.video{padding: 10px !important;}
.bottom-left img{width: 100%;}

.aboutsection{background:#053476;padding:30px 0; overflow:hidden; margin-top:-11px;}
.aboutsection p{color:#fff; font-size:16px; text-align:center;font-family:'Poppins Regular'; line-height:20px;}
.aboutsection p strong{font-family:'Poppins Bold'; font-size:20px;}
.rightLine{margin-top:-8px; float:right;}
.catfrmblk{margin-top:30px;}

.banner-cont{display:none!important;}




/* ==================New css===================== */

.video-section {
      background: #f8f9fa;
      padding: 60px 20px;
    }

    .video-section h2, 
    .video-section h6 {
      margin: 0;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .video-box {
      position: relative;
      cursor: pointer;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      background: #000;
      aspect-ratio: 16 / 9;
      width: 100%;
    }

    .video-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.3s;
    }

    .video-box:hover img {
      opacity: 0.7;
    }

    .thumbnail {
      border-radius: 6px;
    }

    .yt-icon {
      font-size: 40px;
      color: #c90000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-section .overlay {
      position: absolute;
      inset: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background: linear-gradient(to top, rgb(0 0 0 / 15%) 0%, rgba(10, 12, 16, 0) 80%);
      pointer-events: none;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
      color: #333;
    }

    .leadership-section {
      max-width: 1200px;
      margin: 50px auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      padding: 20px;
    }

    .card {
     background: #ffffff;
    color: #333;
    border-radius: 16px;
    box-shadow: 4px 1px 6px 5px rgb(0 0 0 / 12%);
      padding: 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  
      
    }

    .our_values .icon-img img {
      max-width: 60px;
    }

      .our_values .icon-img {
        display: flex;
        justify-content: center;
      align-items: center;
      margin-bottom: 20px;
      }



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

    .card h2 {
      font-size: 22px;
      margin-bottom: 15px;
      /* border-left: 4px solid #ffb703; */
      padding-left: 10px;
      color: #333;
      margin-bottom: 0;
    }

    .card p {
      font-size: 15px;
      line-height: 1.7;
      color: #000;
    }
/* ========================our values==================== */

.image-section {
  position: relative;
  width: 100%;
  height: 400px;
}

.img-card {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

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

/* Positioning each card */
.card1 { top: 0; left: 0; z-index: 4; transform: rotate(-2deg); }
.card2 { top: 40px; left: 40px; z-index: 3; transform: rotate(3deg); }
.card4 { top: 120px; left: 120px; z-index: 1; transform: rotate(2deg); }

/* Hover animation */
.img-card:hover {
  transform: scale(1.05);
  z-index: 10;
}

.franchise_expo .card h2 {
  font-size: 20px !important;
}

.book__slot {
  padding-left: 0;
  margin-bottom: 0;
}

.book__slot .boon_now_btn {
  background-color: #c2edff;
  padding: 5px 12px;
  color: #000;
  font-weight: 600;
  border-radius: 10px;
}



/* Blinking keyframes */
@keyframes blink {
  0% { opacity: 0.9; }
  50% { opacity: 0; }
  100% { opacity: 0.9; }
}



    .image-card img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.25);
      transition: transform 0.4s ease;
    }

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

    .profile {
      display: flex;
      align-items: center;
      margin-top: 20px;
      background: rgba(255, 255, 255, 0.1);
      padding: 15px;
      border-radius: 12px;
      height: auto;
    }

    .profile img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-right: 15px;
      border: 3px solid #fff;
    }

    .profile h3 {
      margin: 0;
      font-size: 18px;
    }

    .profile span {
      font-size: 16px;
      opacity: 0.8;
    }

    .plan .profile {
      height: 100%;
    }

    .mobile_icons .col-lg-2 {
      text-align: center;
      margin-bottom: 30px;
    }

    .team_box .card img {
      width: 100%;
      height: 100%;
    }

    .team_box .col-md-4 {
      margin-bottom: 30px;
    }
    
    .team_box .profile {
        margin-top: 0;
        color: #000;
      }

    .team_box .card{
      background: #efefef;
      border: navajowhite;
    }

       .team_box .card h2 {
        color: #000;
}


/* Story Section */
.story {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 10px;
}

.story-text {
  flex: 1;
}

.story-text h2 , .story-text h4 , .story-text h4 {
   margin-bottom: 15px;
    color: var(--dark-black);
    font-size: 2.1rem;
    font-weight: 600;
    font-family: 'Poppins';
    line-height: 46px;
    text-transform: capitalize;
}
.story-text p {
  margin-bottom: 20px;
}
.story-image {
  flex: 1;
}


.story-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* India Section */
.india h4 {
  font-size: 2rem;
  margin-bottom: 20px;

}
.india p {
  font-size: 1.1rem;
  line-height: 30px;
}

/* Mission & Vision */
.mission {
  background: #eef1f7;
  color: #fff;
  padding: 60px 0;
}
.mission-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.card {
  flex: 1;
  padding: 25px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fi_india .card {
 height: 100%;
}

.card3 {
  height: 100%;
  background: #fff;
  border-bottom: 4px solid var(--aquamarine-light);
  border-radius: 14px;
  text-align: center;
  padding: 25px 20px;
  transition: all 0.3s  ease-in-out;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.card p {
  font-size: 1.1rem;
}

/* Closing Section */
.closing {
  text-align: center;
}
.closing h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1a237e;
}
.closing p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
}


.sorry_page .fs-404 {
    font-size: 100px;
    text-align: center;
}

.sorry_page h2 {
  font-size: 26px;
}



/* ===============webinar page============== */



/* Responsive */
@media (max-width: 768px) {
  .story {
    flex-direction: column;
  }
  .mission-container {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
}



  /* contact page new css   */

  /* ====== Contact Form Modern Styling ====== */

.mainform {
  max-width: 100%;
  margin: 20px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
}

.mainform .row.sbk {
  margin-bottom: 18px;
  align-items: center;
}

.txte {
  font-weight: 600;
  color: #333;
  font-size: 15px;
  margin-bottom: 6px;
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #f9f9fb;
  padding: 6px 12px;
  transition: 0.3s ease;
}

.input-group:hover {
  border-color: #007bff;
  box-shadow: 0 3px 10px rgba(0,123,255,0.1);
}

.input-group-addon {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.input-group-addon img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.form-control {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 14px;
  width: 100%;
  padding: 8px 6px;
}

textarea.form-control {
  resize: none;
  /* min-height: 90px; */
}

/* Submit Button */
.formbtnlik {
  background: linear-gradient(135deg, #007bff, #00d4ff);
  border: none;
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.formbtnlik:hover {
  background: linear-gradient(135deg, #0056b3, #00a0cc);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Responsive Adjustments */
@media(max-width: 768px) {
  .mainform {
    padding: 20px;
  }
  .txte {
    margin-bottom: 4px;
  }
}


.contact_btn {
  background-color: #022b73;
  color: #fff !important;
  font-weight: 600;
}

.head_nav {
  background-color: #fff;
}

    /* Container for the dropdown */
    .dropdown {
      position: relative;
      display: inline-block;
      transition: all 0.3s ease;
    }

    .nav-item.nav-item{
       position: relative;
  text-decoration: none;
  color: #000;  /* text color */
  padding-bottom: 5px; 
  transition: all 0.3s ease;
    }

    /* Border Bottom Effect */
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #133A6F; /* border color */
  transition: width 0.3s ease;
}

/* Hover Effect */
.nav-item:hover::after {
  width: 100%;
}

 

    /* Dropdown content (hidden by default) */
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: white;
      min-width: max-content;
      box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
      z-index: 99;
      top: 100%;
      padding: 10px 0 0;
    }

    /* Dropdown links */
    .dropdown-content a {
      color: black;
      padding: 10px 15px;
      text-decoration: none;
      display: block;
    }

    /* Show the dropdown content on hover */
    .dropdown:hover .dropdown-content {
      display: block;
    }

    /* Hover effect on dropdown links */
    .dropdown-content a:hover {
      background-color: #f1f1f1;
    }

    .submenu {
  position: relative;
}

.submenu-list {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  min-width: max-content;
  z-index: 1000;
}

/* Show submenu on hover */
.submenu:hover .submenu-list {
  display: block;
}

.submenu-list li a {
  padding: 10px 15px;
  display: block;
  color: #000;
  text-decoration: none;
}

.submenu-list li a:hover {
  background-color: #f1f1f1;
}

.dropdown-content ul {
  padding-left: 0;
}

.carousel-caption2 h1,h2{
  color: #fff;
  font-size: 60px;
  font-weight: 600;
}

.carousel-caption2 h1,h2 span{
  color: #fff;
}

.carousel-caption2{
      position: absolute;
    bottom: 1.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    text-align: left;
    transform: translate(0%, 0%);
}

.carousel-caption2 .contact_btn{
  padding: 15px;
}

.carousel-indicators [data-bs-target]{
  background-color: #022b73;
}

.navbar-nav li a {
  font-weight: 500;
  color: #000;
  font-size: 15px;
}

.our_services {
  padding-top: 70px;
 background-image:url('../images/our_service.jpeg');background-repeat:no-repeat;width:100%;height:auto; background-position:center;
}

.our_services h3 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  padding-bottom: 50px;
}


   .swiper {
      width: 100%;
      height: 100%;
    }

    /* .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    } */

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


  .swiper-office .swiper-slide {
    border: 1px solid #cfcfcf;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
  }

.service_slider .swiper-wrapper {
      height: 300px;
    }

    .service_slider .box .w-10{
      width: 15%;
    }

.box {
      background: #fff;
    min-height: 270px;
    padding: 30px;
    border-top: 6px solid #87ceeb;
}

.box h4 {
  padding-top: 10px;
  color: #022b73;
  font-weight: 600;
  font-size: 18px;
}

.our_services h5 {
   font-size: 40px;
  font-weight: bold;
  color: #87ceeb;
}

.our_services h5 span {
  color: #fff;
}

.number h6{
  font-size: 52px;
    color: #fff;
    font-weight: 600;
}

.number p{
  font-size: 16px;
    color: #fff;
}

.number {
  text-align: center;
  padding-top: 30px;
}

section {
  padding-top: 50px;
  padding-bottom: 40px;
}

.join h3 {
      text-align: center;
    color: #022b73;
    font-size: 40px;
    font-weight: 600;
}

.client-logos .swiper-slide img {
  width: 67%;
}

.view_more {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 40px;
}

.view_more a {
  color: #022b73;
  font-weight: 600;
}

.client-logos {
  padding-bottom: 70px;
}



.chairman_msg .white_box {
  margin: 80px 0;
  background-color: #022b73;
}

.white_box figure{
      margin-top: -75px;
}

.chairman_msg .col-md-8 {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}

.chairman_msg .col-md-8 h3 {
  font-size: 40px;
    color: #fff;
    padding-bottom: 20px;
}

.cha_text p {
  color: #fff;
}


.chairman_msg {
  padding-top: 70px;
    background-image: url(../images/circle-06.jpg);
       background-repeat: no-repeat;
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
}

.cha_text {
 padding: 80px;
}

.cha_text h6 {
   color: #87ceeb;
   font-size: 28px;
   font-weight: 600;
}

.cha_text span {
  color: #fff;
}

.ready_grow {
  background: #022b73;
  padding-top: 0;
}

.ready_grow h3 {
  text-align: center;
  font-size: 40px;
    font-weight: bold;
    color: #fff;
    padding-bottom: 50px;
}

.input-group select {
  border-top: none;
    border-right: none;
    border-left: none;
}

.input-group input {
  border-top: none;
    border-right: none;
    border-left: none;
}

.ready_grow .input-group{
    justify-content: end;
    align-items: center;
}

.ready_grow .btnclinks.light-blue{
  background-color: #87ceeb !important;
  padding: 10px 30px;
  color:#000;
}

.our_team h3 {
  text-align: center;
    font-size: 40px;
    font-weight: bold;
    padding-bottom: 50px;
    color: #022b73;
}

.our_team .text{
      background: #022b73;
    color: #fff;
    /* padding: 5px 10px; */
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.our_team .text p {
  margin-bottom: 0;
}

.our_team .text h6 {
  font-size: 20px;
}

.event_section {
  padding-top: 0;
   background: #022b73;
   color: #fff;
}

.event_section h3 {
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  padding-top: 50px;
  padding-bottom: 40px;
}

.event_section .nav-tabs {
      display: flex;
    justify-content: space-between;
    align-items: center;
}

.event_section .nav-tabs .nav-link{
  color: #000;
  background: #87ceeb;
  border-radius: 0;
  border: 0;
}


.event_section .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
  background: #0b3987;
  color:#fff;
}

.event_section .nav-tabs button {
  width: 25%;
  font-size: 20px;

}

.blue_border {
  border: 1px solid #87ceeb;
}

.view_more2 {
  text-align: center;
}

.view_more2 a{
  color: #fff;
  font-weight: 600;
}

.shadow_bg {
  background: #0b3987;
  padding: 0 30px;
}

.blue_border nav {
  padding: 0;
}

.testimonial_section h3 {
  color: #022b73;
  font-weight: 600;
  font-size: 40px;
  text-align: center;
}

.testimonial_section .testi_box{
  background: #fff;
   padding: 35px;
    height: 100%;
    color: #000;
}

.shadow_bg2 {
  background: #022b73;
  padding: 100px 30px 50px;
}

.explore h3 {
    color: #022b73;
  font-weight: 600;
  font-size: 40px;
  text-align: center;
}

.ftxtblk ul.ftxtblklist{
  padding-left: 0 !important;
}

/* .footerbg .custom-border {
  border-top: 1px solid #fff;
      margin-top: 40px;
}

.sociallink.footer_link i {
  color: #fff;
}
 */


.footer_bottom {
  background:#00183a;
 padding-top: 10px;
 padding-bottom: 10px;
text-align: center;
}

.footer_bottom p {
  margin-bottom: 0;
}

.sec-slide-effect.client_footer li {
  display: block !important;
}

.upper_footer .box_1 {
  text-align: center;
  background: #eaecef;
    color: #022b73;
 padding: 30px 0;
}

.upper_footer .box_2 {
  text-align: center;
  background:#dde0e5;
    color: #022b73;
    padding: 30px 0;
}

.upper_footer .box_3 {
  text-align: center;
  background: #eaecef;
    color: #022b73;
 padding: 30px 0;
}

.upper_footer h6 {
  font-size: 22px;
  font-weight: 600;
}

.carousel-caption2.header_text span{
 font-size: 16px;
 color: #fff;
}

.carousel-caption2.header_text h3{
 font-size: 42px;
 color: #ffff;
 font-weight: 600;
}

.carousel-caption2.header_text {
    top: 50%;
    transform: translate(0%, -50%);
    text-align: left;
    
}

.inner_head {
  text-align: center;
  padding-top: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.inner_head .btn-primary {
  background-color: #022b73;
  border: none;
  color:#fff;
}

.all_head{
  color: #000;
    font-size: 36px;
    font-weight: 600;
    padding-bottom: 20px;
    text-align: center;
    /* padding-top: 50px; */
}

.story_head p {
  font-size: 18px;
}

.container.inner_box{
  margin-top: 50px;
  padding: 50px 40px;
}

.text p {
  line-height: 1.8;
}

.text h5 {
  font-size: 32px;
    font-weight: 600;
    padding-bottom: 30px;
}
.download_btn {
  background: #87ceeb;
  color: #fff;
  padding: 20px 30px;
}

.fran_offices .accordion-body a {
  color: #87ceeb;
}

.fran_offices .accordion-body ul {
  padding-left: 0;
}

.fran_offices .accordion-body ul li {
  padding-bottom: 10px;
}

.accordion-button::after{
  filter: invert();
}

.upper_footer .col-md-4 {
  padding: 0;
}

.text ul li svg {
  margin-right: 10px;
}

.text ul li {
  padding-bottom: 20px;
}

.reasons .text {
  background: #87ceeb;
    height: 100%;
}

.animation-btn {
    animation: blinkbtn 1s infinite;
    padding: 5px 10px;
    transition: all 0.5s linear;
}

.reasons .text h4 {
  padding-left: 15px;
  padding-top: 15px;
}

.reasons .text p {
  padding-left: 15px;
}

@keyframes blinkredtext {
    0% {
        color: #ff3e5b;
    }

    50% {
        color: #d00020;
    }

    100% {
        color: #ff3e5b;
    }
}

@keyframes blinkbtn {
    0% {
        background-color: #e20426;
    }

    50% {
        background-color: #ff3e5b;
    }

    100% {
        background-color: #e20426;
    }
}

.reasons .text2{
      display: flex;
    align-items: center;
    flex-direction: column;
    background: #87ceeb;
    height: 100%;
    padding: 20px;
    margin-bottom: 30px;
}

.new-franchisor ul li {
  padding-bottom: 15px;
}


/* Base Button Style */
.button-animate {
  transition: all 0.4s ease;
  transform-origin: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* On Hover Animation */
.button-animate:hover {
  animation: shakeScale 0.5s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Keyframes for Shake + Scale */
@keyframes shakeScale {
  0%   { transform: scale(1.1) rotate(0deg); }
  25%  { transform: scale(1.03) rotate(1deg); }
  50%  { transform: scale(1.05) rotate(-1deg); }
  75%  { transform: scale(1.03) rotate(1deg); }
  100% { transform: scale(1.1) rotate(0deg); }
}



.modal {
  --bs-modal-width: 600px;
}

.team p {
  font-size: 14px;
}

.inner_box h5 {
  padding-top: 15px;
}

.team {
  padding-bottom: 30px;
}


@media (max-width: 768px) {
  .button-animate {
    animation: none !important;
    transition: none !important;
  }
  .carousel-caption2.header_text h3{
  font-size: 24px;
 }
}

@media (max-width: 500px) {
.carousel-caption2 {
    bottom: -1.25rem;
}
}

@media only screen and (min-width: 320px) and (max-width:375px){
   .carousel-caption2.header_text span{
  margin-bottom: 0;
 }
 .carousel-caption2.header_text span{
      font-size: 14px;
 }
 .carousel-caption2.header_text h3{
  font-size: 24px;
 }

}


.shadow-text {
  color: white;
  font-weight: 700;
  text-shadow: 
    2px 2px 6px rgba(0, 123, 255, 0.6); /* soft blue shadow */
}

.franchise_quiz .sbk {
  margin-bottom: 40px;
}

.closeBtn{
position: absolute;
right: -20px;
background: #ffffff;
opacity: 1;
width: 35px;
height: 35px;
top: -20px;
}
.icon-img{
  width: 100px;
  color:#fff;
}


.carousel-image-wrapper {
  position: relative;
}

.carousel-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.carousel-caption2 {
  position: absolute;
  top: 50%;
  left: 8%; /* 👈 Left से distance */
  transform: translateY(-50%); /* केवल vertical center */
  text-align: left; /* 👈 Left align */
  color: #fff;
  z-index: 2;
  max-width: 600px; /* Optional: text width limit */
}

.carousel-caption2 span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #ffcc00;
}

.carousel-caption2 h3 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}


.why_brands_choose {
    background-image: url("../images/about_bg.jpg"); /* Path to your image */
  background-size: cover;     /* makes the image cover entire section */
  background-position: center; /* keeps image centered */
  background-repeat: no-repeat; /* avoids repeating */  
  color: #fff;
  position: relative;
}

.why_brands_choose::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); /* Black overlay with opacity */
  z-index: 1;
}

.why_brands_choose h4,p {
  position: relative;
  z-index: 2; /* Keeps text above the overlay */
}

.why_brands_choose h4{
  font-size: 30px;
}

.why_brands_choose p{
  font-size: 20px;
}

.swiper-office .swiper-slide{
  display: block;
}

.swiper-office .mx-30 {
  max-width: 30px;
}

.swiper-office .swiper-slide{
  text-align: left;
}

.swiper-office .office_text {
  padding: 20px 15px;
  min-height: 280px;
}

.swiper-office .office_text li {
  font-size: 16px;
  padding-bottom: 10px;
}

.swiper-office .office_text li a {
 color: #007bff;
}
.swiper-office .office_text h6 {
  font-size: 16px;
  font-weight: 400;
}


/* faq */

.faq-section {
  background: #f9f9f9; /* light background */
}

.faq-heading {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-accordion .accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.custom-accordion .accordion-button {
  background: #fff;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  padding: 18px 20px;
  transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #ff5722; /* change to your theme color */
  color: #fff;
  box-shadow: none;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-body {
  background: #fff;
  padding: 20px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.header_text h3, .header_text h2 {
    font-size: 40px;
    color: #ffff;
    font-weight: 600;
}

.inner-h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333333;
}


@media (max-width: 880px) {

.header_text h3,.header_text h2 ,.header_text h1{
    font-size: 36px;
    color: #ffff;
    font-weight: 600;
}

.story-text h2, .story-text h4, .story-text h4 {
    font-size: 1.4rem;
    line-height: 33px;
}

}

@media (max-width: 400px) {
.carousel-image-wrapper img {
    height: 180px;
}
}


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

:root {
    --baby-blue: #eef1f7;
    --aquamarine-light: #bee2ff;
    --aquamarine: #43b0f1;
    --royal-blue: #057DCD;
    --blue-grotto: #0070ac;
    --navy-blue: #2a3855;
    --dark-black: #3b3b3b;
    --dark-gray: #333;
    --red: #ff3e5b;
    --light-red: #e20426;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* scollbar */

::-webkit-scrollbar {
    width: 5px;
    /* Width of the scrollbar */
}


::-webkit-scrollbar-track {
    background: var(--aquamarine-light);
    /* Sky Blue */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--aquamarine);
    /* Navy Blue */
    border-radius: 5px;
}


::-webkit-scrollbar-thumb:hover {
    background: var(--blue-grotto);
    /* Blue Grotto highlight */
}


/* header */

.header,
.header.sticky {
    width: 100%;
    z-index: 999;
    transition: all 0.3s linear;
}

.head_nav {
    background-color: #fff;
}


.franchise-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.franchise-card img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

/* Overlay effect */
.franchise-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Hover Effects */
.franchise-card:hover img {
    transform: scale(1.1);
}

.franchise-card:hover .overlay {
    opacity: 1;
}

/* Optional: subtle lift on hover */
.franchise-card:hover {
    transform: translateY(-5px);
}


.header.sticky {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px;
    background-color: #fff;
    top: 0px;
    width: 100%;
}

.header.sticky {
    position: fixed;
    top: 0px;
    padding-bottom: 5px;
    transition: all 0.3s linear;
    background: #fff;
}

.header-top {
    background-color: var(--navy-blue);
    padding: 5px 0;
}

.h-contact-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.info_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2px 0;
}

ul.sociallink {
    overflow: hidden;
    margin-bottom: 0;
}

ul.sociallink li {
    width: 30px;
    height: 30px;
    float: left;
    border-radius: 50%;
    border: 2px solid var(--baby-blue);
    padding: 2px;
    margin-right: 10px;
    text-align: center;
}

ul.sociallink li a {
    color: var(--baby-blue);
}

ul.sociallink li:hover a {
    color: var(--aquamarine-light);
}

.border-left {
    border-left: 1px solid #e8eef18c;
    margin: 0 10px;
}

.phone-email li a {
    color: #fff;
    font-size: 16px;
}

.phone-email {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.phone-email li {
    padding-left: 10px;
}

.animation-btn {
    animation: blinkbtn 1s infinite;
    padding: 5px 10px;
    transition: all 0.5s linear;
}

.highlight-text {
    background-color: var(--aquamarine-light);
    padding: 6px 0;
    overflow: hidden;
    display: flex;
}

.text-blink {
    font-weight: 600;
    font-size: 16px;
    animation: blinkredtext 1s infinite;
    color: #d00020;
    text-transform: capitalize;
}

.regi-now {
    color: var(--navy-blue);
    font-weight: bold;
}

.navbar-brand img {
    max-width: 100%;
    width: 180px;
}

#navbarSupportedContent .nav-link {
    padding: 0 !important;
}

.navbar-nav li a {
    font-weight: 500;
    color: #000;
    font-size: 15px;
}

.nav-item.nav-item {
    position: relative;
    text-decoration: none;
    color: #333;
    padding: 0 !important;
    transition: all 0.3s ease;
    margin-left: 18px;
}

.drop-arrow {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.dropdown-content li {
    border-bottom: 1px solid var(--aquamarine-light);
    transition: all 0.3s linear;
}

.dropdown-content li:hover {
    background-color: var(--aquamarine-light);
}

/* Container for the dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Border Bottom Effect */
.nav-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--aquamarine);
    /* border color */
    transition: width 0.3s ease;
}

/* Hover Effect */
.nav-item:hover::after {
    width: 100%;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: max-content;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 99;
    top: 100%;
    padding: 0;
}

/* Dropdown links */
.dropdown-content a {
    color: var(--dark-black);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.submenu {
    position: relative;
}

.submenu-list {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    min-width: max-content;
    z-index: 1000;
}

/* Show submenu on hover */
.submenu:hover .submenu-list {
    display: block;
}

.submenu-list li a {
    padding: 10px 15px;
    display: block;
    color: #000;
    text-decoration: none;
}

.submenu-list li a:hover {
    background-color: #f1f1f1;
}

.dropdown-content ul {
    padding-left: 0;
}


@keyframes blinkredtext {
    0% {
        color: #ff3e5b;
    }

    50% {
        color: #d00020;
    }

    100% {
        color: #ff3e5b;
    }
}

@keyframes blinkbtn {
    0% {
        background-color: var(--light-red);
    }

    50% {
        background-color: var(--red);
    }

    100% {
        background-color: var(--light-red);
    }
}


/* btn */

.light-btn {
    background: var(--baby-blue);
    padding: 6px 20px;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    text-transform: uppercase;
}


/* Hero section */

.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Dark overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000003d;
    /* background: linear-gradient(120deg, var(--aquamarine), rgb(145 193 216 / 0%)); */
    z-index: 1;
}

section h2 {
    color: #3b3b3b;
    font-size: 26px;
}

.hero-content.left-align {
    left: 10%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: .5rem;
    background: linear-gradient(120deg, var(--baby-blue), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-family: 'Poppins';
}

.class-h1 {
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: .5rem;
    background: linear-gradient(120deg, var(--baby-blue), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-family: 'Poppins';
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: var(--baby-blue);
    line-height: 26px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

/* .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.8;
} */

.text-left {
    text-align: left;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--navy-blue) !important;
    font-weight: bold !important;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    background: var(--aquamarine-light);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 20px !important;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px) translateY(-50%);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

.cta-btn {
    display: inline-block;
    padding: 12px 55px;
    background: linear-gradient(120deg, #82cfff, #ddf4ff);
    text-decoration: none;
    font-weight: 600;
    color: var(--navy-blue);
    border-radius: 30px;
    transition: all 0.3s linear;
    font-size: 18px;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: linear-gradient(120deg, #ddf4ff, #82cfff);
}

.cta-btn-dark {
    display: inline-block;
    padding: 12px 55px;
    background: linear-gradient(120deg, var(--blue-grotto), var(--aquamarine));
    text-decoration: none;
    font-weight: 600;
    color: var(--baby-blue);
    border-radius: 30px;
    transition: all 0.3s linear;
    font-size: 18px;
    text-transform: uppercase;
    border: none;
}

.cta-btn-dark:hover {
    background: linear-gradient(120deg, var(--aquamarine), var(--blue-grotto));
}

.heading {
    color: var(--dark-black);
    font-size: 42px;
    font-weight: 600;
    font-family: 'Poppins';
    line-height: 46px;
    text-transform: capitalize;
}

.chairman_container {
    position: relative;
}

figure {
    margin-bottom: 0 !important;
}

.chairman_container figure img {
    border-radius: 6px;
    /* position: absolute;
    bottom: 0; */
    width: 100%;
    background: #8c8c8c;
}

.content-info p {
    color: #666;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}


.chairman_msg,
.client-logos-section,
.event-section,
.additional-info,
.faq-section {
    background-image: url(../images/shaded-bg.webp);
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
}

/* .chairman_msg{
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    background-position: center;
    background-size: cover;
} */


.py-80 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pt-80 {
    padding-top: 60px;
}

.pb-80 {
    padding-bottom: 60px;
}

.pt-200 {
    padding-top: 200px;
}


.content-info h6 {
    color: var(--dark-black);
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 0;
}

.content-info span {
    color: var(--dark-gray);
    font-size: 18px;
    font-weight: 400;
}


/* counter */

.counter-section {
    position: relative;
    background: url("../images/banner_3.jpg") center/cover no-repeat;
    padding: 80px 20px;
    color: #fff;
}

.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(145deg, var(--navy-blue) 0%, var(--aquamarine) 100%);
    opacity: 0.8;
    z-index: 1;
}

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

.counter-box {
    border-radius: 8px;
    text-align: center;
    padding: 20px 10px;
    border: 1px solid #ffffff66;
    background: #1040717d;
    backdrop-filter: blur(10px);
    height: 100%;
}

.counter-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
    font-family: Roboto;
}

.counter-box p {
    font-size: 18px;
    font-weight: 500;
    color: #eee;
    margin: 0;
    position: relative;
    display: inline-block;
    font-family: poppins;
}


/* services */

.our-services .box {
    background: var(--baby-blue);
    border-bottom: 4px solid var(--aquamarine-light);
    border-radius: 14px;
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 30px auto;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff00;
    border: 2px solid #bee2ff4a;
    transition: all 0.5s linear;
}

.our-services .box img {
    max-width: 100%;
    padding: 10px;
    width: 65px;
    margin: 0 auto;
}

.our-services .box h4 {
    color: var(--dark-black);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 24px;
}

.our-services .box p {
    color: var(--dark-gray);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.our-services .box:hover {
    background-image: linear-gradient(180deg, var(--navy-blue) 0%, var(--aquamarine) 100%);
}

.our-services .box:hover .service-icon {
    background: var(--baby-blue);
    transform: scale(1.0);
}

.our-services .box:hover h4,
.our-services .box:hover p {
    color: #fff;
}

/* client logo */


.gradient-heading {
    background: linear-gradient(120deg, var(--navy), var(--lightblue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.logo-img {
    max-width: 100%;
    max-height: 100px;
    margin: auto;
    display: block;
    /* filter: grayscale(100%); */
    transition: all 0.3s ease;
}

.logo-img:hover {
    /* filter: grayscale(0%); */
    transform: scale(1.05);
}

.client-logos .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
    border: 1px solid #e1e1e166;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
}

/* team */


.team-section .swiper-slide {
    background: var(--baby-blue);
    border-bottom: 4px solid var(--aquamarine-light);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%;
    padding: 14px;
}

.team-section .swiper-slide:hover {
    transform: translateY(-5px);
}

/* .team-section {
    background: var(--baby-blue);
} */

.team-photo {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #8c8c8c;
}

.team-name {
    color: var(--dark-black);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 24px;
}

.team-role {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: 500;
}

/* lead form */

.lead-form {
    position: relative;
    z-index: 99;
}

.form-container {
    background: var(--baby-blue);
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    max-width: 900px;
}

.lead-title {
    color: var(--dark-black);
    margin-bottom: 30px;
    text-transform: capitalize;
    line-height: 24px;
    font-size: 25px;
}

.formInfo .form-control {
    height: auto;
    padding: 10px 12px;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 14px;
    width: 100%;
}

.form-control {
    border: none !important;
    background: transparent !important;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--aquamarine-light);
    border-radius: 40px;
    background: #f9f9fb;
    padding: 5px 12px;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--aquamarine-light);
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
    margin-bottom: 0;
}

.input-group:hover {
    border-color: var(--aquamarine);
    box-shadow: 0 3px 10px var(--aquamarine-light);
}

.formInfo .fa-caret-down {
    color: var(--dark-gray) !important;
}

.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    bottom: 20px;
}

.swiper-pagination-bullet {
    margin: 0 4px !important;
    /* Increase left-right spacing */
}

/* event */

.event_section .nav-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
}

.event_section .nav-tabs .nav-link {
    color: #000;
    background: #87ceeb;
    border-radius: 0;
    border: 0;
}

.event_section .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: var(--navy-blue) !important;
    color: var(--baby-blue) !important;
    border-radius: 40px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
}

.event_section .nav-tabs .nav-link {
    color: var(--dark-black);
    background: var(--aquamarine-light);
    border-radius: 40px;
    border: 0;
    font-weight: 600;
    font-size: 18px;
}

.event_section .nav-tabs button {
    width: 23.5%;
}

.event-img {
    background: #eef1f7;
    padding: 10px;
    border-radius: 5px;
}

.event-img img {
    border-radius: 4px;
}

/* footer */

.additional-info {
    /* background: linear-gradient(90deg, #04586B, #056B80, #07849A, #0898AD); */
    /* padding: 50px 20px; */
}

.footer_bottom {
    background: #2a3855;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    border-top: 1px solid #ffffff2b;
}

.footer_bottom p {
    margin-bottom: 0;
    color: var(--baby-blue);
    font-size: 14px;
    padding-top: .6rem;
}

.footer-box h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Poppins';
    line-height: 36px;
    text-transform: capitalize;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    margin: auto;
}

.footer-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0px;
    text-align: center;
    padding: 60px 25px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-box h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #04586B;
    /* darkest shade */
}


.cta-section {
    color: var(--dark-black);
    border-radius: 0px;
    background: linear-gradient(to bottom, #ffffff, #40abec);
    border-bottom: 8px solid #eff9ff;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-black);
}

.brochure-btn {
    background: #fff !important;
    color: #003371 !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    border: none !important;
    transition: all 0.3s ease !important;
    padding: 12px 55px !important;
    font-size: 18px !important;
}

.brochure-btn:hover {
    background: var(--aquamarine-light) !important;
    color: #003371 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.inner_head {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.swiper {
    overflow: hidden;
    position: relative;
}

.our-services {
    position: relative;
}

.blue-1 {
    background-color: var(--navy-blue);
    transition: all 0.3s linear;
}

.blue-1:hover {
    background-color: #496192;
}

.blue-2 {
    background-color: var(--blue-grotto);
    transition: all 0.3s linear;
}

.blue-2:hover {
    background-color: #3380a8;
}

.blue-3 {
    background-color: var(--aquamarine);
    transition: all 0.3s linear;
}

.blue-3:hover {
    background-color: #6fc9ff;
}

.footlink {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

ul.footlink li {
    display: inline-block;
    vertical-align: top;
}


.footlink li .ftxtblk {
    padding-bottom: 20px;
}


.footlink li .ftxtblk span {
    font-size: 20px;
    line-height: 16px;
    font-family: "Poppins";
    padding-bottom: 15px;
    color: #fff;
    display: block;
    font-weight: 600;
}

.footer_link li {
    width: 35px !important;
    height: 35px !important;
}

ul.footlink li .ftxtblk span a {
    color: var(--aquamarine-light);
}

ul.ftxtblklist li {
    width: 100%;
    margin-bottom: 0px;
}

ul.ftxtblklist li a {
    color: #fff;
    font-size: 13px;
    line-height: 26px;
    font-weight: 400;
}

ul.ftxtblklist li a:hover {
    color: var(--red);
}


.footerbg .custom-border {
    border-top: 1px solid #ffffff66;
    margin-top: 30px;
    list-style: none;
}

.footerbg {
    margin-top: 0px;
    padding-top: 40px;
    background-image: linear-gradient(359deg, var(--navy-blue) 0%, var(--aquamarine) 100%);
}


.sociallink.footer_link {
    padding: 0;
    margin-top: 25px;
}

.sociallink.footer_link i {
    color: #fff;
    line-height: 30px;
}

.sub-para {
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    line-height: 23px;
    font-weight: 400;
}

.column.sidebar1 {
    width: 23%;
    vertical-align: top;
}

.column.sidebar2 {
    width: 56%;
    margin-left: 20px;
    margin-right: 20px;
    padding-left: 20px;
    padding-right: 20px;
    vertical-align: top;
}

.ftxtblk ul.ftxtblklist {
    padding-left: 0 !important;
}

.column {
    display: table-cell;
}

.content-table {
    width: 100%;
    display: table;
    border-collapse: separate;
}

.content-row {
    display: table-row;
}

.text-justify {
    text-align: justify;
}

.offcanvas-body {
    padding: 1rem 0 !important;
}


#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: none;
    font-size: 18px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    z-index: 99;
    background: var(--dark-black);
    padding: 10px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 8px;
}

#backToTop:hover {
    background: var(--aquamarine);
}


.video-box {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #000;
    aspect-ratio: 16 / 9;
    height: 295px;
    width: 100%;
}

.video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.video-box:hover img {
    opacity: 0.7;
}

.thumbnail {
    border-radius: 8px;
}

.yt-icon {
    font-size: 40px;
    color: #c90000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsaap-chat-icon {
    position: fixed;
    bottom: 5%;
    right: 2%;
    z-index: 999;
}


.whatsaap-chat-icon img {
    width: 50px;
    height: 50px;
}

.for_mobile {
    display: none;
}

.faq_text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #cfe2ff;
    height: 100%;
    padding: 0 30px;
}

.faq_text img {
    max-width: 80px;
    margin-bottom: 30px;
    filter: invert(45%) sepia(91%) saturate(2265%) hue-rotate(190deg) brightness(95%) contrast(90%);
}

.faq_text h4 {
    font-size: 32px;
}


/* blog */

#posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.post-card {
    background: var(--baby-blue);
    border-bottom: 4px solid var(--aquamarine-light);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.post-content h2 {
    color: var(--dark-black);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 24px;
}

.post-content h2 a {
    color: var(--dark-black);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 30px;
}

.post-content h2 a:hover {
    color: var(--navy-blue);
}

.post-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.post-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}

.post-excerpt p {
    color: var(--dark-gray);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.post-excerpt a {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--aquamarine);
}

.post-image {
    margin-bottom: 1rem;
    display: none;
}

.post-image img {
    border-radius: 4px;
}

.blog-read-more {
    display: inline-block;
    padding: 8px 14px;
    background: var(--navy-blue);
    text-decoration: none;
    font-weight: 500;
    color: var(--baby-blue);
    border-radius: 4px;
    transition: all 0.3s linear;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
}

.screen-reader-text {
    display: none;
}

/* faq */

.expo-faq-section .accordion-button::after {
    filter: invert(1);
}

.expo-faq-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #f4a261;
}

.expo-faq-section .accordion-item {
    background-color: #1b263b;
    border: 1px solid #415a77;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.expo-faq-section .accordion-button {
    background-color: #415a77;
    color: #fff;
    font-weight: 600;
    box-shadow: none;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.expo-faq-section .accordion-button:hover {
    background-color: #2a3855;
    color: #fff;
}

.expo-faq-section .accordion-button:not(.collapsed) {
    background-color: #2a3855 !important;
    color: #fff;
    font-weight: 700;
}

.expo-faq-section .accordion-body {
    background-color: #fafafa;
    color: #2B2A2A;
    border-top: 1px solid #415a77;
    font-weight: 400;
}

.faq_text {
    background: #8bc1ff24;
    border-radius: 10px;
    padding: 20px;
}


.faq_text h4 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #2a3855;
}

.read-more {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s linear;
    padding: 5px 10px;
    border-radius: 4px;
    background: #33333314;
}

.our-services .box:hover a
 {
    color: #fff;
    border: 1px solid #fff;
}


/* ==================Industry section================= */




.industry-section {
  background: #f9fbff;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}


.industry-title {
  text-align: center;
  font-size: 2rem;
  color: #0d3b66;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

.industry-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #0056b3;
  margin: 10px auto 0;
  border-radius: 2px;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.industry-item {
  background: #ffffff;
  border: 1px solid #e0e6f1;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 86, 179, 0.15);
}

.industry-item h3 {
  color: #0056b3;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.industry-item p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .industry-list {
    grid-template-columns: 1fr;
  }
}





.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    padding: 10px;
    height: 40px;
    border-radius: 50%;
    background-color: #e3e3e3;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-links a:hover {
    transform: translateY(-3px);
}
.social-links a.twitter:hover {
    background-color: #000;
    color: #fff !important;
}
.social-links a.linkedin:hover {
    background-color: #0a66c2;
    color: #fff !important;
}

  .card-custom {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      transition: transform 0.3s ease;
      max-height: 360px;
    }

    .card-custom:hover {
      transform: translateY(-5px);
    }

    .card-custom img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

.card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
   background: linear-gradient(120deg, var(--blue-grotto), var(--aquamarine));
    padding: 15px 65px 15px 15px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    width: 50%;
    backdrop-filter: blur(5px);
}

  .card-overlay h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-family: 'Poppins';
    color: #fff;
    line-height: 24px;
 }

.card-overlay a {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.card-overlay a:hover {
    color: #fff;
}


/* Section Wrapper */
.strategy-section {
    font-family: "Poppins", sans-serif;
    color: #333;
}

/* Hero Image */
.strategy-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.strategy-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.strategy-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

/* Content Box */
.strategy-content {
    max-width: 1100px;
    margin: -80px auto 50px;
    padding: 0 20px;
}

/* Top heading area */
.heading-box {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.heading-box .icon {
    width: 70px;
    margin-bottom: 15px;
}

.heading-box h2 {
    font-size: 32px;
    font-weight: 700;
    color: #003a70;
    margin-bottom: 15px;
}

.heading-box p {
    line-height: 1.7;
    font-size: 15px;
    color: #555;
}

/* Bottom content box */
.content-box {
    margin-top: 40px;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.content-box p {
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 18px;
    color: #444;
}



/*=================================== Responsive Css ===================================*/


@media (min-width: 1200px) {

    .container,
    .container-fluid {
        padding: 0;
    }
}

@media (max-width: 1250px) {
    .post-excerpt p {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 1rem;
        line-height: 1.1;
    }

    .sub-para {
        font-size: 14px;
        line-height: 22px;
    }

    .our-services .box p {
        font-size: 14px;
        line-height: 22px;
    }

    .event_section .nav-tabs .nav-link {
        font-size: 16px;
    }

    .cta-btn-dark,
    .cta-btn {
        font-size: 16px;
    }

    .footer-box h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .brochure-btn {
        font-size: 16px !important;
    }

    .heading {
        font-size: 40px;
    }

    .phone-email li a {
        font-size: 14px;
    }

    .navbar-nav li a {
        font-size: 14px;
    }

    .content-info p {
        font-size: 16px;
    }
}

/* ========= HEADER MOBILE VIEW ========= */
@media (max-width: 1200px) {
    .offcanvas-body ul {
        padding-left: 0;
    }

    .offcanvas-body ul li {
        list-style: none;
        border-bottom: 1px solid #f1f1f1;
    }

    .card-overlay {
    width: 70%;
}

    .offcanvas-body ul li a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: var(--dark-black);
    }

    .offcanvas-body ul li a:hover {
        background: #f1f1f1;
        border-radius: 5px;
    }

    .submenu-list-mobile {
        display: none;
        margin-left: 15px;
        padding-left: 10px;
        border-left: 2px solid var(--aquamarine);
    }

    .submenu-mobile.open>.submenu-list-mobile {
        display: block;
    }

    .toggle-arrow {
        cursor: pointer;
        padding: 10px;
        color: var(--aquamarine);
    }

    .toggle-arrow i {
        transition: transform 0.3s;
    }

    .offcanvas-header {
        background-color: var(--baby-blue);
    }

    .offcanvas-logo img {
        width: 130px;
    }

    .btn-close {
        opacity: 1 !important;
        background-color: #fff;
    }

    .py-80 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .pt-80 {
        padding-top: 50px;
    }

    .pb-80 {
        padding-bottom: 50px;
    }

    .counter-section {
        padding: 50px 20px;
    }
}

@media (max-width: 1100px) {

    .brochure-btn {
        padding: 12px 20px !important;
    }

    .footer-box h3 {
        font-size: 18px;
        line-height: 27px;
    }
}

@media (max-width: 992px) {
    .footlink {
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }

.card-overlay {
    width: 80%;
}

}

@media (max-width: 900px) {
    .footer-box {
        width: 315px;
        margin-bottom: 1rem;
    }

    .footer-grid {
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .faq_text h4 {
        font-size: 24px;
    }
    /* .hero-content h1 {
    color: linear-gradient(120deg, #003371, #000);
}
.hero-content{
    color: #000;
}

.overlay {
    background-color:#003371
} */

    .faq_text {
        padding: 30px 20px;
        margin-top: 20px;
    }

    .chairman_msg .content-info {
        padding-top: 30px;
    }

    .hero-section {
        height: 85vh;
    }

    .overlay {
        display: none;
    }

    .for_mobile {
        padding: 0px 0;
        display: block;
    }


    .column.sidebar2,
    .column.sidebar1 {
        width: 100%;
    }

    .content-info h6 {
        font-size: 18px;
        line-height: 24px;
    }

    .content-info span {
        font-size: 16px;
    }

    .heading {
        font-size: 36px;
        line-height: 40px;
    }

    .column.sidebar2 {
        margin-left: 0px;
        padding-left: 0px;
        margin-top: 30px;
    }

    .column {
        display: block;
    }

    .form-container {
        padding: 20px;
    }

    .hero-content.left-align {
        left: 5%;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .team-photo {
        height: 280px;
    }

    .brochure-btn {
        padding: 12px 30px !important;
    }

    .cta-btn-dark,
    .cta-btn {
        padding: 12px 30px;
    }

    .light-btn {
        font-size: 14px;
        padding: 6px 14px;
    }

    .navbar-brand img {
        max-width: 100%;
        width: 170px;
    }

    .head_nav .btn {
        width: 35px;
    }

    ul.sociallink li {
        margin-right: 5px;
    }

    .border-left:first-child {
        border-left: none;
    }

    .swiper-button-prev,
    .swiper-button-next,
    .swiper-rtl .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px !important;
    }

    .swiper-slide {
        position: relative;
        background-size: cover !important;
        background-repeat: no-repeat;
        background-position: top;
    }

}

 @media (max-width: 767.98px) {
      .card-overlay {
        bottom: 10px;
        left: 10px;
        padding: 10px 15px;
        max-width: 90%;
      }
    }
@media (max-width:605px) {
    .heading {
        font-size: 36px;
        line-height: 42px;
    }

    .info_top .sociallink {
        display: none;
    }

    .info_top div.border-left {
        border-left: 1px solid #ffffff00;
        margin: 0 !important;
    }

    .phone-email li:first-child {
        padding: 0;
    }

    .event_section .nav-tabs .nav-link {
        width: 47%;
    }

    .event_section .nav-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .lead-form .heading {
        font-size: 24px;
        line-height: 36px;
        ;
    }

    .heading {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width:500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-box {
        width: 100%;
        margin-bottom: 0;
    }
}

@media (max-width:450px) {
    .info_top {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        padding-bottom: 2px;
    }

    .footlink {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

@media (max-width: 480px) {
.card-overlay {
    width: 90%;
}
}

@media (max-width: 410px) {
    .heading {
        font-size: 30px;
        line-height: 36px;
    }
}

@media (max-width: 375px) {
    .event_section .nav-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .event_section .nav-tabs .nav-link {
        width: 48%;
    }

    .event_section .nav-tabs .nav-link {
        font-size: 13px;
        padding: .5rem;
    }

    .hero-content.left-align {
        left: 0%;
        max-width: 100%;
    }
}

@media (max-width: 330px) {

    .cta-btn-dark,
    .cta-btn {
        padding: 12px 20px;
    }

    .cta-btn-dark,
    .cta-btn {
        font-size: 14px;
    }
}


@media only screen and (max-width: 320px) and (max-height: 560px) {
    .hero-section {
        height: 95vh;
    }


}