/*==================================
        GLOBAL CSS
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#08111f;
    overflow-x:hidden;
}

/*==================================
        NAVBAR
==================================*/

.custom-nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 0;
    background:rgba(8,17,31,.85);
    backdrop-filter:blur(15px);
    transition:.4s ease;
    z-index:9999;
}

.custom-nav.scrolled{
    background:#07111d;
    padding:12px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}

/* Logo */

.logo{
    text-decoration:none;
    font-size:30px;
    font-weight:700;
    color:#fff;
}

.logo span:last-child{
    color:#ff9800;
}

/* Menu */

.navbar-nav .nav-item{
    margin-left:15px;
}

.navbar-nav .nav-link{
    color:#fff;
    font-size:16px;
    font-weight:500;
    position:relative;
    transition:.4s;
}

.navbar-nav .nav-link:hover{
    color:#ff9800;
}

.navbar-nav .nav-link.active{
    color:#ff9800;
}

/* Underline */

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    background:#ff9800;

    left:0;

    bottom:-6px;

    transition:.4s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{

    width:100%;
}

/* Button */

.btn-warning{

    padding:10px 28px;

    border-radius:50px;

    font-weight:600;

    color:#fff;
}

/* Mobile */

.navbar-toggler{

    border:none;
}

.navbar-toggler:focus{

    box-shadow:none;
}

.navbar-toggler i{

    color:white;

    font-size:28px;
}

/*==================================
        HERO SECTION
==================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:100px;

    position:relative;

    overflow:hidden;
}

/* Background Blur */

.hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    background:#ff9800;

    border-radius:50%;

    top:-200px;

    right:-150px;

    filter:blur(180px);

    opacity:.18;
}

.hero-text{

    position:relative;

    z-index:2;
}

.tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(255,255,255,.08);

    color:#ff9800;

    letter-spacing:2px;

    font-size:14px;

    margin-bottom:20px;
}

.hero-text h1{

    color:#fff;

    font-size:65px;

    font-weight:800;

    line-height:1.2;
}

.hero-text h1 span{

    color:#ff9800;
}

.hero-text p{

    color:#cfd4da;

    font-size:18px;

    line-height:32px;

    margin-top:25px;
}

/* Hero Buttons */

.btn1{

    display:inline-block;

    padding:15px 35px;

    background:#ff9800;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.4s;
}

.btn1:hover{

    background:#ffb300;

    color:#fff;

    transform:translateY(-4px);
}

.btn2{

    display:inline-block;

    margin-left:20px;

    color:#fff;

    text-decoration:none;

    font-weight:600;
}

.btn2 i{

    color:#ff9800;

    font-size:22px;

    margin-right:10px;
}

/* Hero Image */

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;
}

.circle{

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:linear-gradient(135deg,#ff9800,#ffd54f);

    opacity:.18;
}

.hero-image img{

    width:100%;

    max-width:520px;

    position:relative;

    animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-20px);
}

100%{
transform:translateY(0);
}

}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:991px){

.hero{

text-align:center;

padding-top:140px;

}

.hero-text h1{

font-size:45px;

}

.hero-image{

margin-top:60px;

}

.btn2{

display:block;

margin-top:20px;

margin-left:0;

}

.navbar-nav{

margin-top:20px;

text-align:center;

}

.btn-warning{

margin-top:20px;

}

}

@media(max-width:576px){

.hero-text h1{

font-size:35px;

}

.hero-text p{

font-size:16px;

}

.logo{

font-size:24px;

}

.circle{

width:320px;

height:320px;

}

}

/*=========================
      ABOUT SECTION
==========================*/

.about-section{

background:#ffffff;

padding:100px 0;

position:relative;

overflow:hidden;

}

/* Image */

.about-image{

position:relative;

text-align:center;

}

