/* ==========================================================================

   1. GLOBAL STYLES & RESET

========================================================================== */



:root {

    --primary-blue: #0b345f;

    --accent-green: #27a75a;

    --accent-green-hover: #1e8748;

    --text-dark: #2d3748;

    --text-muted: #64748b;

    --bg-light: #f8fafc;

    --card-bg: #ffffff;

    --border-radius: 16px;

    --footer-bg: #1e252b;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

}



* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: 'Plus Jakarta Sans', sans-serif;

}



body {

    background-color: var(--bg-light);

    color: var(--text-dark);

    line-height: 1.6;

    overflow-x: hidden;

}





/* ==========================================================================

   2. HEADER & NAVIGATION

========================================================================== */



.mobile-header, 

.mobile-menu-drawer {

    display: none;

}



header {

    background-image: url('../images/BLUE-TOP.png');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;



    padding: 10px 5%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    position: relative;

    top: 0;

    z-index: 9;

  

}



.logo img {

       max-width:60%;

}



nav {

    display: flex;

    align-items: center;

    gap: 30px;

}



.nav-links {

    display: flex;

    list-style: none;

    gap: 25px;

	

    margin-bottom: 27px;

}



.nav-links a {

    color: #ffffff;

    text-decoration: none;

       font-weight: 700;

    font-size: 17px;

    transition: var(--transition);

    opacity: 0.9;

}



.nav-links a:hover,

.nav-links a.active {

    opacity: 1;

        color: #36a3e8;

}



.btn-touch {

    background: #36a3e8;

    color: #ffffff;

    padding: 2px 20px;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 600;

    font-size: 17px;

    transition: var(--transition);

    box-shadow: 0 4px 10px rgba(39, 167, 90, 0.3);

	    margin-bottom: 26px;

}



.btn-touch:hover {

    transform: translateY(-2px);

    box-shadow: 0 6px 15px rgba(39, 167, 90, 0.4);

}





/* ==========================================================================

   3. HERO BANNER SECTION

========================================================================== */

.mobile-hero-section{

	display:none;

}



.hero-section {

    padding: 0px 5% 14px 5%;

    max-width: 100%;

    margin: 0 auto;

}



.hero-banner {

    position: relative;

        bottom: 31px;

    overflow: hidden;

    min-height: 594px;

    background: url('../images/BANNER.jpg') no-repeat center center / cover;

    display: flex;

    align-items: center;

    padding: 60px;

    animation: fadeIn 1s ease-in-out;

}



.hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

  

    z-index: 1;

}



.hero-content {

    position: relative;

    z-index: 2;

    max-width: 500px;

    animation: slideInLeft 1s ease-out;

}



.hero-content h1 {

    font-size: 38px;

    font-weight: 500;

    color: #1a202c;

    line-height: 1.25;

    margin-bottom: 20px;

}



.play-button {

    position: absolute;

    bottom: 40px;

    right: 40px;

    width: 65px;

    height: 65px;

    background-color: #ffffff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    cursor: pointer;

    z-index: 2;

    transition: var(--transition);

    text-decoration: none;

}



.play-button i {

    color: var(--primary-blue);

    font-size: 1.5rem;

    margin-left: 4px;

}



.play-button:hover {

    transform: scale(1.1);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);

}





/* ==========================================================================

   4. ABOUT / EXPERIENCE SECTION

========================================================================== */



.mobile-about-section {

    display: none;

}

.about-section {

    width: 90%;

    /* max-width: 1200px; */

    margin: auto;

    /* padding: 0 20px;*/

    display: grid;

    grid-template-columns: 1fr 120px 1.5fr;

    gap: 30px;

    align-items: start;

}



.about-img-container img {

    width: 100%;

    

    transition: var(--transition);

}



.about-img-container img:hover {

    transform: scale(1.02);

}





/* Pillar Graphic Box */



.badge-box { 

   background-color: var(--primary-blue);

    color: #ffffff;

    padding: 20px 15px 60px 15px;
    border-radius: 0 0 58px 58px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-shadow: 0 10px 20px rgba(11, 52, 95, 0.2);

    width: 81%;

}





.badge-number {

        font-size: 47px;



    font-weight: 800;

    line-height: 1;

}



.badge-text {

    writing-mode: vertical-rl;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 18px;

    font-weight: 600;

    margin-top: 15px;

    transform: rotate(0deg);

}





.about-content h4 {

    color: var(--accent-green);

    text-transform: uppercase;

    font-size: 20px;

    letter-spacing: 1.5px;

    margin-bottom: 0px;

}



.about-content h2 {

      font-size: 32px;

    color: #000;

    margin-bottom: 10px;

    line-height: 1.3;

    font-weight: 400;

}



.about-content p {

    

  

    margin-bottom: 15px;

}



.btn-know-more {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    color: var(--text-dark);

    text-decoration: none;

    font-weight: 600;

    transition: var(--transition);

}



.btn-know-more img {

    width: 32px;
    height: 32px;

    transition: var(--transition);

}



.btn-know-more:hover {

    color: var(--accent-green);

}



.btn-know-more:hover img {

    transform: translateX(5px);

}





/* ==========================================================================

   5. GROUP COMPANIES SECTION

========================================================================== */



.companies-section {

   /* background-color: #ffffff;*/

        padding: 30px 5%;

    text-align: center;

    position: relative;

}



.companies-section h2 {

        font-size: 34px;

    color: var(--primary-blue);

    margin: 0px 10px;

    font-weight: 400;

}

.companies-section .owl-nav {

    display: none !important;

}



.companies-section .owl-dots {

    display: flex !important;

    justify-content: center !important;

    align-items: center !important;

    gap: 8px !important;



    width: 100% !important;

    margin-top: 0px !important;



    position: relative !important;

    z-index: 10 !important;

}



.companies-section .owl-dots .owl-dot {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;



    width: 10px !important;

    height: 10px !important;



    padding: 0 !important;

    margin: 0 !important;



    border: none !important;

    background: transparent !important;



    cursor: pointer;

}



.companies-section .owl-dots .owl-dot span {

    display: block !important;



    width: 10px !important;

    height: 10px !important;



    margin: 0 !important;



    border-radius: 50% !important;



    background: #cbd5e1 !important;



    transition: all 0.3s ease !important;

}



.companies-section .owl-dots .owl-dot.active span {

    width: 28px !important;

    height: 10px !important;



    border-radius: 20px !important;



    background: #dc4f34 !important;

}

/*.cards-grid {

    display: grid !important;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

    max-width: 100%;

    margin: 0 auto;

}*/



.company-card {

    background-color: #fff;

    border-radius: var(--border-radius);

    padding: 40px 25px;

    text-align: left;

    border: 1px solid #edf2f7;

    transition: var(--transition);

    position: relative;

    z-index:9999;

    overflow: visible; /* important */

	margin:40px 17px;

}



.company-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);

    background-color: #ffffff;

}



.card-logo-wrapper {

    width: 80px;

    height: 80px;

    margin-bottom: 20px;



    display: flex;

    align-items: center;

    justify-content: center;



    position: relative;

    top: -30px; /* moves logo upward */

}



.card-logo-wrapper img {

    

position:relative;

z-index:99;

    margin-left: 73%;

}



.company-card h3 {

    font-size: 1.25rem;

    color: var(--primary-blue);

    margin-bottom: 12px;

    font-weight: 700;

}



.company-card p {

    font-size: 0.88rem;

    

    line-height: 1.6;

}





/* Slider Dots */



.dots-container {

    display: flex;

    justify-content: center;

    gap: 8px;

    margin-top: 40px;

}



.dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background-color: #cbd5e1;

    cursor: pointer;

    transition: var(--transition);

}



.dot.active {

    background-color: #e56a44;

    width: 12px;

    height: 12px;

}





/* ==========================================================================

   6. VISION & MISSION SECTION

========================================================================== */

.mob-vision-content{

	display:none;

}

.vision-mission-section {

    background-image: url("../images/BANNER.jpg-2.jpg");

    background-repeat: no-repeat;

    background-position: center right;

    background-size: cover;



    color: #ffffff;

    padding: 80px 8%;

    position: relative;

    overflow: hidden;

}



.vm-container {

    max-width: 552px;

    display: flex;

    flex-direction: column;

    gap: 50px;

}



.vm-block h2 {

 font-size: 28px;

    font-weight: 100;

    margin-bottom: 12px;

    letter-spacing: -0.5px;

}



.vm-block p {

    

    color: #fff;

    font-weight: 400;

    margin-bottom: 20px;

	text-align: justify;

}



.vm-arrow-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

       border: 3px solid #fff;

    border-radius: 50%;

    color: var(--accent-green);

    text-decoration: none;

    font-size: 1.1rem;

    transition: var(--transition);

	float: right;

}



.vm-arrow-btn:hover {

    background-color: var(--accent-green);

    color: #ffffff;

    transform: translateX(6px);

    box-shadow: 0 0 15px rgba(39, 167, 90, 0.5);

}





/* ==========================================================================

   7. OUR VALUES SECTION

========================================================================== */

/* Image Styling inside Wrapper */

.icon-wrapper img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    position: absolute;

    top: 0;

    left: 0;

    transition: opacity 0.3s ease;

}



/* Default state: show regular, hide hover */

.icon-wrapper .hover-img {

    opacity: 0;

}



.icon-wrapper .default-img {

    opacity: 1;

}



/* Hover and Active states: hide regular, show hover */

.value-item:hover .icon-wrapper .default-img,

.value-item.active .icon-wrapper .default-img {

    opacity: 0;

}



.value-item:hover .icon-wrapper .hover-img,

.value-item.active .icon-wrapper .hover-img {

    opacity: 1;

}





/* Existing styles from your snippet */

.values-section {

    padding: 11px 5%;

    text-align: center;

    background-color: #f8fafc;

}



.values-section h2 {

    font-size: 32px;

    font-weight: 200;

    margin-bottom: 20px;

}



.values-grid {

    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

}



.values-grid .value-item {

    width: 100%;

    padding: 15px;

    box-sizing: border-box;

}



.value-item {

    display: flex;

    flex-direction: column;

    align-items: center;

    cursor: pointer;

    text-decoration: none;

}



.icon-wrapper {

    width: 130px;

    height: 130px;

    border-radius: 50%;

    background-color: var(--primary-blue);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    transition: var(--transition);

    box-shadow: 0 10px 20px rgba(11, 52, 95, 0.15);

    position: relative;

    overflow: hidden; /* Keeps the square images clipped into a circle */

}



.value-item h3 {

    font-size: 1.1rem;

    font-weight: 800;

    color: var(--primary-blue);

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: var(--transition);

}



.value-item:hover .icon-wrapper,

.value-item.active .icon-wrapper {

    background-color: var(--accent-green);

    transform: translateY(-8px) scale(1.05);

    box-shadow: 0 15px 30px rgba(39, 167, 90, 0.3);

}



.value-item:hover h3,

.value-item.active h3 {

    color: var(--accent-green);

}







.values-section .owl-nav {

    display: none !important;

}



/* Pagination container */

.values-section .owl-dots {

    display: flex !important;

    justify-content: center !important;

    align-items: center !important;

    gap: 8px !important;



    width: 100% !important;

    margin-top: 25px !important;



    position: relative !important;

    z-index: 10 !important;

}



/* Individual dot */

.values-section .owl-dots .owl-dot {

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;



    width: 10px !important;

    height: 10px !important;



    padding: 0 !important;

    margin: 0 !important;



    border: none !important;

    background: transparent !important;



    cursor: pointer;

}



/* Dot circle */

.values-section .owl-dots .owl-dot span {

    display: block !important;



    width: 10px !important;

    height: 10px !important;



    margin: 0 !important;

    padding: 0 !important;



    border-radius: 50% !important;



    background: #cbd5e1 !important;



    transition: all 0.3s ease !important;

}



/* Active dot */

.values-section .owl-dots .owl-dot.active span {

    width: 28px !important;

    height: 10px !important;



    border-radius: 20px !important;



    background: #27a75a !important;

}



/* ==========================================================================

   8. PROPERTY BANNER

========================================================================== */

.mob-property-banner {

	display:none;

}



.property-banner {

    width: 100%;

    height: 450px;

    background: url('../images/BANNER-3.jpg') no-repeat center center / cover;

    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.1);

}

.formrightsec {
    float: right;
    width: 50%;
    padding-bottom: 10px;
}
.formrightsec ul {
    width: 100%;
    padding: 0px;
    margin: 0px;
}
formrightsec ul li {
    width: 100%;
    vertical-align: top;
    display: inline-block;
}
.formrightsec li {
    padding: 10px;
}
.formrightsec input {
    width: 90%;
    padding: 13px;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 17px;
    font-family: 'poppins';
}
.submitbtn {
    padding-left: 10px;
}
.submitbtn button {
    display: inline-block;
    background-color: #f9c512;
    border-radius: 15px;
    padding: 7px 12px;
    border: none;
    cursor: pointer;
}
.submitbtn button p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
}



/* ==========================================================================

   9. FOOTER

========================================================================== */

.mob-footer {

        display: none;

    }

.webfooter {

    background-color: #2b2b2b;

    color: #ffffff;

        /*padding: 19px 4% 0px 4%;*/

		padding: 5px 0px 0px 0px  ;



}



.footer-content {

    display: grid;

    grid-template-columns: 0.9fr 1fr 1.5fr 1.5fr;

    gap: 40px;

    max-width: 1200px;

    margin: 15px auto 20px auto;

    align-items: start;

}



.footer-logo img {

       max-width: 100px;

}



.footer-col h4 {

    font-size: 22px;

    color: var(--accent-green);

    margin-bottom: 20px;

    font-weight: 700;

}



.footer-links {

    list-style: none;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

}



.footer-links a {

    color: #cbd5e1;

    text-decoration: none;

    font-size: 0.9rem;

    transition: var(--transition);

}



.footer-links a:hover {

    color: var(--accent-green);

}



.contact-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 15px;

    color: #cbd5e1;

    font-size: 0.88rem;

    line-height: 1.5;

}



.contact-icon {

    width: 32px;

    height: 32px;

    border-radius: 50%;

    background-color: var(--accent-green);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 0.85rem;

    flex-shrink: 0;

}



.footer-email {

    margin-top: 40px;

}



.footer-bottom {

   ;

        padding: 6px;



    text-align: center;

    font-size: 0.85rem;

    

    background: #10315a;

}





/* ==========================================================================

   10. ANIMATIONS

========================================================================== */



@keyframes fadeIn {

    from {

        opacity: 0;

    }



    to {

        opacity: 1;

    }

}



@keyframes slideInLeft {

    from {

        opacity: 0;

        transform: translateX(-30px);

    }



    to {

        opacity: 1;

        transform: translateX(0);

    }

}





/* ==========================================================================

   11. RESPONSIVE - TABLET

========================================================================== */

@media screen and (max-width: 1800px) {
.hero-banner{background-size: 100% 100%;}
}

@media screen and (max-width: 1024px) {

    .hero-banner {

        min-height: 448px;

    }

	.vision-mission-section {

		    background-position: center !important;

	}

	.vm-container {

    max-width: 410px;

	}

}



@media (max-width: 999px) {

	.logo img {

    max-width: 51%;

}

    .hero-section {

        margin: auto;

        width: 98%;

    }



    .hero-banner {

        min-height: 401px;

        bottom: 8px;

        padding: 10px;

    }

	.about-section{

		    width: 98% !important;

    

    margin: auto !important;

	}

	.vm-container



 {

        max-width: 371px;

    }

}



@media screen and (max-width: 900px) {

    .hero-banner {

        min-height: 391px;

        bottom: 8px;

    }



    .hero-content h1 {

        font-size: 31px;

    }

	    .vm-container {

        max-width: 318px;

    }

	

}



@media screen and (max-width: 850px) {

    header {

       padding: 8px 5%;

    }



    .hero-banner {

        min-height: 330px !important;

        bottom: 8px;

        padding: 10px;

    }

}



/* ==========================================================================

   12. RESPONSIVE - MOBILE

========================================================================== */



