	:root {
            --primary-color: #1C4297 !important;
            --secondary-color: #f0f3fb !important;
            --text-dark: #2d3748;
            --text-light: #4a5568;
            --white: #ffffff !important;
 	    --accent-color: #1C4297;
	    --contrast-color: #ffffff;
  	    --heading-color: #ffffff;
	   --heading-font: "Questrial", sans-serif;
            --shadow: 0 10px 25px rgba(28, 66, 151, 0.1) !important;
          }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
              line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

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

	/* hero section */
    

#hero {
  font-family: var(--heading-font);
}

.linkedin-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  color: var(--white);
  text-align: center;
  line-height: 40px;
  transition: transform 0.3s ease;
  text-decoration: none;
  font-size: 1.2rem;
}

.linkedin-icon:hover {
  transform: translateY(-2px);
}


.hero-1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Responsive font size */
@media (max-width: 992px) {
  .hero-1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .hero-1 {
    font-size: 2rem;
  }
}

/* Button custom colors */
.bg-orange {
  background-color: #1C4297 !important; /* Replace with your orange */
}

.bg-orange-border {
  background-color: transparent !important;
  border: 2px solid #1C4297 !important;
  color: #1C4297 !important;
}

.clr-orange {
  color: #1C4297 !important;
}

.bg-orange:hover,
.bg-orange-border:hover {
  background-color: #1C4297 !important;
  border-color: #1C4297 !important;
  color: white !important;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Ensure button icons have some margin */
.download-btn i {
  margin-right: 8px;
}

	.bg-orange{
   		 background-color: #1C4297 !important;

		}
	.clr-orange{
    		color: #1C4297 !important;
		}
	.bg-orange-border{
    		border: 2px solid #1C4297 !important;
		}
	@media only screen and (max-width: 600px) {
		.hero-1{
			font-size:24px;
			}
		}

		/* About section*/
.zoom-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}


       

        /* Portfolio Section */
        .portfolio {
            /* padding: 80px 0; */
            background: var(--secondary-color);
            margin-top: -1px !important;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            /* margin-top: 3rem; */
        }

        .portfolio-item {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(28, 66, 151, 0.2);
        }

        .portfolio-image {
            height: 200px;
            overflow: hidden;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.1);
        }

        .portfolio-content {
            padding: 1.5rem;
        }

        .portfolio-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .portfolio-content p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .portfolio-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-color);
            font-weight: 500;
            margin-top: 1rem;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .portfolio-link:hover {
            gap: 1rem;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: var(--white);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .contact-info p {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
        }

        .contact-form {
            background: var(--secondary-color);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid transparent;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            background: var(--white);
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            background: var(--primary-color);
            color: var(--white);
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #1C4297;
            transform: translateY(-2px);
        }

        
        /* Responsive Design */
        @media (max-width: 768px) {

            .hero-content,
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }