@font-face {
  font-family: 'NotoSans';
  src: url('../fonts/noto-sans/NotoSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "NotoSans", sans-serif;
}


body {
    background: #fff;
    overflow-x: hidden;
}

body, html {
    overflow-x: hidden;
}


header .logo {
    position: relative;
    width: 140px;
    height: auto;
}

header .logo img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    transition: opacity 0.3s;
    opacity: 1; 
}

header .logo .logo-blue {
    top: 0;
    left: 0;
    width: 140px;
    transition: opacity 0.3s;
    opacity: 0; 
}

header.scrolled .logo img:first-child {
    opacity: 0; 
}

header.scrolled .logo .logo-blue {
    opacity: 1; 
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: 0.3s;
    background: transparent;
    border-bottom: 0px solid transparent;
}

header.scrolled {
    background: #ffffff;
    border-bottom: 4px solid #033d83; 
}

header .container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    transition: 0.3s;
}

header.scrolled nav ul li a {
    color: #000;
}

.triangle-btn-wrapper {
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.triangle-btn-wrapper div {
  width: 100%;
  height: 4px;
  background-color: white; 
  transition: 0.3s;
}


header.scrolled .triangle-btn-wrapper div {
  background-color: #033d83;
}

.hero {
    height: 95vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/Picture1.png") center/cover no-repeat;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); 
}


.hero-content {
    position: relative;
    z-index: 2;
}

.date-box {
    padding: 5px 15px;
    font-size: 20px;
    color: white;
    line-height: 4;
}

.hero h1 {
    font-size: 70px;
    letter-spacing: 3px;
    margin: 10px 0;
    font-weight: bold;
    margin-top: 10px;
}

.hero img{
    margin-top: 10px;
}

.hero h4{
    line-height: 2;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.time {
    padding: 15px;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time span {
    font-size: 50px;
}

.separator {
    font-size: 40px;
    color: #fff;
    line-height: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 60px; 
}

.hero-buttons {
    margin-top: 20px;
    display: block;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: 3px solid #01264c;
    background-color: #01264c;
    opacity: 60%;
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    border-radius: 5px;
}

.btn:hover{
    background-color: #01264c;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 25px;
    left: 0;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    display: none;
    min-width: 170px;
    top: calc(120% - 5px);
}

.dropdown-menu li a {
    color: #000 !important;
    display: block;
    padding: 8px 15px;
    text-decoration: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.exhibitions {
    width: 90%;              
    max-width: 1200px;       
    margin: 50px auto;       
    display: flex;
    justify-content: center;
    margin-top: -70px;
    opacity: 1000;
}

.box {
    width: 40%;
    height: 130px;
    position: relative;
    color: #fff;
    flex: 1;
    max-width: 350px;
    border-bottom: 8px solid #033d83;
}

.box .img1 {
    width: 100%;
    height: 100%;
    background: url(../images/on\ ground.png) center/cover no-repeat;
}

.box .img1::after {
    content: "";
    position: absolute;
    inset: 0; 
    background-color: rgba(250, 186, 19, 0.7); 
    pointer-events: none; 
}

.box .img2 {
    width: 100%;
    height: 100%;
    background: url(../images/10.jpg)center/cover no-repeat;
}

.box .img2::after {
    content: "";
    position: absolute;
    inset: 0; 
    background-color: rgba(16, 127, 54, 0.5); 
    pointer-events: none; 
}

.box .img3 {
    width: 100%;
    height: 100%;
    background: url(../images/alexandrejosesoares_Super_resolution_Electrician_connecting_cab_306be58e-bdfc-480c-a3f4-e3eaad336c32.jpg)center/cover no-repeat; 
}

.box .img3::after {
    content: "";
    position: absolute;
    inset: 0; 
    background-color: rgba(239, 126, 4, 0.5); 
    pointer-events: none; 
}

.box-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.box-text h3 {
    margin-top: 10px;
}

.box-text a {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 12px;
    color: white;
    font-size: 12px;
     text-decoration: none;
}

.more-info {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
    background: transparent; 
    color: #fff; 
    font-size: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.more-info .arrow {
    display: inline-block;
    transition: transform 0.3s, color 0.3s;
}


.more-info:hover .arrow {
    transform: translateX(5px); 
}

.intro-section {
    padding: 100px 0;
}

.intro-container {
    width: 80%;
    margin: auto;
    display: flex;
    gap: 40px;
}

.intro-image-box {
    padding: 1px;
    width: 380px;
    height: 250px;
    margin-left: 110px;
}

.intro-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.main-title {
    font-size: 26px;
    font-weight: bold;
    color: #1a2e5a;
    margin-bottom: 20px;
}

.description {
    margin-top: 10px;
    width: 500px;
    color: #444444;
    line-height: 16pt;
    text-align: justify;
    text-justify: inter-word;
}

.buttons {
    margin-top: 50px;
}

.btn-about{
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin-right: 10px;
    background: #25356b;
}

.btn-register{
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin-right: 10px;
    background: #444444;
}

.stats-section {
    background: url('../images/image-gen\ \(22\).png') center/cover no-repeat;
    height: 260px;
    position: relative;
    margin-top: 40px;
}

.stats-overlay {
    background: rgba(4, 7, 25, 0.9);
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    padding-top: 40px;
    position: relative;
    
}

.stats-title {
    font-size: 50px;
}

.bold {
    font-weight: 700;
}

.stats-box {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 80px;
}

.stat {
    text-align: center;
}

.number-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.number {
    font-size: 60px;
    font-weight: 700;
    color: #2d59a5;
}

.plus {
    font-size: 60px;
    font-weight: 700;
    color: #2d59a5;
    margin-left: 4px;
}

.stats-container1 {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: url('../images/image-gen\ \(22\).png') center/cover no-repeat;
}

.stats-container1::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgb(4, 7, 25,0.8);
}

.stats-container1 img{
    position: relative;
    width: 35px;
    height: 38px;
}

.top-text1 {
    position: relative;
    width: 70%;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.5;
    color: white;
}

.content1 {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.left-boxes1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.box3 {
    position: relative;
    background: white;
    border-right: 10px solid #123A85;
    padding: 20px;
    border-radius: 10px;
    width: 165px;
    text-align: left;
    backdrop-filter: blur(4px);
    height: 160px;
}

.box3 p {
    font-size: 14px;
    margin: 0 0 10px;
    color: black;
}

.box3 h3 {
    position: absolute;
    bottom: 10px;
    right: 20px;
    margin: 0;
    font-size: 35px;
    color: #25356b;
}

.right-card3 {
    position: relative;
    width: 500px;
    background: white;
    color: black;
    padding: 25px;
    border-radius: 2px;
    border-right: 12px solid #25356b;
}

.right-card3 h3 {
    margin-top: 0;
    text-align: left;
}

.bar3 {
    background: #e5e5e5;
    height: 22px;
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
}

.bar-fill3 {
    height: 100%;
    background: #123A85;
    width: 0%;
    transition: width 2s ease;
    color: white;
    font-size: 12px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    white-space: nowrap;
}

.big-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 80px;
    text-align: center;
}

.big-title h5{
    color: #25356b;
    font-size: 26px;
    font-weight: bold;
}

.big-title P{
    color: #25356b;
}

.section1 {
    padding: 60px 0;
    background: #fff;
    text-align: left;
}

.top-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.left-side {
    width: 45%;
    margin-left: 400px;
    margin-top: 20px;
}

.right-side {
    width: 45%;
    margin-right: 250px;
}

.desc {
    color: #444;
    margin-top: 10px;
    width: 80%;
    line-height: 1.6;
    text-align: justify;
}

.links {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.links li {
    margin-bottom: 8px;
    color: #234fa0;
    font-weight: bold;
}
.links li a{
    text-decoration: none;
    color: #161616;
}

/* Cards */

.cards-center {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cards-container {
    display: flex;
    gap: 20px;
}

.card {
    width: 260px;
    height: 330px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-front {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-back {
    background: #fff; 
    color: #000; 
    padding: 20px;
    transform: translateY(100%); 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    z-index: 1;
    text-align: left;
}


.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    left: 0;
    top: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    backface-visibility: visible;
}

.card-back .back-text {
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.5;       
    color: #000;
    width: 100%;
    text-align: left;        
    letter-spacing: 0.5px;   
    white-space: normal;
    word-break: normal;      
    overflow-wrap: normal;
}

.card:hover .card-back {
    transform: translateY(0); 
    opacity: 1;
}

.card:hover .card-front {
    transform: translateY(-100%); 
    opacity: 0;
}

.card-back .your-button-class {
    align-self: flex-start;
}

.card-front .img-holder {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.more-info1 {
    margin-top: 15px;
    color: black;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
    text-decoration: none;
}

.img-holder {
    position: relative;
    overflow: hidden;
}

.img-holder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card:nth-child(1) .img-holder {
    background-image: url('../images/energy1.png');
    background-size: cover;
    background-position: center;
}

.card:nth-child(2) .img-holder {
    background-image: url('../images/techno1.png');
    background-size: cover;
    background-position: center;
}

.card:nth-child(3) .img-holder {
    background-image: url('../images/sinex1.png');
    background-size: cover;
    background-position: center;
}

.card, .card-front, .card-back, .img-holder {
    box-shadow: none; /* إزالة أي ظل */
}

.section2{
    padding:80px 20px 160px;
    background:url('../images/AI_Image.jpg') center/cover no-repeat;
    text-align:center;
    position:relative;
    border-bottom: 12px solid #25356b;
}

.section2::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('../images/AI_Image.jpg') center/cover no-repeat;
    z-index:0; /* خلف كل شيء */
}

.section2::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(4,7,25,0.7); /* درجة التعتيم */
    z-index:1; /* فوق الخلفية ولكن تحت النصوص */
}

.sec2-subtitle{
    font-size:14px;
    letter-spacing:1px;
    opacity:.85;
    margin-bottom:10px;
}

.sec2-title{
    font-size:34px;
    font-weight:700;
    margin-bottom:40px;
}

.sec2-subtitle,
.sec2-title {
    position: relative; /* ضروري ليعمل z-index */
    z-index: 2; /* أعلى من z-index:1 للطبقة ::after */
    color:#fff;
}

/* ---------- TOP BOXES ---------- */

.stats-boxes{
    position: relative;
    z-index: 2;
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.box-stat{
    background:#fff;
    width:190px;
    padding:20px 15px 30px 15px;
    border-radius:12px;
    text-align:left;
    position:relative;
    color:#000;
    z-index: 2;
}

.box-stat::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:10px;
    height:100%;
    background:#033d83;
    border-radius:0 12px 12px 0;
}

.stat-title{
    font-size:14px;
    margin-bottom:15px;
    color: #000000;
}

.box-stat h3{
    display:inline-block;
    margin-left: 40px;
}

.counter{
    font-size:45px;
    font-weight:800;
    color:#234fa0;
    margin-left: auto;
}

.box-stat span{
    font-size:16px;
    font-weight:700;
    color:#234fa0;
}


/* ---------- BIG NUMBERS ---------- */

.big-numbers{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    
    position:absolute;
    bottom:-80px;   /* يتحكم بمقدار النزول تحت الصورة */
    left:50%;
    transform:translateX(-50%);
    width:100%;
    z-index:5;
}

.big-box{
    background:#fff;
    width:230px;
    padding:25px 15px;
    border-radius:12px;
    text-align:center;
    color:#000;
}

.big-box h1{
    font-size:48px;
    font-weight:800;
    display:inline-block;
    color:#234fa0;
    margin-right:5px;
}

.big-box span{
    color:#ef7e04;
    font-weight:700;
    font-size:14px;
}

.big-box p{
    margin-top:8px;
    font-size:15px;
    color:#555;
}

.contact-box {
    background: white;
    padding: 30px;
    margin: 150px auto;
    width: 80%;
    border: 8px solid #0a2955;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-box .text {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.contact-btn {
    padding: 12px 26px;
    background: #0a2955;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

/* Footer */
.footer {
    background: white;
    padding: 50px 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}


.footer-logo {
    display: flex;
    flex-direction: column; 
}

.logo-wrapper {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
    align-items: flex-start; 
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 80px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;   /* حجم الزر */
    height: 40px;
    border-radius: 50%;
    background: #033d83;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

.social-icons a img {
    width: 20px;   /* حجم الأيقونة */
    height: 20px;
    display: block;
}

.social-icons a:hover {
    background: #0a2955;
    transform: scale(1.1);
}

.footer-section h3 , p{
    margin-bottom: 10px;
    color: #033d83;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 8px 0;
    color: #444;
    padding-left: 20px;
    position: relative;
}

.footer-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px; 
    height: 8px;
    background-color: #033d83; 
    border-radius: 50%; 
}

.footer-section ul li a{
    text-decoration: none;
    color: #033d83;
}

.map-box {
    width: 140px;
    height: 120px;
    background: #e0e0e0;
    border: 1px solid #aaa;
    margin-top: 10px;
}

.bottom-bar {
    background: #0a2955;
    color: white;
    padding: 12px;
    text-align: center;
    font-size: 14px;
}

.back-to-top{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    color: #25356b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s ease;
}

.back-to-top polyline:last-child{
    stroke: #1e1400; 
}

.back-to-top.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover{
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-30%); }
}



/* ==== REVEAL ANIMATIONS ==== */

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* اتجاهات مختلفة */
.reveal.left {
    transform: translateX(-80px);
}

.reveal.right {
    transform: translateX(80px);
}

.reveal.zoom {
    transform: scale(0.85);
}

/* عند التفعيل */
.reveal.active.left,
.reveal.active.right {
    transform: translateX(0);
}

.reveal.active.zoom {
    transform: scale(1);
}


.card.reveal:nth-child(1){ transition-delay: 0s;}
.card.reveal:nth-child(2){ transition-delay: .15s;}
.card.reveal:nth-child(3){ transition-delay: .3s;}



@media (min-width: 992px) {
  .triangle-btn-wrapper {
    display: none;
  }
}

@media screen and (max-width: 480px) {

 nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px 0;
    }

    nav.active {
        display: block;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    nav ul li a {
        color: #000 !important;
    }

    nav ul {
        padding: 0;
    }

    .countdown{
        gap: 4px;
    }

    .box-text {
        bottom: 10px; 
        left: 10px;
    }

    .box-text span {
        font-size: 8px; 
        margin-bottom: 10px;
    }

    .box-text h3 {
        font-size: 12px; 
        margin-top: 5px;
    }

    .box-text a {
        font-size: 10px; 
        padding: 3px 8px;
    }

    .more-info .arrow {
        font-size: 10px; 
    }

    .intro-container {
        flex-direction: column-reverse; 
        align-items: center;
        gap: 20px;
        width: 90%;
        margin: auto;
    }

    .intro-image-box {
        width: 100%; 
        height: auto; 
        margin-left: 0; 
    }

    .intro-image-box img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-right: 20px;
    }

    .intro-text {
        margin-left: 0; 
        text-align: center; 
        width: 100%;
    }

    .small-title {
        font-size: 11px;
        margin-right: 70px;
    }

    .main-title {
        font-size: 14px;
        margin-right: 65px;
    }

    .description {
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
        text-align: justify;
        text-justify: inter-word;
        margin-left: -38px;
    }

    .buttons {
        display: flex;
        flex-direction: row; 
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        margin-right: 90px;
    }

    .btn-about,
    .btn-register {
        width: 50%; 
        text-align: center;
        font-size: 14px;
    }

    .stats-container1 {
        padding: 50px 10px;
        text-align: center;
    }

    .top-text1 {
        width: 90%;
        font-size: 14px;
        margin-bottom: 30px;
    }

    .content1 {
        display: flex;
        flex-direction: column; 
        align-items: center;
        gap: 20px;
    }

    .left-boxes1 {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
        width: 100%;
        margin-left: 10px;
    }

    .box3 {
        width: 95%; 
        height: auto;
        min-height: 120px;
        padding: 15px;
        border-radius: 4px;
        text-align: left;
    }

    .box3 h3 {
        position: static;
        font-size: 28px;
        margin-top: 10px;
        text-align: right;
    } 

    .box3 p{
        font-size: 10px;
    }

    .right-card3 {
        width: 95%;
        padding: 20px;
        border-radius: 10px;
        border-right: 0;
    }

    .right-card3 h3 {
        text-align: left;
        font-size: 16px;
    }

    .bar3 {
        height: 18px;
    }

    .bar-fill3 {
        font-size: 11px;
        padding-left: 8px;
    }

    .top-text {
        flex-direction: column; 
        gap: 20px;
        align-items: flex-start;
        text-align: left;
        margin: 0 10px;
    }

    .left-side, .right-side {
        width: 100%;
        margin: 0;
    }

    .left-side h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-left: 30px;
    }

    .mini-title {
        font-size: 12px;
    }

    .desc {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 10px;
        margin-left: 30px;
    }

    .links{
        margin-left: 30px;
    }

    .links li {
        font-size: 13px;
    }

    .cards-center{
        flex-direction: column; 
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }
    
    .card{
        position: relative;
        width: 90%;
        height: 250px;
        margin-bottom: 20px;
        overflow: hidden;
    }
    
    .card-inner{
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .card-front,
    .card-back{
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        border-radius: 12px;
        transition: transform 0.6s ease;
    }
    
    .card-front{
        transform: translateY(0);
    }
    
    .card-back{
        background: #fff;
        color: black;
        padding: 15px;
        box-sizing: border-box;
        transform: translateY(100%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: justify;
    }
    
    .card-inner.is-flipped .card-front{
        transform: translateY(-100%);
    }
    
    .card-inner.is-flipped .card-back{
        transform: translateY(0);
    }
    
    .card-back .back-text{
        font-size: 14px;
        color: black;
    }
    
    .more-info1{
        font-size: 14px;
        color: black;
        font-weight: bold;
        cursor: pointer;
        margin-top: 10px;
    }
    
    .card-front .img-holder {
        width: 100%;
        height: 100%;
        border-radius: 12px;
        background-size: contain;   
        background-repeat: no-repeat;
        background-position: center;
    }

    .section2 {
      padding:60px 15px 120px; 
    }
    
    .sec2-title {
        font-size:24px; 
        margin-bottom:30px;
    }
    
    .sec2-subtitle {
        font-size:12px; 
        margin-bottom:8px;
    }
    
    
    .stats-boxes {
      flex-wrap: wrap; 
      gap:10px;
      justify-content: space-between; 
    }
    
    .box-stat {
      width:48%; 
      padding:15px 10px 25px 10px;
      margin-bottom:10px;
    }
    
    .box-stat h3 {
        margin-left: 75px; 
        font-size:18px;
    }
    
    .counter {
        font-size:32px; 
    }
    
    .box-stat span {
        font-size:14px;
    }
    
    .big-numbers {
      flex-wrap: wrap;      
      gap:15px;
      bottom:-200px;
      justify-content: space-between; 
      left: 0; 
      transform: none;
      width:90%;
      margin-left: 20px;
    }
    
    .big-box {
      width:48%; 
      padding:20px 10px;
      margin-bottom:10px;
  }
    
    .big-box h1 {
      font-size:36px; 
    }
    
    .big-box span {
        font-size:12px;
    }
    
    .big-box p {
        font-size:13px;
    }

    .contact-box {
        flex-direction: column;       
        gap: 15px;
        width: 90%;
        padding: 20px;
        text-align: center;
        margin-top: 230px;
        margin-bottom: 50px;
    }

    .contact-box .text {
        font-size: 18px;              
    }

    .contact-btn {
        padding: 10px 20px;           
        font-size: 16px;
    }
    
    .footer {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 16px !important;
        padding: 24px 12px !important;
        grid-template-columns: none !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }
    
    .footer * {
        box-sizing: border-box !important;
        max-width: 100%;
    }
    
    .footer > .logo-wrapper,
    .footer > .footer-logo,
    .footer > :nth-child(1) {
        width: 100% !important;
        flex: 0 0 100% !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .footer > :nth-child(n+2) {
        flex: 0 0 45% !important;    
        max-width: 48% !important;
        width: 48% !important;
        min-width: 140px !important;
    }
    
    .footer img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .footer-section {
        width: 48% !important;
        max-width: 48% !important;
        flex: 0 0 48% !important;
        padding: 8px 6px !important;
    }
    
    .footer-section h3 {
        font-size: 15px !important;
        margin-bottom: 8px !important;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 13px !important;
    }
    
    .map-box {
        width: 100% !important;
        height: 140px !important;
    }
    
    .social-icons {
        justify-content: center !important;
        margin-top: 12px !important;
    }
    
    .footer > * {
        display: block !important;
    }
}