@media (max-width: 767px) {

	

	

.desktop-header {

        display: none !important;

    }



         .mobile-header {

        display: flex;

        justify-content: space-between;

        align-items: center;

        padding: 15px 20px;

        background-color: #0e3159; 

        position: relative;

        z-index: 100;

    }



    .mobile-actions {

        display: flex;

        align-items: center;

        gap: 20px;

    }



    .mobile-btn-touch {

        background-color: #0084ff; 

        color: #fff;

        padding: 10px 22px;

        border-radius: 50px;

        text-decoration: none;

        font-weight: bold;

        font-size: 14px;

    }



    /* --- Animated Hamburger Menu Wrapper --- */

    .mobile-hamburger {

        display: flex;

        flex-direction: column;

        align-items: flex-end;

        justify-content: center;

        gap: 6px;

        cursor: pointer;

        width: 32px;

        height: 20px;

        position: relative;

        z-index: 1001; /* Layer over the menu drawer */

    }



    .mobile-hamburger span {

        background-color: #fff;

        height: 4px;

        border-radius: 2px;

        transition: transform 0.3s ease, width 0.3s ease, background-color 0.3s ease;

        transform-origin: right center; 

    }



    .line-top { width: 32px; }

    .line-bottom { width: 20px; }



    /* --- "X" Close Transform Animations when active --- */

    .mobile-hamburger.is-active .line-top {

        transform: rotate(-45deg) translate(-2px, -3px);

        width: 26px;

    }



    .mobile-hamburger.is-active .line-bottom {

        transform: rotate(45deg) translate(-2px, 3px);

        width: 26px;

    }



    /* --- Right-Side Pop-Up Drawer --- */

    .mobile-menu-drawer {

        display: block;

        background-color: #0b2c4d;

        width: 250px; /* Width of your side-pop layout */

        height: 100vh; /* Full screen height */

        

        /* Positioning on right side */

        position: fixed;

        top: 0;

        right: 0;

        z-index: 1000;

        

        /* Slide animation configuration */

        transform: translateX(100%); /* Starts off-screen to the right */

        transition: transform 0.3s ease-in-out;

        

        box-shadow: -5px 0 15px rgba(0,0,0,0.3);

        padding-top: 80px; /* Leaves room so menu links don't hide under header */

    }

	.drawer-header {

    position: absolute;

    top: 18px;

    right: 20px;

    width: auto;

    z-index: 1002;

}



.drawer-close-btn {

    background: transparent;

    border: none;

    color: #fff;

    font-size: 36px;

    line-height: 1;

    cursor: pointer;

    padding: 0;

    width: 40px;

    height: 40px;



    display: flex;

    align-items: center;

    justify-content: center;



    transition: 0.3s ease;

}



.drawer-close-btn:hover {

    color: #0084ff;

    transform: rotate(90deg);

}



    /* Open configuration class applied by JS */

    .mobile-menu-drawer.is-open {

        transform: translateX(0); /* Slides onto the screen */

    }



    .mobile-menu-drawer ul {

        list-style: none;

        padding: 20px;

        margin: 0;

    }



    .mobile-menu-drawer ul li {

        padding: 15px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    }



    .mobile-menu-drawer ul li a {

        color: #fff;

        text-decoration: none;

        font-size: 18px;

        display: block;

    }



    .mobile-menu-drawer ul li a.active {

        color: #0084ff;

        font-weight: bold;

    }

	.mobile-logo img {

    width: 50%;

}



      section.hero-section {

        display: none !important;

    }

 .mobile-hero-section {

        display: flex;

        flex-direction: column;

        width: 100%;

    }



    .mobile-hero-banner {

        position: relative;

        width: 100%;

        height: auto;

        display: block;

        line-height: 0;

    }



    .mobile-banner-img {

        width: 100%;

        height: auto;

        display: block;

        object-fit: cover;

    }



    .mobile-hero-overlay {

        position: absolute;

        top: 0;

        left: 0;

        width: 100%;

        height: 100%;

        background-color: rgba(0, 0, 0, 0.15);

        z-index: 1;

    }



    .mobile-play-button {

        position: absolute;

        top: 50%;

        left: 50%;

        transform: translate(-50%, -50%);

        z-index: 2;

        width: 70px;

        height: 70px;

        display: flex;

        align-items: center;

        justify-content: center;

        transition: transform 0.2s ease;

    }



    .mobile-play-button img {

        width: 100%;

        height: 100%;

        object-fit: contain;

    }



    .mobile-play-button:hover {

        transform: translate(-50%, -50%) scale(1.08);

    }



       .mobile-hero-content-panel {

    position: relative;

        width: 100%;

        min-height: 239px;

        background-color: #1fa24a;

        padding: 24px 25px;



    display: flex;

    align-items: center;



    overflow: hidden;

}





/* =========================================

   TEXT

========================================= */



.mobile-hero-text {

    position: relative;

    z-index: 10;



    width: 72%;

}



.mobile-hero-text h1 {

    margin: 0;



    color: #ffffff;



    font-size: 36px;

    font-weight: 400;



    line-height: 1.3;

}





/* =========================================

   WHITE DIAGONAL

========================================= */



.mobile-white-diagonal {

    position: absolute;



    top: 0;

    right: 0;



    width: 38%;

    height: 100%;



    background-color: #ffffff;



    clip-path: polygon(

        100% 0,

        100% 100%,

        0 100%

    );



    z-index: 2;

}





/* =========================================

   BLUE TRIANGLE

   MUST BE ABOVE GREEN + WHITE

========================================= */



.mobile-blue-triangle {

    position: absolute;



    top: 44px;

        right: 27px;

        width: 217px;

        height: 136px;





    background-color: #34a2e7;



    clip-path: polygon(

        50% 0%,

        0% 100%,

        100% 100%

    );



    z-index: 20;



    display: block;

}

	

	   section.about-section {

        display: none !important;

    }



    .mobile-about-section {

        display: block;

        width: 100%;

       

        /*padding: 30px 52px;*/

		width: 96%;

        

        margin: 0 auto;

        

    }



    .mobile-about-top-wrapper {

        display: flex;

        flex-direction: column;

        width: 100%;

        margin-bottom: 25px;

    }



    .mobile-about-heading-top {

        color: #1fa24a;

                font-size: 22px;

        font-weight: 600;



        letter-spacing: 1px;

        text-transform: uppercase;

        margin-bottom: 15px;

        text-align: left;

    }



    .mobile-about-visual-box {

        position: relative;

        display: flex;

        width: 100%;

        align-items: center;

    }



    .mobile-about-img-container {

        width: 83%;

        height: auto;

        border-radius: 4px;

        overflow: hidden;

        line-height: 0;

    }



    .mobile-about-img-container img {

        width: 100%;

        height: auto;

        display: block;

        object-fit: cover;

    }



    .mobile-badge-box {

    position: absolute;

    left: 82%;

        top: 0px;

        width: 113px;



   height: 314px;

    background-color: #0b2c4d;

    

    

    border-top-left-radius: 0px;

    border-top-right-radius: 0px;

            border-bottom-left-radius: 54px;

        border-bottom-right-radius: 54px;



    

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

   

    padding: 20px 10px;

}





    .mobile-badge-number {

        color: #ffffff;

                font-size: 71px;

        font-weight: 900;

        line-height: 1;

        margin-bottom: 12px;

        text-align: center;

    }



    .mobile-badge-text {

    color: #ffffff;

            font-size: 29px;

        font-weight: 400;

        line-height: 1.4;

        text-align: center;

        letter-spacing: 0.5px;

        text-transform: uppercase;

        width: 100%;

        word-wrap: break-word;

        writing-mode: vertical-rl;

        transform: rotate(0deg);

        white-space: nowrap;

}

    .mobile-about-content {

        width: 100%;

        display: flex;

        flex-direction: column;

        text-align: left;

    }



    .mobile-about-content h2 {

		        color: #000;

        font-size: 35px;

        font-weight: 300;

        line-height: 1.3;

        margin: 0 0 20px 0;

    }



    .mobile-about-content p {

        

        line-height: 1.6;

        margin: 0 0 16px 0;

    }



    .mobile-btn-know-more {

        display: inline-flex;

        align-items: center;

        text-decoration: none;

        margin-top: 10px;

        width: max-content;

        gap: 8px;

    }



    .mobile-btn-know-more span {

        color: #000;

    }



    .mobile-btn-know-more img {

        width: 24px;

        height: 24px;

        object-fit: contain;

    }

	



    .mob-vision-bg {

        width: 100%;

        position: relative;

        background-image: url("../images/BANNER-2.jpg");

        background-repeat: no-repeat;

        background-position: center top;

               background-size: cover;

    }



    .mob-vision-image {

        width: 100%;

        height: 450px;

        overflow: hidden;

    }



    .mob-vision-image img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        display: block;

    }



    .mob-vision-content {

		        display: block;

        width: 100%;

        padding: 0px 28px 0px;

        background: transparent;

        position: relative;

        z-index: 2;

        top: 269px;

        height: 639px;

    }



    .mob-vision-block {

        margin-bottom: 40px;

    }



    .mob-vision-block:last-child {

        margin-bottom: 0;

    }



    .mob-vision-block h2 {

        margin: 0 0 18px;

        color: #ffffff;

      

        font-size: 34px;

        font-weight: 100;

    }



    .mob-vision-block p {

        text-align: justify;

        color: #ffffff;

    

       

    }



    section.vision-mission-section {

        display:none;

    }



   .mob-property-banner {

	   display:block;

       

        

    }



    .mob-property-banner img {

        width: 100%;

        

    }



    .property-banner {

    display:none;

    }