.about-image img{

width:100%;

max-width:500px;

border-radius:20px;

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

/* Experience Card */

.experience-card{

position:absolute;

bottom:30px;

right:20px;

background:#ff9800;

color:#fff;

padding:25px;

border-radius:20px;

text-align:center;

width:170px;

box-shadow:0 15px 35px rgba(0,0,0,.25);

animation:floatCard 3s infinite;

}

.experience-card h2{

font-size:45px;

font-weight:700;

margin-bottom:5px;

}

.experience-card p{

margin:0;

font-size:16px;

}

@keyframes floatCard{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}

/* Content */

.about-content h6{

color:#ff9800;

font-weight:700;

letter-spacing:2px;

margin-bottom:15px;

}

.about-content h2{

font-size:45px;

font-weight:700;

color:#08111f;

line-height:1.3;

margin-bottom:20px;

}

.about-content h2 span{

color:#ff9800;

}

.about-content p{

font-size:17px;

line-height:30px;

color:#666;

}

/* Feature Boxes */

.about-box{

background:#fff;

padding:25px;

border-radius:15px;

margin-bottom:25px;

box-shadow:0 8px 20px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.about-box:hover{

transform:translateY(-10px);

background:#08111f;

}

.about-box i{

font-size:40px;

color:#ff9800;

margin-bottom:15px;

}

.about-box h5{

font-size:20px;

font-weight:600;

margin-bottom:10px;

}

.about-box p{

margin:0;

font-size:15px;

line-height:24px;

}

.about-box:hover h5,
.about-box:hover p{

color:#fff;

}

/* Responsive */

@media(max-width:991px){

.about-content{

margin-top:60px;

text-align:center;

}

.experience-card{

position:relative;

margin:25px auto 0;

right:auto;

bottom:auto;

}

}

@media(max-width:576px){

.about-content h2{

font-size:34px;

}

.about-box{

text-align:center;

}

}


/*==========================
 SOFTWARE SECTION
===========================*/

.software-section{

padding:120px 0;

background:#f5f7fb;

}

.small-title{

color:#ff9800;

font-weight:700;

letter-spacing:3px;

}

.main-title{

font-size:48px;

font-weight:700;

margin-bottom:15px;

}

.main-title span{

color:#ff9800;

}

.sub-title{

color:#666;

margin-bottom:60px;

}

.software-card{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

height:100%;

}

.software-card:hover{

transform:translateY(-12px);

}

.software-image{

overflow:hidden;

height:220px;

}

.software-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.software-card:hover img{

transform:scale(1.1);

}

.software-content{

padding:25px;

}

.software-content h4{

font-weight:700;

margin-bottom:15px;

}

.software-content p{

color:#666;

line-height:28px;

}

.tech{

margin:20px 0;

}

.tech span{

display:inline-block;

background:#eef3ff;

padding:8px 15px;

border-radius:30px;

margin:5px;

font-size:13px;

font-weight:600;

color:#0d6efd;

}

.read-btn{

display:inline-block;

margin-top:10px;

text-decoration:none;

font-weight:600;

color:#ff9800;

}

.read-btn:hover{

color:#000;

}


/*=========================
 TECHNOLOGY SECTION
==========================*/

.technology-section{

padding:120px 0;

background:#08111f;

}

.tech-small-title{

color:#ff9800;

font-weight:700;

letter-spacing:3px;

margin-bottom:15px;

}

.tech-main-title{

font-size:48px;

font-weight:700;

color:#fff;

}

.tech-main-title span{

color:#ff9800;

}

.tech-description{

max-width:700px;

margin:auto;

color:#ccc;

line-height:30px;

margin-top:20px;

}

/* Hexagon */

.hexagon-card{

width:170px;

height:190px;

margin:auto;

background:#13213d;

clip-path:polygon(25% 6%,75% 6%,100% 50%,75% 94%,25% 94%,0 50%);

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

transition:.4s;

cursor:pointer;

}

.hexagon-card i{

font-size:50px;

color:#ff9800;

margin-bottom:20px;

}

.hexagon-card h5{

color:#fff;

font-weight:600;

}

.hexagon-card:hover{

background:#ff9800;

transform:translateY(-15px);

}

.hexagon-card:hover i{

color:#fff;

}

.hexagon-card:hover h5{

color:#fff;

}

@media(max-width:768px){

.hexagon-card{

width:140px;

height:160px;

}

}

/*=========================
 BUSINESS SOLUTIONS
==========================*/

.business-solutions{

padding:120px 0;

background:#f8fbff;

}

.solution-tag{

display:inline-block;

padding:10px 24px;

background:#eaf3ff;

color:#0d6efd;

font-weight:600;

border-radius:40px;

letter-spacing:2px;

}

.solution-title{

font-size:48px;

font-weight:700;

margin:25px 0 15px;

color:#0b1d39;

}

.solution-title span{

color:#ff9800;

}

.solution-subtitle{

max-width:700px;

margin:auto;

color:#666;

line-height:30px;

}

.solution-card{

background:white;

padding:40px;

border-radius:20px;

height:100%;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.4s;

border-top:5px solid transparent;

}

.solution-card:hover{

transform:translateY(-10px);

border-color:#ff9800;

}

.solution-icon{

width:80px;

height:80px;

background:#0d6efd;

border-radius:20px;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:25px;

}

.solution-icon i{

font-size:34px;

color:white;

}

.solution-card h3{

font-size:24px;

margin-bottom:15px;

font-weight:700;

}

.solution-card p{

color:#666;

line-height:28px;

margin-bottom:20px;

}

.solution-card ul{

padding:0;

margin:0;

list-style:none;

}

.solution-card ul li{

margin-bottom:12px;

font-weight:500;

}

.solution-card ul li i{

color:#28a745;

margin-right:10px;

}

/*=========================
WHY CHOOSE US
==========================*/

.why-us{

padding:120px 0;

background:#0b1320;

position:relative;

overflow:hidden;

}

.why-us::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:#ff9800;

border-radius:50%;

filter:blur(180px);

right:-180px;

top:-180px;

opacity:.15;

}

.section-label{

display:inline-block;

padding:10px 25px;

background:#ffffff15;

border-radius:30px;

color:#ff9800;

letter-spacing:2px;

font-weight:600;

margin-bottom:20px;

}

.section-heading{

font-size:48px;

font-weight:700;

color:white;

}

.section-heading span{

color:#ff9800;

}

.section-desc{

max-width:700px;

margin:20px auto;

color:#bbb;

line-height:30px;

}

/* Left Panel */

.left-panel{

background:linear-gradient(135deg,#ff9800,#ffb300);

padding:50px;

border-radius:25px;

height:100%;

color:white;

box-shadow:0 20px 50px rgba(0,0,0,.3);

}

.left-panel h3{

font-size:34px;

font-weight:700;

margin-bottom:20px;

}

.left-panel p{

line-height:30px;

margin-bottom:35px;

}

.learn-btn{

display:inline-block;

padding:14px 35px;

background:white;

color:#ff9800;

text-decoration:none;

border-radius:40px;

font-weight:600;

transition:.4s;

}

.learn-btn:hover{

background:#08111f;

color:white;

}

/* Timeline */

.timeline-item{

display:flex;

align-items:flex-start;

margin-bottom:35px;

}

.number{

width:70px;

height:70px;

border-radius:50%;

background:#ff9800;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

font-weight:700;

color:white;

margin-right:25px;

flex-shrink:0;

}

.content{

background:#172131;

padding:25px;

border-radius:18px;

width:100%;

transition:.4s;

}

.content:hover{

transform:translateX(12px);

background:#22314a;

}

.content h4{

color:white;

font-weight:700;

margin-bottom:10px;

}

.content p{

color:#c8c8c8;

line-height:28px;

margin:0;

}

/* Responsive */

@media(max-width:991px){

.left-panel{

margin-bottom:50px;

}

.section-heading{

font-size:38px;

}

}

@media(max-width:576px){

.timeline-item{

flex-direction:column;

}

.number{

margin-bottom:20px;

}

.section-heading{

font-size:30px;

}

}

/*==========================
    INNOVATION JOURNEY
===========================*/

.journey-section{

padding:120px 0;

background:#f6f9fc;

position:relative;

}

.journey-tag{

display:inline-block;

padding:10px 25px;

background:#0d6efd;

color:white;

border-radius:40px;

letter-spacing:2px;

font-weight:600;

margin-bottom:20px;

}

.journey-title{

font-size:48px;

font-weight:700;

color:#08111f;

}

.journey-title span{

color:#ff9800;

}

.journey-text{

max-width:750px;

margin:auto;

color:#666;

line-height:30px;

margin-top:20px;

}

.journey{

position:relative;

margin-top:80px;

}

.journey::before{

content:"";

position:absolute;

left:50%;

top:0;

width:4px;

height:100%;

background:#ff9800;

transform:translateX(-50%);

}

.journey-box{

display:flex;

align-items:center;

margin-bottom:70px;

position:relative;

}

.journey-box.left{

justify-content:flex-start;

padding-right:55%;

}

.journey-box.right{

justify-content:flex-end;

padding-left:55%;

}

.journey-icon{

width:90px;

height:90px;

border-radius:50%;

background:#0d6efd;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:white;

box-shadow:0 15px 35px rgba(0,0,0,.2);

z-index:2;

}

.journey-content{

background:white;

padding:30px;

border-radius:20px;

margin-left:30px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

}

.journey-box.right .journey-content{

margin-right:30px;

margin-left:0;

}

.journey-content:hover{

transform:scale(1.04);

}

.journey-content h3{

font-size:26px;

margin-bottom:15px;

font-weight:700;

}

.journey-content p{

line-height:28px;

color:#666;

margin:0;

}

@media(max-width:991px){

.journey::before{

left:30px;

}

.journey-box,
.journey-box.left,
.journey-box.right{

padding:0;

justify-content:flex-start;

}

.journey-content{

margin-left:25px;

margin-right:0;

}

}

/*=============================
 DIGITAL ECOSYSTEM
==============================*/

.ecosystem-section{

padding:120px 0;

background:linear-gradient(135deg,#08111f,#10294d);

overflow:hidden;

}

.eco-tag{

display:inline-block;

padding:10px 25px;

background:#ffffff20;

color:#ffc107;

border-radius:40px;

letter-spacing:2px;

font-weight:600;

margin-bottom:20px;

}

.eco-title{

font-size:48px;

font-weight:700;

color:white;

}

.eco-title span{

color:#ff9800;

}

.eco-desc{

max-width:700px;

margin:20px auto 60px;

color:#ddd;

line-height:30px;

}

.ecosystem{

width:700px;

height:700px;

margin:auto;

position:relative;

}

.center-circle{

width:180px;

height:180px;

background:#ff9800;

border-radius:50%;

position:absolute;

left:50%;

top:50%;

transform:translate(-50%,-50%);

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

color:white;

box-shadow:0 0 40px rgba(255,152,0,.5);

}

.center-circle i{

font-size:45px;

margin-bottom:10px;

}

.eco-box{

width:130px;

height:130px;

background:white;

border-radius:20px;

position:absolute;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

transition:.4s;

box-shadow:0 15px 30px rgba(0,0,0,.2);

}

.eco-box i{

font-size:35px;

color:#ff9800;

margin-bottom:10px;

}

.eco-box:hover{

transform:scale(1.12);

background:#ff9800;

color:white;

}

.eco-box:hover i{

color:white;

}

/* Positions */

.top{top:0;left:50%;transform:translateX(-50%);}
.bottom{bottom:0;left:50%;transform:translateX(-50%);}
.left{left:0;top:50%;transform:translateY(-50%);}
.right{right:0;top:50%;transform:translateY(-50%);}
.tl{left:80px;top:80px;}
.tr{right:80px;top:80px;}
.bl{left:80px;bottom:80px;}
.br{right:80px;bottom:80px;}

/* Responsive */

@media(max-width:768px){

.ecosystem{

width:100%;

height:auto;

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.center-circle,
.eco-box{

position:relative;

transform:none;

left:auto;
right:auto;
top:auto;
bottom:auto;

width:100%;

height:150px;

}

}

/*=========================
CONTACT SECTION
=========================*/

.contact-section{

padding:120px 0;

background:linear-gradient(135deg,#08111f,#10294d);

}

.contact-tag{

display:inline-block;

padding:10px 25px;

background:#ffffff15;

border-radius:40px;

color:#ff9800;

letter-spacing:2px;

font-weight:600;

}

.contact-title{

font-size:50px;

font-weight:700;

color:#fff;

margin:25px 0;

}

.contact-title span{

color:#ff9800;

}

.contact-subtitle{

color:#ddd;

max-width:700px;

margin:auto;

line-height:30px;

}

/* LEFT */

.contact-info{

background:#14233f;

padding:45px;

border-radius:25px;

height:100%;

}

.contact-info h3{

color:white;

margin-bottom:35px;

}

.info-box{

display:flex;

margin-bottom:30px;

}

.icon{

width:60px;

height:60px;

background:#ff9800;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin-right:20px;

flex-shrink:0;

}

.icon i{

color:white;

font-size:22px;

}

.info-box h5{

color:white;

margin-bottom:8px;

}

.info-box p{

color:#d4d4d4;

margin:0;

line-height:28px;

}

/* FORM */

.contact-form{

background:white;

padding:45px;

border-radius:25px;

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.contact-form h3{

margin-bottom:30px;

font-weight:700;

}

.form-control,
.form-select{

height:55px;

border-radius:12px;

box-shadow:none;

}

textarea.form-control{

height:auto;

}

.submit-btn{

background:#ff9800;

color:white;

border:none;

padding:15px 40px;

border-radius:50px;

font-weight:600;

transition:.4s;

}

.submit-btn:hover{

background:#08111f;

}

/* MAP */

.map-box{

margin-top:40px;

overflow:hidden;

border-radius:20px;

}

.map-box iframe{

width:100%;

height:450px;

border:0;

}

/* Responsive */

@media(max-width:991px){

.contact-info{

margin-bottom:40px;

}

.contact-title{

font-size:38px;

}

}

@media(max-width:576px){

.contact-title{

font-size:30px;

}

.contact-info,
.contact-form{

padding:25px;

}

}

/*==========================
        FOOTER
==========================*/

.footer{

background:#08111f;

padding:90px 0 20px;

position:relative;

overflow:hidden;

}

.footer::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:#ff9800;

border-radius:50%;

filter:blur(180px);

right:-180px;

bottom:-180px;

opacity:.15;

}

.footer-logo{

font-size:36px;

font-weight:700;

color:white;

margin-bottom:20px;

}

.footer-logo span{

color:#ff9800;

}

.footer-text{

color:#c8c8c8;

line-height:30px;

margin-bottom:30px;

}

/* Social */

.social-links a{

width:45px;

height:45px;

background:#172131;

display:inline-flex;

justify-content:center;

align-items:center;

border-radius:50%;

margin-right:10px;

color:white;

transition:.4s;

text-decoration:none;

}

.social-links a:hover{

background:#ff9800;

transform:translateY(-8px);

}

/* Headings */

.footer h4{

color:white;

margin-bottom:25px;

font-weight:600;

}

/* Links */

.footer ul{

padding:0;

margin:0;

list-style:none;

}

.footer ul li{

margin-bottom:14px;

}

.footer ul li a{

color:#c8c8c8;

text-decoration:none;

transition:.3s;

}

.footer ul li a:hover{

color:#ff9800;

padding-left:8px;

}

/* Contact */

.footer-contact p{

color:#c8c8c8;

line-height:30px;

margin-bottom:18px;

}

.footer-contact i{

color:#ff9800;

margin-right:12px;

width:20px;

}

/* Divider */

.footer hr{

border-color:#24344f;

margin:50px 0 25px;

}

/* Bottom */

.footer-bottom p{

color:#bbb;

margin:0;

}

.footer-bottom a{

color:#bbb;

text-decoration:none;

margin:0 10px;

transition:.3s;

}

.footer-bottom a:hover{

color:#ff9800;

}

/* Scroll Button */

.scroll-top{

position:fixed;

right:25px;

bottom:25px;

width:55px;

height:55px;

background:#ff9800;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:white;

font-size:22px;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.3);

transition:.4s;

z-index:999;

}

.scroll-top:hover{

background:white;

color:#08111f;

transform:translateY(-8px);

}

/* Responsive */

@media(max-width:991px){

.footer{

text-align:center;

}

.footer-contact p{

justify-content:center;

}

.footer-bottom{

text-align:center;

}

.footer-bottom .text-lg-end{

margin-top:15px;

}

.social-links{

margin-bottom:30px;

}

}