

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 0;
    transition: 0.3s;
}

.navbar-brand {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}
.navbar-brand:hover {
    color: #fff;
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 1.1rem;
    margin-left: 15px;
}

.navbar-toggler {
    border: none;
}

/* Video Banner */
.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}


.overlay p {
    font-size: 1.5rem;
}

.overlay .btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 100px 0;
}

h2{
    
  font-family: "Big Shoulders Inline", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: Regular;

    font-size: 3.5rem;
    margin-bottom: 20px;
}
.title-heading{
      font-family: "Big Shoulders Inline", sans-serif;
      font-optical-sizing: auto;
      font-weight: 600;
      font-style: Regular;
      font-size:60px;
}
.objective-content{
    font-size:20px;
}
.project-card {
    text-align: center;
    padding: 15px;
}

.project-card img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}
.navbar-toggler {
    border: none; /* Remove default border */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.about-content{
    padding-left:10%;
    padding-right:10%;
}

.about-skill{
    color:#4DA3FB;
}
@media (max-length : 768px){
    .about-content{
        padding-left:1%;
        padding-right:1%;
    }
}

/* project flip */
.flip-category {
    perspective: 1000px;
    margin-bottom: 30px;
    aspect-ratio: 1;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-category:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.flip-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-back {
    background: linear-gradient(135deg, #f5f5f5, #f9f9f9);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Pattern 1: Diagonal Cards with Hover Effect */
.diagonal-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.diagonal-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    transform: rotate(-3deg);
    transition: all 0.4s ease;
    margin: 1.5rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    
}

.diagonal-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.diagonal-card i {
    font-size: 2.5rem;
    color: #2D1B3D;
    margin-bottom: 1.5rem;
    transform: rotate(3deg);
    transition: all 0.4s ease;
}

.diagonal-card:hover .service-icon {
    transform: rotate(0deg) scale(1.1);
}

/* experience card */
/* Header Styles */
.services-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #2D1B3D 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
}

.header-title {
   
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.header-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Card Styles */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.service-card i{
    font-size:40px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    /*background: linear-gradient(90deg, #2D1B3D, #6a4d8d);*/
    background: black;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: #2D1B3D;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
   
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2D1B3D;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px){
    .title-heading{
        font-size:50px;
    }
}
footer{
    border-top:2px solid black;
}
textarea{
    resize:none;
}
.swal-wide {
  width: 70% !important;
}

@media (max-width: 768px) {
  .swal-wide {
    width: 100% !important;
  }
}
pre {
    font-family: 'Poppins', sans-serif; /* Your desired font */
    color: #333; /* Dark text for better contrast */
    overflow-x: auto; /* Horizontal scrolling for long content */
    white-space: pre-wrap; /* Wrap text while preserving formatting */
    line-height: 1.5; /* Improved line spacing */
    font-size: 16px; /* Comfortable font size */
    margin-bottom: 20px; /* Spacing from other elements */
}

/* Option 1: Text Shadow for Visibility */
.tag-text {
    color: #79f3fe; /* Light text for dark backgrounds */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Soft shadow for contrast */
    font-weight: bold;
    font-size: 18px;
}

/* Option 2: Gradient Text */
.tag-text-gradient {
    background: linear-gradient(45deg, #ff8c00, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-size: 18px;
}

.blog-container{
    margin-top:100px;
}

.post-detail{
    margin-top:20px;

}
.fw-500{
    font-weight:500;
}
.fw-600{
    font-weight:600;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Floating shapes container */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Base shape styles */
.shape {
    position: absolute;
    opacity: 0.1;
    will-change: transform;
}

/* Circle shapes */
.circle {
    border-radius: 50%;
    background: #000;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 15%;
    animation: float-up 20s infinite linear;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 20%;
    background: #6c757d;
    opacity: 0.08;
    animation: float-diagonal 25s infinite linear;
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 70%;
    background: #343a40;
    animation: float-side 18s infinite linear;
}

/* Square shapes */
.square {
    background: #000;
}

.square-1 {
    width: 70px;
    height: 70px;
    top: 30%;
    left: 80%;
    animation: rotate-float 22s infinite linear;
}

.square-2 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 10%;
    background: #6c757d;
    opacity: 0.06;
    animation: float-up-slow 30s infinite linear;
}

.square-3 {
    width: 50px;
    height: 50px;
    top: 20%;
    right: 10%;
    background: #343a40;
    animation: float-side-reverse 16s infinite linear;
}

/* Triangle shapes */
.triangle {
    width: 0;
    height: 0;
}

.triangle-1 {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid #000;
    top: 45%;
    left: 25%;
    animation: rotate-slow 35s infinite linear;
}

.triangle-2 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid #6c757d;
    top: 15%;
    right: 40%;
    opacity: 0.07;
    animation: float-diagonal-reverse 28s infinite linear;
}

.triangle-3 {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid #343a40;
    top: 85%;
    right: 15%;
    animation: float-up 24s infinite linear;
}

/* Hexagon shapes */
.hexagon {
    position: relative;
    background: #000;
}

.hexagon-1 {
    width: 60px;
    height: 34px;
    top: 25%;
    right: 30%;
    animation: rotate-float-slow 40s infinite linear;
}

.hexagon-1:before,
.hexagon-1:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
}

.hexagon-1:before {
    bottom: 100%;
    border-bottom: 17px solid #000;
}

.hexagon-1:after {
    top: 100%;
    border-top: 17px solid #000;
}

.hexagon-2 {
    width: 80px;
    height: 46px;
    top: 55%;
    left: 45%;
    background: #6c757d;
    opacity: 0.05;
    animation: float-side 32s infinite linear;
}

.hexagon-2:before,
.hexagon-2:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
}

.hexagon-2:before {
    bottom: 100%;
    border-bottom: 23px solid #6c757d;
}

.hexagon-2:after {
    top: 100%;
    border-top: 23px solid #6c757d;
}

/* Animation keyframes */
@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

@keyframes float-up-slow {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(180deg);
    }
}

@keyframes float-diagonal {
    0% {
        transform: translate(100px, 100vh) rotate(0deg);
    }
    100% {
        transform: translate(-100px, -100px) rotate(-360deg);
    }
}

@keyframes float-diagonal-reverse {
    0% {
        transform: translate(-100px, 100vh) rotate(0deg);
    }
    100% {
        transform: translate(100px, -100px) rotate(360deg);
    }
}

@keyframes float-side {
    0% {
        transform: translateX(-100px);
    }
    50% {
        transform: translateX(100px);
    }
    100% {
        transform: translateX(-100px);
    }
}

@keyframes float-side-reverse {
    0% {
        transform: translateX(100px);
    }
    50% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(100px);
    }
}

@keyframes rotate-float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

@keyframes rotate-float-slow {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .shape {
        opacity: 0.05;
    }
    
    .circle-1, .circle-2, .circle-3 {
        width: 50px;
        height: 50px;
    }
    
    .square-1, .square-2, .square-3 {
        width: 40px;
        height: 40px;
    }
    
    .triangle-1 {
        border-left-width: 25px;
        border-right-width: 25px;
        border-bottom-width: 45px;
    }
    
    .triangle-2, .triangle-3 {
        border-left-width: 20px;
        border-right-width: 20px;
        border-bottom-width: 35px;
    }
    
    .hexagon-1 {
        width: 40px;
        height: 23px;
    }
    
    .hexagon-1:before,
    .hexagon-1:after {
        border-left-width: 20px;
        border-right-width: 20px;
    }
    
    .hexagon-1:before {
        border-bottom-width: 12px;
    }
    
    .hexagon-1:after {
        border-top-width: 12px;
    }
    
    .hexagon-2 {
        width: 50px;
        height: 29px;
    }
    
    .hexagon-2:before,
    .hexagon-2:after {
        border-left-width: 25px;
        border-right-width: 25px;
    }
    
    .hexagon-2:before {
        border-bottom-width: 15px;
    }
    
    .hexagon-2:after {
        border-top-width: 15px;
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .shape {
        opacity: 0.03;
    }
    
    .main-content {
        padding: 30px 0;
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    .shape {
        animation: none;
    }
}

.youtube-iframe{
    width:100%; 
    height:60vh
}

.post-detail span{
    padding:10px;
}
.swal-img{
    width:100%;
    height:60vh;
    object-fit:cover;
}

.blog-img{
    width:100%;
    height:35vh;
    object-fit:cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}