.webfooter{

	display:none;

}

 .mob-footer {

	  display: block;

        width: 100%;

        margin: 0;

        padding: 0;

        background: #2b2b2b;

        color: #ffffff;

        text-align: center;

    }



    .mob-footer-content {

        width: 100%;

        padding: 20px 20px 25px;

        display: flex;

        flex-direction: column;

        align-items: center;

    }



    /* Logo */

    .mob-footer-logo {

        width: 100%;

        margin-bottom: 22px;

        display: flex;

        justify-content: center;

    }



    .mob-footer-logo img {

        width: 140px;

        height: auto;

        display: block;

        object-fit: contain;

    }



    /* Section */

    .mob-footer-section {

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

    }



    .mob-footer-section h4 {

        margin: 0 0 15px;

        color: #27a75a;

        font-size: 28px;

        font-weight: 700;

        line-height: 1.2;

    }



    /* Quick Links */

    .mob-footer-links {

        width: 190px;

        padding: 0;

        margin: 0 0 25px;

        list-style: none;



        display: grid;

        grid-template-columns: 1fr 1fr;

        column-gap: 30px;

        row-gap: 5px;



        text-align: left;

    }



    .mob-footer-links li {

        padding: 0;

        margin: 0;

    }



    .mob-footer-links a {

        color: #ffffff;

        text-decoration: none;

        font-size: 16px;

        

        line-height: 1.7;

    }



    /* Contact */

    .mob-contact-item {

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        margin-bottom: 18px;

    }



    .mob-contact-icon {

        width: 38px;

        height: 38px;

        margin-bottom: 10px;



        border-radius: 50%;

        background-color: #27a75a;



        display: flex;

        align-items: center;

        justify-content: center;



        color: #ffffff;

        font-size: 18px;

    }



    .mob-contact-text {

        color: #ffffff;

        font-size:16px;

        

        line-height: 1.55;

        text-align: center;

    }



    /* Copyright */

    .mob-footer-bottom {

        width: 100%;

        padding: 8px 15px;



        background: #10315a;



        color: #ffffff;

        font-size: 14px;

        font-weight: 600;

        line-height: 1.4;

        text-align: center;

    }

	.values-section h2{

		display:none;

	}

}



@media (max-width: 600px) {

.mobile-badge-box{

	height: 245px;

	        width: 95px;

}

.mobile-badge-number



 {

       

        font-size: 42px;

}

    .mobile-badge-text {

       

        font-size: 23px;

}

    .mob-vision-content {

        

        top: 193px;

	}

	.mobile-blue-triangle {

        

        right: 5px !important;

	}

}

/* ==========================================================================

   13. RESPONSIVE - SMALL MOBILE

========================================================================== */



@media (max-width: 480px) {



    .values-grid {

        grid-template-columns: 1fr;

    }



}